Files
codeql/python/ql/test/query-tests/Classes/conflicting/odasa6643.py
2022-12-19 15:15:32 +00:00

16 lines
348 B
Python

#This code has conflicting attributes,
#but the documentation in the standard library tells you do it this way :(
class ThreadingMixIn(object):
def process_request(selfself, req):
pass
class HTTPServer(object):
def process_request(selfself, req):
pass
class _ThreadingSimpleServer(ThreadingMixIn, HTTPServer):
pass