mirror of
https://github.com/github/codeql.git
synced 2025-12-29 07:06:43 +01:00
6 lines
121 B
Python
6 lines
121 B
Python
class X(object):
|
|
def __init__(self):
|
|
print("X")
|
|
class Y(object,X):
|
|
def __init__(self):
|
|
print("Y") |