mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
16 lines
262 B
Python
16 lines
262 B
Python
|
|
class InheritsFromObject:
|
|
|
|
def __init__(self, args):
|
|
self.a, self.b = args
|
|
|
|
class RedefineEquals:
|
|
|
|
def __eq__(self, other):
|
|
return other is "Tuesday"
|
|
|
|
class C(RedefineEquals):
|
|
|
|
def __init__(self, args):
|
|
self.a, self.b = args
|