mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
8 lines
173 B
Python
8 lines
173 B
Python
class MyClass:
|
|
def method(self, i):
|
|
if i is 5:
|
|
print 'five'
|
|
elif i is not 2:
|
|
print 'not two'
|
|
else:
|
|
print '2'
|