You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
test/Makefile: more grammar checking. Update python versions 10_del.pyc add test of DEL_GLOBAL check_ast.py, pysource.py: Profileing workarounds
19 lines
175 B
Python
19 lines
175 B
Python
a = (1, 2, 3)
|
|
del a
|
|
|
|
b = [4, 5, 6]
|
|
del b[1]
|
|
del b[:]
|
|
|
|
c = [0,1,2,3,4]
|
|
del c[:1]
|
|
del c[2:3]
|
|
|
|
d = [0,1,2,3,4,5,6]
|
|
del d[1:3:2]
|
|
|
|
e = ('a', 'b')
|
|
def foo():
|
|
global e
|
|
del e
|