mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
348 B
Python
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
|