blob: f16086734371ad637c6e0b2a842565aa91c4e0c9 [file] [log] [blame]
Guido van Rossum3bead091992-01-27 17:00:37 +00001# Python test set -- part 1, grammar.
2# This just tests whether the parser accepts them all.
3
Guido van Rossumf0253f22002-08-29 14:57:26 +00004# NOTE: When you run this test as a script from the command line, you
5# get warnings about certain hex/oct constants. Since those are
6# issued by the parser, you can't suppress them by adding a
7# filterwarnings() call to this module. Therefore, to shut up the
8# regression test, the filterwarnings() call has been added to
9# regrtest.py.
10
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000011from test.test_support import TestFailed, verify, vereq, check_syntax
Jeremy Hylton7d3dff22001-10-10 01:45:02 +000012import sys
Guido van Rossum3bead091992-01-27 17:00:37 +000013
14print '1. Parser'
15
16print '1.1 Tokens'
17
18print '1.1.1 Backslashes'
19
20# Backslash means line continuation:
21x = 1 \
22+ 1
Fred Drake132dce22000-12-12 23:11:42 +000023if x != 2: raise TestFailed, 'backslash for line continuation'
Guido van Rossum3bead091992-01-27 17:00:37 +000024
25# Backslash does not means continuation in comments :\
26x = 0
Fred Drake132dce22000-12-12 23:11:42 +000027if x != 0: raise TestFailed, 'backslash ending comment'
Guido van Rossum3bead091992-01-27 17:00:37 +000028
29print '1.1.2 Numeric literals'
30
31print '1.1.2.1 Plain integers'
Fred Drake132dce22000-12-12 23:11:42 +000032if 0xff != 255: raise TestFailed, 'hex int'
33if 0377 != 255: raise TestFailed, 'octal int'
Guido van Rossumdd8cb441993-12-29 15:33:08 +000034if 2147483647 != 017777777777: raise TestFailed, 'large positive int'
35try:
Fred Drake004d5e62000-10-23 17:22:08 +000036 from sys import maxint
Guido van Rossumdd8cb441993-12-29 15:33:08 +000037except ImportError:
Fred Drake004d5e62000-10-23 17:22:08 +000038 maxint = 2147483647
Guido van Rossumdd8cb441993-12-29 15:33:08 +000039if maxint == 2147483647:
Guido van Rossum66b12592003-02-12 16:57:47 +000040 # The following test will start to fail in Python 2.4;
41 # change the 020000000000 to -020000000000
Guido van Rossum6c9e1302003-11-29 23:52:13 +000042 if -2147483647-1 != -020000000000: raise TestFailed, 'max negative int'
Fred Drake004d5e62000-10-23 17:22:08 +000043 # XXX -2147483648
Guido van Rossum6c9e1302003-11-29 23:52:13 +000044 if 037777777777 < 0: raise TestFailed, 'large oct'
45 if 0xffffffff < 0: raise TestFailed, 'large hex'
Fred Drake004d5e62000-10-23 17:22:08 +000046 for s in '2147483648', '040000000000', '0x100000000':
47 try:
48 x = eval(s)
49 except OverflowError:
Walter Dörwald70a6b492004-02-12 17:35:32 +000050 print "OverflowError on huge integer literal " + repr(s)
Guido van Rossumdd8cb441993-12-29 15:33:08 +000051elif eval('maxint == 9223372036854775807'):
Guido van Rossum6c9e1302003-11-29 23:52:13 +000052 if eval('-9223372036854775807-1 != -01000000000000000000000'):
Fred Drake004d5e62000-10-23 17:22:08 +000053 raise TestFailed, 'max negative int'
Guido van Rossum6c9e1302003-11-29 23:52:13 +000054 if eval('01777777777777777777777') < 0: raise TestFailed, 'large oct'
55 if eval('0xffffffffffffffff') < 0: raise TestFailed, 'large hex'
Fred Drake004d5e62000-10-23 17:22:08 +000056 for s in '9223372036854775808', '02000000000000000000000', \
57 '0x10000000000000000':
58 try:
59 x = eval(s)
60 except OverflowError:
Walter Dörwald70a6b492004-02-12 17:35:32 +000061 print "OverflowError on huge integer literal " + repr(s)
Guido van Rossumdd8cb441993-12-29 15:33:08 +000062else:
Fred Drake004d5e62000-10-23 17:22:08 +000063 print 'Weird maxint value', maxint
Guido van Rossum3bead091992-01-27 17:00:37 +000064
65print '1.1.2.2 Long integers'
66x = 0L
67x = 0l
68x = 0xffffffffffffffffL
69x = 0xffffffffffffffffl
70x = 077777777777777777L
71x = 077777777777777777l
72x = 123456789012345678901234567890L
73x = 123456789012345678901234567890l
74
75print '1.1.2.3 Floating point'
76x = 3.14
77x = 314.
78x = 0.314
79# XXX x = 000.314
80x = .314
81x = 3e14
82x = 3E14
83x = 3e-14
84x = 3e+14
85x = 3.e14
86x = .3e14
87x = 3.1e4
88
Guido van Rossumb31c7f71993-11-11 10:31:23 +000089print '1.1.3 String literals'
90
Marc-André Lemburg36619082001-01-17 19:11:13 +000091x = ''; y = ""; verify(len(x) == 0 and x == y)
92x = '\''; y = "'"; verify(len(x) == 1 and x == y and ord(x) == 39)
93x = '"'; y = "\""; verify(len(x) == 1 and x == y and ord(x) == 34)
Guido van Rossumb31c7f71993-11-11 10:31:23 +000094x = "doesn't \"shrink\" does it"
95y = 'doesn\'t "shrink" does it'
Marc-André Lemburg36619082001-01-17 19:11:13 +000096verify(len(x) == 24 and x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +000097x = "does \"shrink\" doesn't it"
98y = 'does "shrink" doesn\'t it'
Marc-André Lemburg36619082001-01-17 19:11:13 +000099verify(len(x) == 24 and x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000100x = """
101The "quick"
102brown fox
103jumps over
104the 'lazy' dog.
105"""
106y = '\nThe "quick"\nbrown fox\njumps over\nthe \'lazy\' dog.\n'
Marc-André Lemburg36619082001-01-17 19:11:13 +0000107verify(x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000108y = '''
109The "quick"
110brown fox
111jumps over
112the 'lazy' dog.
Marc-André Lemburg36619082001-01-17 19:11:13 +0000113'''; verify(x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000114y = "\n\
115The \"quick\"\n\
116brown fox\n\
117jumps over\n\
118the 'lazy' dog.\n\
Marc-André Lemburg36619082001-01-17 19:11:13 +0000119"; verify(x == y)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000120y = '\n\
121The \"quick\"\n\
122brown fox\n\
123jumps over\n\
124the \'lazy\' dog.\n\
Marc-André Lemburg36619082001-01-17 19:11:13 +0000125'; verify(x == y)
Guido van Rossumb31c7f71993-11-11 10:31:23 +0000126
127
Guido van Rossum3bead091992-01-27 17:00:37 +0000128print '1.2 Grammar'
129
130print 'single_input' # NEWLINE | simple_stmt | compound_stmt NEWLINE
131# XXX can't test in a script -- this rule is only used when interactive
132
133print 'file_input' # (NEWLINE | stmt)* ENDMARKER
134# Being tested as this very moment this very module
135
136print 'expr_input' # testlist NEWLINE
137# XXX Hard to test -- used only in calls to input()
138
139print 'eval_input' # testlist ENDMARKER
140x = eval('1, 0 or 1')
141
142print 'funcdef'
143### 'def' NAME parameters ':' suite
144### parameters: '(' [varargslist] ')'
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000145### varargslist: (fpdef ['=' test] ',')* ('*' NAME [',' ('**'|'*' '*') NAME]
146### | ('**'|'*' '*') NAME)
Fred Drake004d5e62000-10-23 17:22:08 +0000147### | fpdef ['=' test] (',' fpdef ['=' test])* [',']
Guido van Rossum3bead091992-01-27 17:00:37 +0000148### fpdef: NAME | '(' fplist ')'
149### fplist: fpdef (',' fpdef)* [',']
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000150### arglist: (argument ',')* (argument | *' test [',' '**' test] | '**' test)
Fred Drake004d5e62000-10-23 17:22:08 +0000151### argument: [test '='] test # Really [keyword '='] test
Guido van Rossum3bead091992-01-27 17:00:37 +0000152def f1(): pass
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000153f1()
154f1(*())
155f1(*(), **{})
Guido van Rossum3bead091992-01-27 17:00:37 +0000156def f2(one_argument): pass
157def f3(two, arguments): pass
158def f4(two, (compound, (argument, list))): pass
Jeremy Hylton92e9f292001-01-25 17:03:37 +0000159def f5((compound, first), two): pass
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000160vereq(f2.func_code.co_varnames, ('one_argument',))
161vereq(f3.func_code.co_varnames, ('two', 'arguments'))
Jeremy Hylton7d3dff22001-10-10 01:45:02 +0000162if sys.platform.startswith('java'):
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000163 vereq(f4.func_code.co_varnames,
Finn Bock4ab7adb2001-12-09 09:12:34 +0000164 ('two', '(compound, (argument, list))', 'compound', 'argument',
165 'list',))
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000166 vereq(f5.func_code.co_varnames,
Jeremy Hylton7d3dff22001-10-10 01:45:02 +0000167 ('(compound, first)', 'two', 'compound', 'first'))
168else:
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000169 vereq(f4.func_code.co_varnames,
170 ('two', '.1', 'compound', 'argument', 'list'))
171 vereq(f5.func_code.co_varnames,
172 ('.0', 'two', 'compound', 'first'))
Guido van Rossum3bead091992-01-27 17:00:37 +0000173def a1(one_arg,): pass
174def a2(two, args,): pass
175def v0(*rest): pass
176def v1(a, *rest): pass
177def v2(a, b, *rest): pass
Jeremy Hylton92e9f292001-01-25 17:03:37 +0000178def v3(a, (b, c), *rest): return a, b, c, rest
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000179# ceval unpacks the formal arguments into the first argcount names;
180# thus, the names nested inside tuples must appear after these names.
Jeremy Hylton7d3dff22001-10-10 01:45:02 +0000181if sys.platform.startswith('java'):
182 verify(v3.func_code.co_varnames == ('a', '(b, c)', 'rest', 'b', 'c'))
183else:
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000184 vereq(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
Jeremy Hylton92e9f292001-01-25 17:03:37 +0000185verify(v3(1, (2, 3), 4) == (1, 2, 3, (4,)))
Guido van Rossumb6775db1994-08-01 11:34:53 +0000186def d01(a=1): pass
187d01()
188d01(1)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000189d01(*(1,))
190d01(**{'a':2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000191def d11(a, b=1): pass
192d11(1)
193d11(1, 2)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000194d11(1, **{'b':2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000195def d21(a, b, c=1): pass
196d21(1, 2)
197d21(1, 2, 3)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000198d21(*(1, 2, 3))
199d21(1, *(2, 3))
200d21(1, 2, *(3,))
201d21(1, 2, **{'c':3})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000202def d02(a=1, b=2): pass
203d02()
204d02(1)
205d02(1, 2)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000206d02(*(1, 2))
207d02(1, *(2,))
208d02(1, **{'b':2})
209d02(**{'a': 1, 'b': 2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000210def d12(a, b=1, c=2): pass
211d12(1)
212d12(1, 2)
213d12(1, 2, 3)
214def d22(a, b, c=1, d=2): pass
215d22(1, 2)
216d22(1, 2, 3)
217d22(1, 2, 3, 4)
218def d01v(a=1, *rest): pass
219d01v()
220d01v(1)
221d01v(1, 2)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000222d01v(*(1, 2, 3, 4))
223d01v(*(1,))
224d01v(**{'a':2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000225def d11v(a, b=1, *rest): pass
226d11v(1)
227d11v(1, 2)
228d11v(1, 2, 3)
229def d21v(a, b, c=1, *rest): pass
230d21v(1, 2)
231d21v(1, 2, 3)
232d21v(1, 2, 3, 4)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000233d21v(*(1, 2, 3, 4))
234d21v(1, 2, **{'c': 3})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000235def d02v(a=1, b=2, *rest): pass
236d02v()
237d02v(1)
238d02v(1, 2)
239d02v(1, 2, 3)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000240d02v(1, *(2, 3, 4))
241d02v(**{'a': 1, 'b': 2})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000242def d12v(a, b=1, c=2, *rest): pass
243d12v(1)
244d12v(1, 2)
245d12v(1, 2, 3)
246d12v(1, 2, 3, 4)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000247d12v(*(1, 2, 3, 4))
248d12v(1, 2, *(3, 4, 5))
249d12v(1, *(2,), **{'c': 3})
Guido van Rossumb6775db1994-08-01 11:34:53 +0000250def d22v(a, b, c=1, d=2, *rest): pass
251d22v(1, 2)
252d22v(1, 2, 3)
253d22v(1, 2, 3, 4)
254d22v(1, 2, 3, 4, 5)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000255d22v(*(1, 2, 3, 4))
256d22v(1, 2, *(3, 4, 5))
257d22v(1, *(2, 3), **{'d': 4})
Neal Norwitz33b730e2006-03-27 08:58:23 +0000258def d31v((x)): pass
259d31v(1)
260def d32v((x,)): pass
261d32v((1,))
Guido van Rossum3bead091992-01-27 17:00:37 +0000262
Jeremy Hylton619eea62001-01-25 20:12:27 +0000263### lambdef: 'lambda' [varargslist] ':' test
264print 'lambdef'
265l1 = lambda : 0
266verify(l1() == 0)
267l2 = lambda : a[d] # XXX just testing the expression
268l3 = lambda : [2 < x for x in [-1, 3, 0L]]
269verify(l3() == [0, 1, 0])
270l4 = lambda x = lambda y = lambda z=1 : z : y() : x()
271verify(l4() == 1)
272l5 = lambda x, y, z=2: x + y + z
273verify(l5(1, 2) == 5)
274verify(l5(1, 2, 3) == 6)
275check_syntax("lambda x: x = 2")
276
Guido van Rossum3bead091992-01-27 17:00:37 +0000277### stmt: simple_stmt | compound_stmt
278# Tested below
279
280### simple_stmt: small_stmt (';' small_stmt)* [';']
281print 'simple_stmt'
282x = 1; pass; del x
Neal Norwitzf8d403d2005-12-11 20:12:40 +0000283def foo():
284 # verify statments that end with semi-colons
285 x = 1; pass; del x;
286foo()
Guido van Rossum3bead091992-01-27 17:00:37 +0000287
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000288### small_stmt: expr_stmt | print_stmt | pass_stmt | del_stmt | flow_stmt | import_stmt | global_stmt | access_stmt | exec_stmt
Guido van Rossum3bead091992-01-27 17:00:37 +0000289# Tested below
290
291print 'expr_stmt' # (exprlist '=')* exprlist
2921
2931, 2, 3
294x = 1
295x = 1, 2, 3
296x = y = z = 1, 2, 3
297x, y, z = 1, 2, 3
298abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4)
299# NB these variables are deleted below
300
Jeremy Hylton47793992001-02-19 15:35:26 +0000301check_syntax("x + 1 = 1")
302check_syntax("a + 1 = b + 2")
303
Guido van Rossum3bead091992-01-27 17:00:37 +0000304print 'print_stmt' # 'print' (test ',')* [test]
305print 1, 2, 3
306print 1, 2, 3,
307print
308print 0 or 1, 0 or 1,
309print 0 or 1
310
Barry Warsawefc92ee2000-08-21 15:46:50 +0000311print 'extended print_stmt' # 'print' '>>' test ','
312import sys
313print >> sys.stdout, 1, 2, 3
314print >> sys.stdout, 1, 2, 3,
315print >> sys.stdout
316print >> sys.stdout, 0 or 1, 0 or 1,
317print >> sys.stdout, 0 or 1
318
Barry Warsaw7e3e1c12000-10-11 21:26:03 +0000319# test printing to an instance
Barry Warsaw9182b452000-08-29 04:57:10 +0000320class Gulp:
Fred Drake004d5e62000-10-23 17:22:08 +0000321 def write(self, msg): pass
Barry Warsaw9182b452000-08-29 04:57:10 +0000322
Barry Warsaw7e3e1c12000-10-11 21:26:03 +0000323gulp = Gulp()
324print >> gulp, 1, 2, 3
325print >> gulp, 1, 2, 3,
326print >> gulp
327print >> gulp, 0 or 1, 0 or 1,
328print >> gulp, 0 or 1
329
330# test print >> None
Barry Warsaw9182b452000-08-29 04:57:10 +0000331def driver():
Fred Drake004d5e62000-10-23 17:22:08 +0000332 oldstdout = sys.stdout
333 sys.stdout = Gulp()
334 try:
335 tellme(Gulp())
336 tellme()
337 finally:
338 sys.stdout = oldstdout
Barry Warsaw9182b452000-08-29 04:57:10 +0000339
340# we should see this once
341def tellme(file=sys.stdout):
Fred Drake004d5e62000-10-23 17:22:08 +0000342 print >> file, 'hello world'
Barry Warsaw9182b452000-08-29 04:57:10 +0000343
344driver()
345
346# we should not see this at all
347def tellme(file=None):
Fred Drake004d5e62000-10-23 17:22:08 +0000348 print >> file, 'goodbye universe'
Barry Warsaw9182b452000-08-29 04:57:10 +0000349
350driver()
351
Barry Warsawefc92ee2000-08-21 15:46:50 +0000352# syntax errors
Barry Warsawefc92ee2000-08-21 15:46:50 +0000353check_syntax('print ,')
354check_syntax('print >> x,')
355
Guido van Rossum3bead091992-01-27 17:00:37 +0000356print 'del_stmt' # 'del' exprlist
357del abc
358del x, y, (z, xyz)
359
360print 'pass_stmt' # 'pass'
361pass
362
363print 'flow_stmt' # break_stmt | continue_stmt | return_stmt | raise_stmt
364# Tested below
365
366print 'break_stmt' # 'break'
367while 1: break
368
369print 'continue_stmt' # 'continue'
370i = 1
371while i: i = 0; continue
372
Jeremy Hylton3faa52e2001-02-01 22:48:12 +0000373msg = ""
374while not msg:
375 msg = "continue + try/except ok"
376 try:
377 continue
378 msg = "continue failed to continue inside try"
379 except:
380 msg = "continue inside try called except block"
381print msg
382
383msg = ""
384while not msg:
385 msg = "finally block not called"
386 try:
387 continue
388 finally:
389 msg = "continue + try/finally ok"
390print msg
Tim Peters10fb3862001-02-09 20:17:14 +0000391
Thomas Wouters80d373c2001-09-26 12:43:39 +0000392
393# This test warrants an explanation. It is a test specifically for SF bugs
394# #463359 and #462937. The bug is that a 'break' statement executed or
395# exception raised inside a try/except inside a loop, *after* a continue
396# statement has been executed in that loop, will cause the wrong number of
397# arguments to be popped off the stack and the instruction pointer reset to
398# a very small number (usually 0.) Because of this, the following test
399# *must* written as a function, and the tracking vars *must* be function
400# arguments with default values. Otherwise, the test will loop and loop.
401
402print "testing continue and break in try/except in loop"
403def test_break_continue_loop(extra_burning_oil = 1, count=0):
404 big_hippo = 2
405 while big_hippo:
406 count += 1
407 try:
408 if extra_burning_oil and big_hippo == 1:
409 extra_burning_oil -= 1
410 break
411 big_hippo -= 1
412 continue
413 except:
414 raise
415 if count > 2 or big_hippo <> 1:
416 print "continue then break in try/except in loop broken!"
417test_break_continue_loop()
418
Guido van Rossum3bead091992-01-27 17:00:37 +0000419print 'return_stmt' # 'return' [testlist]
420def g1(): return
421def g2(): return 1
422g1()
423x = g2()
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000424check_syntax("class foo:return 1")
425
426print 'yield_stmt'
427check_syntax("class foo:yield 1")
Guido van Rossum3bead091992-01-27 17:00:37 +0000428
429print 'raise_stmt' # 'raise' test [',' test]
430try: raise RuntimeError, 'just testing'
431except RuntimeError: pass
432try: raise KeyboardInterrupt
433except KeyboardInterrupt: pass
434
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000435print 'import_name' # 'import' dotted_as_names
Guido van Rossum3bead091992-01-27 17:00:37 +0000436import sys
Guido van Rossum51b1c1c1995-03-04 22:30:54 +0000437import time, sys
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000438print 'import_from' # 'from' dotted_name 'import' ('*' | '(' import_as_names ')' | import_as_names)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000439from time import time
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000440from time import (time)
Guido van Rossum3bead091992-01-27 17:00:37 +0000441from sys import *
Guido van Rossum51b1c1c1995-03-04 22:30:54 +0000442from sys import path, argv
Anthony Baxter1a4ddae2004-08-31 10:07:13 +0000443from sys import (path, argv)
444from sys import (path, argv,)
Guido van Rossum3bead091992-01-27 17:00:37 +0000445
446print 'global_stmt' # 'global' NAME (',' NAME)*
447def f():
Fred Drake004d5e62000-10-23 17:22:08 +0000448 global a
449 global a, b
450 global one, two, three, four, five, six, seven, eight, nine, ten
Guido van Rossum3bead091992-01-27 17:00:37 +0000451
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000452print 'exec_stmt' # 'exec' expr ['in' expr [',' expr]]
453def f():
Fred Drake004d5e62000-10-23 17:22:08 +0000454 z = None
455 del z
456 exec 'z=1+1\n'
Fred Drake132dce22000-12-12 23:11:42 +0000457 if z != 2: raise TestFailed, 'exec \'z=1+1\'\\n'
Fred Drake004d5e62000-10-23 17:22:08 +0000458 del z
459 exec 'z=1+1'
Fred Drake132dce22000-12-12 23:11:42 +0000460 if z != 2: raise TestFailed, 'exec \'z=1+1\''
Fred Drake004d5e62000-10-23 17:22:08 +0000461 z = None
462 del z
Guido van Rossumdbb718f2001-09-21 19:22:34 +0000463 import types
464 if hasattr(types, "UnicodeType"):
465 exec r"""if 1:
Fred Drake004d5e62000-10-23 17:22:08 +0000466 exec u'z=1+1\n'
Fred Drake132dce22000-12-12 23:11:42 +0000467 if z != 2: raise TestFailed, 'exec u\'z=1+1\'\\n'
Fred Drake004d5e62000-10-23 17:22:08 +0000468 del z
469 exec u'z=1+1'
Fred Drake132dce22000-12-12 23:11:42 +0000470 if z != 2: raise TestFailed, 'exec u\'z=1+1\''
Guido van Rossumdbb718f2001-09-21 19:22:34 +0000471"""
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000472f()
473g = {}
474exec 'z = 1' in g
Guido van Rossum1f976121995-01-10 10:34:21 +0000475if g.has_key('__builtins__'): del g['__builtins__']
Fred Drake132dce22000-12-12 23:11:42 +0000476if g != {'z': 1}: raise TestFailed, 'exec \'z = 1\' in g'
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000477g = {}
478l = {}
Jeremy Hylton2922ea82001-02-28 23:49:19 +0000479
480import warnings
481warnings.filterwarnings("ignore", "global statement", module="<string>")
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000482exec 'global a; a = 1; b = 2' in g, l
Guido van Rossum1f976121995-01-10 10:34:21 +0000483if g.has_key('__builtins__'): del g['__builtins__']
484if l.has_key('__builtins__'): del l['__builtins__']
Jeremy Hyltone1bb5f92001-01-19 03:26:33 +0000485if (g, l) != ({'a':1}, {'b':2}): raise TestFailed, 'exec ... in g (%s), l (%s)' %(g,l)
Guido van Rossumb3b09c91993-10-22 14:24:22 +0000486
487
Jeremy Hyltonf828e2d2001-02-19 15:54:52 +0000488print "assert_stmt" # assert_stmt: 'assert' test [',' test]
489assert 1
490assert 1, 1
491assert lambda x:x
492assert 1, lambda x:x+1
493
Guido van Rossum3bead091992-01-27 17:00:37 +0000494### compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef
495# Tested below
496
497print 'if_stmt' # 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
498if 1: pass
499if 1: pass
500else: pass
501if 0: pass
502elif 0: pass
503if 0: pass
504elif 0: pass
505elif 0: pass
506elif 0: pass
507else: pass
508
509print 'while_stmt' # 'while' test ':' suite ['else' ':' suite]
510while 0: pass
511while 0: pass
512else: pass
513
514print 'for_stmt' # 'for' exprlist 'in' exprlist ':' suite ['else' ':' suite]
Guido van Rossum3bead091992-01-27 17:00:37 +0000515for i in 1, 2, 3: pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000516for i, j, k in (): pass
517else: pass
Guido van Rossumb6775db1994-08-01 11:34:53 +0000518class Squares:
Fred Drake004d5e62000-10-23 17:22:08 +0000519 def __init__(self, max):
520 self.max = max
521 self.sofar = []
522 def __len__(self): return len(self.sofar)
523 def __getitem__(self, i):
524 if not 0 <= i < self.max: raise IndexError
525 n = len(self.sofar)
526 while n <= i:
527 self.sofar.append(n*n)
528 n = n+1
529 return self.sofar[i]
Guido van Rossumb6775db1994-08-01 11:34:53 +0000530n = 0
531for x in Squares(10): n = n+x
532if n != 285: raise TestFailed, 'for over growing sequence'
Guido van Rossum3bead091992-01-27 17:00:37 +0000533
Neal Norwitzedef2be2006-07-12 05:26:17 +0000534result = []
535for x, in [(1,), (2,), (3,)]:
536 result.append(x)
537vereq(result, [1, 2, 3])
538
Guido van Rossumb6775db1994-08-01 11:34:53 +0000539print 'try_stmt'
540### try_stmt: 'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite]
541### | 'try' ':' suite 'finally' ':' suite
Guido van Rossum3bead091992-01-27 17:00:37 +0000542### except_clause: 'except' [expr [',' expr]]
Guido van Rossum85f18201992-11-27 22:53:50 +0000543try:
Fred Drake004d5e62000-10-23 17:22:08 +0000544 1/0
Guido van Rossum85f18201992-11-27 22:53:50 +0000545except ZeroDivisionError:
Fred Drake004d5e62000-10-23 17:22:08 +0000546 pass
Guido van Rossumb6775db1994-08-01 11:34:53 +0000547else:
Fred Drake004d5e62000-10-23 17:22:08 +0000548 pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000549try: 1/0
550except EOFError: pass
551except TypeError, msg: pass
552except RuntimeError, msg: pass
553except: pass
Guido van Rossumb6775db1994-08-01 11:34:53 +0000554else: pass
Guido van Rossum85f18201992-11-27 22:53:50 +0000555try: 1/0
556except (EOFError, TypeError, ZeroDivisionError): pass
557try: 1/0
558except (EOFError, TypeError, ZeroDivisionError), msg: pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000559try: pass
560finally: pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000561
562print 'suite' # simple_stmt | NEWLINE INDENT NEWLINE* (stmt NEWLINE*)+ DEDENT
563if 1: pass
564if 1:
Fred Drake004d5e62000-10-23 17:22:08 +0000565 pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000566if 1:
Fred Drake004d5e62000-10-23 17:22:08 +0000567 #
568 #
569 #
570 pass
571 pass
572 #
573 pass
574 #
Guido van Rossum3bead091992-01-27 17:00:37 +0000575
576print 'test'
577### and_test ('or' and_test)*
578### and_test: not_test ('and' not_test)*
579### not_test: 'not' not_test | comparison
580if not 1: pass
581if 1 and 1: pass
582if 1 or 1: pass
583if not not not 1: pass
584if not 1 and 1 and 1: pass
585if 1 and 1 or 1 and 1 and 1 or not 1 and 1: pass
586
587print 'comparison'
588### comparison: expr (comp_op expr)*
589### comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
590if 1: pass
591x = (1 == 1)
592if 1 == 1: pass
593if 1 != 1: pass
594if 1 <> 1: pass
595if 1 < 1: pass
596if 1 > 1: pass
597if 1 <= 1: pass
598if 1 >= 1: pass
599if 1 is 1: pass
600if 1 is not 1: pass
601if 1 in (): pass
602if 1 not in (): pass
Guido van Rossum85f18201992-11-27 22:53:50 +0000603if 1 < 1 > 1 == 1 >= 1 <= 1 <> 1 != 1 in 1 not in 1 is 1 is not 1: pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000604
605print 'binary mask ops'
606x = 1 & 1
607x = 1 ^ 1
608x = 1 | 1
609
610print 'shift ops'
611x = 1 << 1
612x = 1 >> 1
613x = 1 << 1 >> 1
614
615print 'additive ops'
616x = 1
617x = 1 + 1
618x = 1 - 1 - 1
619x = 1 - 1 + 1 - 1 + 1
620
621print 'multiplicative ops'
622x = 1 * 1
623x = 1 / 1
624x = 1 % 1
625x = 1 / 1 * 1 % 1
626
627print 'unary ops'
628x = +1
629x = -1
630x = ~1
631x = ~1 ^ 1 & 1 | 1 & 1 ^ -1
632x = -1*1/1 + 1*1 - ---1*1
633
634print 'selectors'
635### trailer: '(' [testlist] ')' | '[' subscript ']' | '.' NAME
636### subscript: expr | [expr] ':' [expr]
Guido van Rossum85f18201992-11-27 22:53:50 +0000637f1()
638f2(1)
639f2(1,)
640f3(1, 2)
641f3(1, 2,)
642f4(1, (2, (3, 4)))
643v0()
644v0(1)
645v0(1,)
646v0(1,2)
647v0(1,2,3,4,5,6,7,8,9,0)
648v1(1)
649v1(1,)
650v1(1,2)
651v1(1,2,3)
652v1(1,2,3,4,5,6,7,8,9,0)
653v2(1,2)
654v2(1,2,3)
655v2(1,2,3,4)
656v2(1,2,3,4,5,6,7,8,9,0)
657v3(1,(2,3))
658v3(1,(2,3),4)
659v3(1,(2,3),4,5,6,7,8,9,0)
Jeremy Hyltonaed0d8d2000-03-28 23:51:17 +0000660print
Guido van Rossum3bead091992-01-27 17:00:37 +0000661import sys, time
662c = sys.path[0]
663x = time.time()
664x = sys.modules['time'].time()
665a = '01234'
666c = a[0]
667c = a[-1]
668s = a[0:5]
669s = a[:5]
670s = a[0:]
671s = a[:]
672s = a[-5:]
673s = a[:-1]
674s = a[-4:-3]
Neal Norwitz03bdedd2006-02-28 17:53:58 +0000675# A rough test of SF bug 1333982. http://python.org/sf/1333982
Jeremy Hylton7b03bad2006-02-28 17:46:23 +0000676# The testing here is fairly incomplete.
Neal Norwitz03bdedd2006-02-28 17:53:58 +0000677# Test cases should include: commas with 1 and 2 colons
Jeremy Hylton7b03bad2006-02-28 17:46:23 +0000678d = {}
679d[1] = 1
680d[1,] = 2
681d[1,2] = 3
682d[1,2,3] = 4
683L = list(d)
684L.sort()
685print L
686
Guido van Rossum3bead091992-01-27 17:00:37 +0000687
688print 'atoms'
689### atom: '(' [testlist] ')' | '[' [testlist] ']' | '{' [dictmaker] '}' | '`' testlist '`' | NAME | NUMBER | STRING
690### dictmaker: test ':' test (',' test ':' test)* [',']
691
692x = (1)
693x = (1 or 2 or 3)
694x = (1 or 2 or 3, 2, 3)
695
696x = []
697x = [1]
698x = [1 or 2 or 3]
699x = [1 or 2 or 3, 2, 3]
700x = []
701
702x = {}
703x = {'one': 1}
704x = {'one': 1,}
705x = {'one' or 'two': 1 or 2}
706x = {'one': 1, 'two': 2}
707x = {'one': 1, 'two': 2,}
708x = {'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6}
709
710x = `x`
711x = `1 or 2 or 3`
712x = x
713x = 'x'
714x = 123
715
716### exprlist: expr (',' expr)* [',']
717### testlist: test (',' test)* [',']
718# These have been exercised enough above
719
Brett Cannon4ebc7e32005-04-09 01:27:37 +0000720print 'classdef' # 'class' NAME ['(' [testlist] ')'] ':' suite
Guido van Rossum3bead091992-01-27 17:00:37 +0000721class B: pass
Brett Cannon4ebc7e32005-04-09 01:27:37 +0000722class B2(): pass
Guido van Rossum3bead091992-01-27 17:00:37 +0000723class C1(B): pass
724class C2(B): pass
725class D(C1, C2, B): pass
726class C:
Fred Drake004d5e62000-10-23 17:22:08 +0000727 def meth1(self): pass
728 def meth2(self, arg): pass
729 def meth3(self, a1, a2): pass
Skip Montanaro803d6e52000-08-12 18:09:51 +0000730
731# list comprehension tests
732nums = [1, 2, 3, 4, 5]
733strs = ["Apple", "Banana", "Coconut"]
734spcs = [" Apple", " Banana ", "Coco nut "]
735
736print [s.strip() for s in spcs]
737print [3 * x for x in nums]
738print [x for x in nums if x > 2]
739print [(i, s) for i in nums for s in strs]
740print [(i, s) for i in nums for s in [f for f in strs if "n" in f]]
Tim Petersf545baa2003-06-15 23:26:30 +0000741print [(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)]
Jeremy Hylton578ceee2001-01-23 01:51:40 +0000742
743def test_in_func(l):
744 return [None < x < 3 for x in l if x > 2]
745
746print test_in_func(nums)
747
Jeremy Hyltone241e292001-03-19 20:42:11 +0000748def test_nested_front():
749 print [[y for y in [x, x + 1]] for x in [1,3,5]]
750
751test_nested_front()
752
Jeremy Hylton92e9f292001-01-25 17:03:37 +0000753check_syntax("[i, s for i in nums for s in strs]")
754check_syntax("[x if y]")
Skip Montanaro46dfa5f2000-08-22 02:43:07 +0000755
Skip Montanaro803d6e52000-08-12 18:09:51 +0000756suppliers = [
757 (1, "Boeing"),
758 (2, "Ford"),
759 (3, "Macdonalds")
760]
761
762parts = [
763 (10, "Airliner"),
764 (20, "Engine"),
765 (30, "Cheeseburger")
766]
767
768suppart = [
769 (1, 10), (1, 20), (2, 20), (3, 30)
770]
771
772print [
773 (sname, pname)
774 for (sno, sname) in suppliers
775 for (pno, pname) in parts
776 for (sp_sno, sp_pno) in suppart
777 if sno == sp_sno and pno == sp_pno
778]
Raymond Hettinger354433a2004-05-19 08:20:33 +0000779
780# generator expression tests
781g = ([x for x in range(10)] for x in range(1))
782verify(g.next() == [x for x in range(10)])
783try:
784 g.next()
785 raise TestFailed, 'should produce StopIteration exception'
786except StopIteration:
787 pass
788
789a = 1
790try:
791 g = (a for d in a)
792 g.next()
793 raise TestFailed, 'should produce TypeError'
794except TypeError:
795 pass
796
797verify(list((x, y) for x in 'abcd' for y in 'abcd') == [(x, y) for x in 'abcd' for y in 'abcd'])
798verify(list((x, y) for x in 'ab' for y in 'xy') == [(x, y) for x in 'ab' for y in 'xy'])
799
800a = [x for x in range(10)]
801b = (x for x in (y for y in a))
802verify(sum(b) == sum([x for x in range(10)]))
803
804verify(sum(x**2 for x in range(10)) == sum([x**2 for x in range(10)]))
805verify(sum(x*x for x in range(10) if x%2) == sum([x*x for x in range(10) if x%2]))
806verify(sum(x for x in (y for y in range(10))) == sum([x for x in range(10)]))
807verify(sum(x for x in (y for y in (z for z in range(10)))) == sum([x for x in range(10)]))
808verify(sum(x for x in [y for y in (z for z in range(10))]) == sum([x for x in range(10)]))
809verify(sum(x for x in (y for y in (z for z in range(10) if True)) if True) == sum([x for x in range(10)]))
810verify(sum(x for x in (y for y in (z for z in range(10) if True) if False) if True) == 0)
811check_syntax("foo(x for x in range(10), 100)")
812check_syntax("foo(100, x for x in range(10))")
813
814# test for outmost iterable precomputation
815x = 10; g = (i for i in range(x)); x = 5
816verify(len(list(g)) == 10)
817
818# This should hold, since we're only precomputing outmost iterable.
819x = 10; t = False; g = ((i,j) for i in range(x) if t for j in range(x))
820x = 5; t = True;
821verify([(i,j) for i in range(10) for j in range(5)] == list(g))
Thomas Woutersdca3b9c2006-02-27 00:24:13 +0000822
Thomas Woutersced6cdd2006-04-12 00:07:59 +0000823# Grammar allows multiple adjacent 'if's in listcomps and genexps,
824# even though it's silly. Make sure it works (ifelse broke this.)
825verify([ x for x in range(10) if x % 2 if x % 3 ], [1, 5, 7])
826verify((x for x in range(10) if x % 2 if x % 3), [1, 5, 7])
827
Thomas Woutersdca3b9c2006-02-27 00:24:13 +0000828# Test ifelse expressions in various cases
829def _checkeval(msg, ret):
830 "helper to check that evaluation of expressions is done correctly"
831 print x
832 return ret
833
834verify([ x() for x in lambda: True, lambda: False if x() ] == [True])
835verify([ x() for x in (lambda: True, lambda: False) if x() ] == [True])
836verify([ x(False) for x in (lambda x: False if x else True, lambda x: True if x else False) if x(False) ] == [True])
837verify((5 if 1 else _checkeval("check 1", 0)) == 5)
838verify((_checkeval("check 2", 0) if 0 else 5) == 5)
839verify((5 and 6 if 0 else 1) == 1)
840verify(((5 and 6) if 0 else 1) == 1)
841verify((5 and (6 if 1 else 1)) == 6)
842verify((0 or _checkeval("check 3", 2) if 0 else 3) == 3)
843verify((1 or _checkeval("check 4", 2) if 1 else _checkeval("check 5", 3)) == 1)
844verify((0 or 5 if 1 else _checkeval("check 6", 3)) == 5)
845verify((not 5 if 1 else 1) == False)
846verify((not 5 if 0 else 1) == 1)
847verify((6 + 1 if 1 else 2) == 7)
848verify((6 - 1 if 1 else 2) == 5)
849verify((6 * 2 if 1 else 4) == 12)
850verify((6 / 2 if 1 else 3) == 3)
851verify((6 < 4 if 0 else 2) == 2)