Note github unpyc3 and..

- Add source to bytecode_2.2/03_class_method.pyc
- more ignore
This commit is contained in:
rocky
2016-10-30 21:16:33 -04:00
parent bfd2f77fbc
commit 7700446bb1
4 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
# From Decompyle++
# File: 22_class_method.pyc (Python 2.2)
# An old-style Python class.
class MyClass:
def method(self, i):
if i is 5:
print 'five'
elif not (i is 2):
print 'not two'
else:
print '2'