Files
python-uncompyle6/test/simple_source/stmts/10_del.py
rocky 63a43d0c93 Profiling workarounds, more coverage ...
test/Makefile: more grammar checking. Update python versions
10_del.pyc add test of DEL_GLOBAL

check_ast.py, pysource.py: Profileing workarounds
2017-11-15 03:16:54 -05:00

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