blob: 922a5166ec12f75e5705cfcd29f5f411735d6452 [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
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +02004from test.support import check_syntax_error, check_syntax_warning
Yury Selivanov75445082015-05-11 22:57:16 -04005import inspect
Thomas Wouters89f507f2006-12-13 04:49:30 +00006import unittest
Jeremy Hylton7d3dff22001-10-10 01:45:02 +00007import sys
Serhiy Storchakad31e7732018-10-21 10:09:39 +03008import warnings
Thomas Wouters89f507f2006-12-13 04:49:30 +00009# testing import *
10from sys import *
Guido van Rossum3bead091992-01-27 17:00:37 +000011
Yury Selivanovf8cb8a12016-09-08 20:50:03 -070012# different import patterns to check that __annotations__ does not interfere
13# with import machinery
14import test.ann_module as ann_module
15import typing
16from collections import ChainMap
17from test import ann_module2
18import test
19
Brett Cannona721aba2016-09-09 14:57:09 -070020# These are shared with test_tokenize and other test modules.
21#
22# Note: since several test cases filter out floats by looking for "e" and ".",
23# don't add hexadecimal literals that contain "e" or "E".
24VALID_UNDERSCORE_LITERALS = [
25 '0_0_0',
26 '4_2',
27 '1_0000_0000',
28 '0b1001_0100',
29 '0xffff_ffff',
30 '0o5_7_7',
31 '1_00_00.5',
32 '1_00_00.5e5',
33 '1_00_00e5_1',
34 '1e1_0',
35 '.1_4',
36 '.1_4e1',
37 '0b_0',
38 '0x_f',
39 '0o_5',
40 '1_00_00j',
41 '1_00_00.5j',
42 '1_00_00e5_1j',
43 '.1_4j',
44 '(1_2.5+3_3j)',
45 '(.5_6j)',
46]
47INVALID_UNDERSCORE_LITERALS = [
48 # Trailing underscores:
49 '0_',
50 '42_',
51 '1.4j_',
52 '0x_',
53 '0b1_',
54 '0xf_',
55 '0o5_',
56 '0 if 1_Else 1',
57 # Underscores in the base selector:
58 '0_b0',
59 '0_xf',
60 '0_o5',
61 # Old-style octal, still disallowed:
62 '0_7',
63 '09_99',
64 # Multiple consecutive underscores:
65 '4_______2',
66 '0.1__4',
67 '0.1__4j',
68 '0b1001__0100',
69 '0xffff__ffff',
70 '0x___',
71 '0o5__77',
72 '1e1__0',
73 '1e1__0j',
74 # Underscore right before a dot:
75 '1_.4',
76 '1_.4j',
77 # Underscore right after a dot:
78 '1._4',
79 '1._4j',
80 '._5',
81 '._5j',
82 # Underscore right after a sign:
83 '1.0e+_1',
84 '1.0e+_1j',
85 # Underscore right before j:
86 '1.4_j',
87 '1.4e5_j',
88 # Underscore right before e:
89 '1_e1',
90 '1.4_e1',
91 '1.4_e1j',
92 # Underscore right after e:
93 '1e_1',
94 '1.4e_1',
95 '1.4e_1j',
96 # Complex cases with parens:
97 '(1+1.5_j_)',
98 '(1+1.5_j)',
99]
100
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000101
Thomas Wouters89f507f2006-12-13 04:49:30 +0000102class TokenTests(unittest.TestCase):
Guido van Rossum3bead091992-01-27 17:00:37 +0000103
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +0200104 from test.support import check_syntax_error
Serhiy Storchakacf7303e2018-07-09 15:09:35 +0300105
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500106 def test_backslash(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000107 # Backslash means line continuation:
108 x = 1 \
109 + 1
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000110 self.assertEqual(x, 2, 'backslash for line continuation')
Guido van Rossum3bead091992-01-27 17:00:37 +0000111
Thomas Wouters89f507f2006-12-13 04:49:30 +0000112 # Backslash does not means continuation in comments :\
113 x = 0
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000114 self.assertEqual(x, 0, 'backslash ending comment')
Guido van Rossum3bead091992-01-27 17:00:37 +0000115
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500116 def test_plain_integers(self):
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000117 self.assertEqual(type(000), type(0))
118 self.assertEqual(0xff, 255)
119 self.assertEqual(0o377, 255)
120 self.assertEqual(2147483647, 0o17777777777)
121 self.assertEqual(0b1001, 9)
Georg Brandlfceab5a2008-01-19 20:08:23 +0000122 # "0x" is not a valid literal
123 self.assertRaises(SyntaxError, eval, "0x")
Christian Heimesa37d4c62007-12-04 23:02:19 +0000124 from sys import maxsize
125 if maxsize == 2147483647:
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000126 self.assertEqual(-2147483647-1, -0o20000000000)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000127 # XXX -2147483648
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000128 self.assertTrue(0o37777777777 > 0)
129 self.assertTrue(0xffffffff > 0)
130 self.assertTrue(0b1111111111111111111111111111111 > 0)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000131 for s in ('2147483648', '0o40000000000', '0x100000000',
132 '0b10000000000000000000000000000000'):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000133 try:
134 x = eval(s)
135 except OverflowError:
136 self.fail("OverflowError on huge integer literal %r" % s)
Christian Heimesa37d4c62007-12-04 23:02:19 +0000137 elif maxsize == 9223372036854775807:
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000138 self.assertEqual(-9223372036854775807-1, -0o1000000000000000000000)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000139 self.assertTrue(0o1777777777777777777777 > 0)
140 self.assertTrue(0xffffffffffffffff > 0)
141 self.assertTrue(0b11111111111111111111111111111111111111111111111111111111111111 > 0)
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000142 for s in '9223372036854775808', '0o2000000000000000000000', \
143 '0x10000000000000000', \
144 '0b100000000000000000000000000000000000000000000000000000000000000':
Thomas Wouters89f507f2006-12-13 04:49:30 +0000145 try:
146 x = eval(s)
147 except OverflowError:
148 self.fail("OverflowError on huge integer literal %r" % s)
149 else:
Christian Heimesa37d4c62007-12-04 23:02:19 +0000150 self.fail('Weird maxsize value %r' % maxsize)
Guido van Rossum3bead091992-01-27 17:00:37 +0000151
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500152 def test_long_integers(self):
Guido van Rossume2a383d2007-01-15 16:59:06 +0000153 x = 0
Guido van Rossume2a383d2007-01-15 16:59:06 +0000154 x = 0xffffffffffffffff
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000155 x = 0Xffffffffffffffff
156 x = 0o77777777777777777
157 x = 0O77777777777777777
Guido van Rossume2a383d2007-01-15 16:59:06 +0000158 x = 123456789012345678901234567890
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000159 x = 0b100000000000000000000000000000000000000000000000000000000000000000000
160 x = 0B111111111111111111111111111111111111111111111111111111111111111111111
Guido van Rossum3bead091992-01-27 17:00:37 +0000161
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500162 def test_floats(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000163 x = 3.14
164 x = 314.
165 x = 0.314
166 # XXX x = 000.314
167 x = .314
168 x = 3e14
169 x = 3E14
170 x = 3e-14
171 x = 3e+14
172 x = 3.e14
173 x = .3e14
174 x = 3.1e4
Guido van Rossum3bead091992-01-27 17:00:37 +0000175
Benjamin Petersonc4161622014-06-07 12:36:39 -0700176 def test_float_exponent_tokenization(self):
177 # See issue 21642.
178 self.assertEqual(1 if 1else 0, 1)
179 self.assertEqual(1 if 0else 0, 0)
180 self.assertRaises(SyntaxError, eval, "0 if 1Else 0")
181
Brett Cannona721aba2016-09-09 14:57:09 -0700182 def test_underscore_literals(self):
183 for lit in VALID_UNDERSCORE_LITERALS:
184 self.assertEqual(eval(lit), eval(lit.replace('_', '')))
185 for lit in INVALID_UNDERSCORE_LITERALS:
186 self.assertRaises(SyntaxError, eval, lit)
187 # Sanity check: no literal begins with an underscore
188 self.assertRaises(NameError, eval, "_0")
189
Serhiy Storchakacf7303e2018-07-09 15:09:35 +0300190 def test_bad_numerical_literals(self):
191 check = self.check_syntax_error
192 check("0b12", "invalid digit '2' in binary literal")
193 check("0b1_2", "invalid digit '2' in binary literal")
194 check("0b2", "invalid digit '2' in binary literal")
195 check("0b1_", "invalid binary literal")
196 check("0b", "invalid binary literal")
197 check("0o18", "invalid digit '8' in octal literal")
198 check("0o1_8", "invalid digit '8' in octal literal")
199 check("0o8", "invalid digit '8' in octal literal")
200 check("0o1_", "invalid octal literal")
201 check("0o", "invalid octal literal")
202 check("0x1_", "invalid hexadecimal literal")
203 check("0x", "invalid hexadecimal literal")
204 check("1_", "invalid decimal literal")
205 check("012",
206 "leading zeros in decimal integer literals are not permitted; "
207 "use an 0o prefix for octal integers")
208 check("1.2_", "invalid decimal literal")
209 check("1e2_", "invalid decimal literal")
210 check("1e+", "invalid decimal literal")
211
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500212 def test_string_literals(self):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000213 x = ''; y = ""; self.assertTrue(len(x) == 0 and x == y)
214 x = '\''; y = "'"; self.assertTrue(len(x) == 1 and x == y and ord(x) == 39)
215 x = '"'; y = "\""; self.assertTrue(len(x) == 1 and x == y and ord(x) == 34)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000216 x = "doesn't \"shrink\" does it"
217 y = 'doesn\'t "shrink" does it'
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000218 self.assertTrue(len(x) == 24 and x == y)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000219 x = "does \"shrink\" doesn't it"
220 y = 'does "shrink" doesn\'t it'
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000221 self.assertTrue(len(x) == 24 and x == y)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000222 x = """
Guido van Rossumb6775db1994-08-01 11:34:53 +0000223The "quick"
224brown fox
225jumps over
226the 'lazy' dog.
227"""
Thomas Wouters89f507f2006-12-13 04:49:30 +0000228 y = '\nThe "quick"\nbrown fox\njumps over\nthe \'lazy\' dog.\n'
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000229 self.assertEqual(x, y)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000230 y = '''
Guido van Rossumb6775db1994-08-01 11:34:53 +0000231The "quick"
232brown fox
233jumps over
234the 'lazy' dog.
Thomas Wouters89f507f2006-12-13 04:49:30 +0000235'''
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000236 self.assertEqual(x, y)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000237 y = "\n\
Guido van Rossumb6775db1994-08-01 11:34:53 +0000238The \"quick\"\n\
239brown fox\n\
240jumps over\n\
241the 'lazy' dog.\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +0000242"
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000243 self.assertEqual(x, y)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000244 y = '\n\
Guido van Rossumb6775db1994-08-01 11:34:53 +0000245The \"quick\"\n\
246brown fox\n\
247jumps over\n\
248the \'lazy\' dog.\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +0000249'
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000250 self.assertEqual(x, y)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000251
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500252 def test_ellipsis(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000253 x = ...
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000254 self.assertTrue(x is Ellipsis)
Georg Brandldde00282007-03-18 19:01:53 +0000255 self.assertRaises(SyntaxError, eval, ".. .")
Thomas Wouters89f507f2006-12-13 04:49:30 +0000256
Benjamin Peterson758888d2011-05-30 11:12:38 -0500257 def test_eof_error(self):
258 samples = ("def foo(", "\ndef foo(", "def foo(\n")
259 for s in samples:
260 with self.assertRaises(SyntaxError) as cm:
261 compile(s, "<test>", "exec")
262 self.assertIn("unexpected EOF", str(cm.exception))
263
Yury Selivanovf8cb8a12016-09-08 20:50:03 -0700264var_annot_global: int # a global annotated is necessary for test_var_annot
265
266# custom namespace for testing __annotations__
267
268class CNS:
269 def __init__(self):
270 self._dct = {}
271 def __setitem__(self, item, value):
272 self._dct[item.lower()] = value
273 def __getitem__(self, item):
274 return self._dct[item]
275
276
Thomas Wouters89f507f2006-12-13 04:49:30 +0000277class GrammarTests(unittest.TestCase):
278
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +0200279 from test.support import check_syntax_error, check_syntax_warning
Serhiy Storchaka07ca9af2018-02-04 10:53:48 +0200280
Thomas Wouters89f507f2006-12-13 04:49:30 +0000281 # single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
282 # XXX can't test in a script -- this rule is only used when interactive
283
284 # file_input: (NEWLINE | stmt)* ENDMARKER
285 # Being tested as this very moment this very module
286
287 # expr_input: testlist NEWLINE
288 # XXX Hard to test -- used only in calls to input()
289
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500290 def test_eval_input(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000291 # testlist ENDMARKER
292 x = eval('1, 0 or 1')
293
Yury Selivanovf8cb8a12016-09-08 20:50:03 -0700294 def test_var_annot_basics(self):
295 # all these should be allowed
296 var1: int = 5
297 var2: [int, str]
298 my_lst = [42]
299 def one():
300 return 1
301 int.new_attr: int
302 [list][0]: type
303 my_lst[one()-1]: int = 5
304 self.assertEqual(my_lst, [5])
305
306 def test_var_annot_syntax_errors(self):
307 # parser pass
308 check_syntax_error(self, "def f: int")
309 check_syntax_error(self, "x: int: str")
310 check_syntax_error(self, "def f():\n"
311 " nonlocal x: int\n")
312 # AST pass
313 check_syntax_error(self, "[x, 0]: int\n")
314 check_syntax_error(self, "f(): int\n")
315 check_syntax_error(self, "(x,): int")
316 check_syntax_error(self, "def f():\n"
317 " (x, y): int = (1, 2)\n")
318 # symtable pass
319 check_syntax_error(self, "def f():\n"
320 " x: int\n"
321 " global x\n")
322 check_syntax_error(self, "def f():\n"
323 " global x\n"
324 " x: int\n")
325
326 def test_var_annot_basic_semantics(self):
327 # execution order
328 with self.assertRaises(ZeroDivisionError):
329 no_name[does_not_exist]: no_name_again = 1/0
330 with self.assertRaises(NameError):
331 no_name[does_not_exist]: 1/0 = 0
332 global var_annot_global
333
334 # function semantics
335 def f():
336 st: str = "Hello"
337 a.b: int = (1, 2)
338 return st
339 self.assertEqual(f.__annotations__, {})
340 def f_OK():
341 x: 1/0
342 f_OK()
343 def fbad():
344 x: int
345 print(x)
346 with self.assertRaises(UnboundLocalError):
347 fbad()
348 def f2bad():
349 (no_such_global): int
350 print(no_such_global)
351 try:
352 f2bad()
353 except Exception as e:
354 self.assertIs(type(e), NameError)
355
356 # class semantics
357 class C:
Guido van Rossum015d8742016-09-11 09:45:24 -0700358 __foo: int
Yury Selivanovf8cb8a12016-09-08 20:50:03 -0700359 s: str = "attr"
360 z = 2
361 def __init__(self, x):
362 self.x: int = x
Guido van Rossum015d8742016-09-11 09:45:24 -0700363 self.assertEqual(C.__annotations__, {'_C__foo': int, 's': str})
Yury Selivanovf8cb8a12016-09-08 20:50:03 -0700364 with self.assertRaises(NameError):
365 class CBad:
366 no_such_name_defined.attr: int = 0
367 with self.assertRaises(NameError):
368 class Cbad2(C):
369 x: int
370 x.y: list = []
371
372 def test_var_annot_metaclass_semantics(self):
373 class CMeta(type):
374 @classmethod
375 def __prepare__(metacls, name, bases, **kwds):
376 return {'__annotations__': CNS()}
377 class CC(metaclass=CMeta):
378 XX: 'ANNOT'
379 self.assertEqual(CC.__annotations__['xx'], 'ANNOT')
380
381 def test_var_annot_module_semantics(self):
382 with self.assertRaises(AttributeError):
383 print(test.__annotations__)
384 self.assertEqual(ann_module.__annotations__,
385 {1: 2, 'x': int, 'y': str, 'f': typing.Tuple[int, int]})
386 self.assertEqual(ann_module.M.__annotations__,
387 {'123': 123, 'o': type})
388 self.assertEqual(ann_module2.__annotations__, {})
Yury Selivanovf8cb8a12016-09-08 20:50:03 -0700389
390 def test_var_annot_in_module(self):
391 # check that functions fail the same way when executed
392 # outside of module where they were defined
393 from test.ann_module3 import f_bad_ann, g_bad_ann, D_bad_ann
394 with self.assertRaises(NameError):
395 f_bad_ann()
396 with self.assertRaises(NameError):
397 g_bad_ann()
398 with self.assertRaises(NameError):
399 D_bad_ann(5)
400
401 def test_var_annot_simple_exec(self):
402 gns = {}; lns= {}
403 exec("'docstring'\n"
404 "__annotations__[1] = 2\n"
405 "x: int = 5\n", gns, lns)
406 self.assertEqual(lns["__annotations__"], {1: 2, 'x': int})
407 with self.assertRaises(KeyError):
408 gns['__annotations__']
409
410 def test_var_annot_custom_maps(self):
411 # tests with custom locals() and __annotations__
412 ns = {'__annotations__': CNS()}
413 exec('X: int; Z: str = "Z"; (w): complex = 1j', ns)
414 self.assertEqual(ns['__annotations__']['x'], int)
415 self.assertEqual(ns['__annotations__']['z'], str)
416 with self.assertRaises(KeyError):
417 ns['__annotations__']['w']
418 nonloc_ns = {}
419 class CNS2:
420 def __init__(self):
421 self._dct = {}
422 def __setitem__(self, item, value):
423 nonlocal nonloc_ns
424 self._dct[item] = value
425 nonloc_ns[item] = value
426 def __getitem__(self, item):
427 return self._dct[item]
428 exec('x: int = 1', {}, CNS2())
429 self.assertEqual(nonloc_ns['__annotations__']['x'], int)
430
431 def test_var_annot_refleak(self):
432 # complex case: custom locals plus custom __annotations__
433 # this was causing refleak
434 cns = CNS()
435 nonloc_ns = {'__annotations__': cns}
436 class CNS2:
437 def __init__(self):
438 self._dct = {'__annotations__': cns}
439 def __setitem__(self, item, value):
440 nonlocal nonloc_ns
441 self._dct[item] = value
442 nonloc_ns[item] = value
443 def __getitem__(self, item):
444 return self._dct[item]
445 exec('X: str', {}, CNS2())
446 self.assertEqual(nonloc_ns['__annotations__']['x'], str)
447
Ivan Levkivskyi62c35a82019-01-25 01:39:19 +0000448 def test_var_annot_rhs(self):
449 ns = {}
450 exec('x: tuple = 1, 2', ns)
451 self.assertEqual(ns['x'], (1, 2))
452 stmt = ('def f():\n'
453 ' x: int = yield')
454 exec(stmt, ns)
455 self.assertEqual(list(ns['f']()), [None])
456
Pablo Galindo8565f6b2019-06-03 08:34:20 +0100457 ns = {"a": 1, 'b': (2, 3, 4), "c":5, "Tuple": typing.Tuple}
458 exec('x: Tuple[int, ...] = a,*b,c', ns)
459 self.assertEqual(ns['x'], (1, 2, 3, 4, 5))
460
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500461 def test_funcdef(self):
Neal Norwitzc1505362006-12-28 06:47:50 +0000462 ### [decorators] 'def' NAME parameters ['->' test] ':' suite
Brandt Bucherbe501ca2020-03-03 14:25:44 -0800463 ### decorator: '@' namedexpr_test NEWLINE
Neal Norwitzc1505362006-12-28 06:47:50 +0000464 ### decorators: decorator+
465 ### parameters: '(' [typedargslist] ')'
466 ### typedargslist: ((tfpdef ['=' test] ',')*
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000467 ### ('*' [tfpdef] (',' tfpdef ['=' test])* [',' '**' tfpdef] | '**' tfpdef)
Neal Norwitzc1505362006-12-28 06:47:50 +0000468 ### | tfpdef ['=' test] (',' tfpdef ['=' test])* [','])
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000469 ### tfpdef: NAME [':' test]
Neal Norwitzc1505362006-12-28 06:47:50 +0000470 ### varargslist: ((vfpdef ['=' test] ',')*
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000471 ### ('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef)
Neal Norwitzc1505362006-12-28 06:47:50 +0000472 ### | vfpdef ['=' test] (',' vfpdef ['=' test])* [','])
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000473 ### vfpdef: NAME
Thomas Wouters89f507f2006-12-13 04:49:30 +0000474 def f1(): pass
475 f1()
476 f1(*())
477 f1(*(), **{})
478 def f2(one_argument): pass
479 def f3(two, arguments): pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000480 self.assertEqual(f2.__code__.co_varnames, ('one_argument',))
481 self.assertEqual(f3.__code__.co_varnames, ('two', 'arguments'))
Thomas Wouters89f507f2006-12-13 04:49:30 +0000482 def a1(one_arg,): pass
483 def a2(two, args,): pass
484 def v0(*rest): pass
485 def v1(a, *rest): pass
486 def v2(a, b, *rest): pass
Thomas Wouters89f507f2006-12-13 04:49:30 +0000487
488 f1()
489 f2(1)
490 f2(1,)
491 f3(1, 2)
492 f3(1, 2,)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000493 v0()
494 v0(1)
495 v0(1,)
496 v0(1,2)
497 v0(1,2,3,4,5,6,7,8,9,0)
498 v1(1)
499 v1(1,)
500 v1(1,2)
501 v1(1,2,3)
502 v1(1,2,3,4,5,6,7,8,9,0)
503 v2(1,2)
504 v2(1,2,3)
505 v2(1,2,3,4)
506 v2(1,2,3,4,5,6,7,8,9,0)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000507
Thomas Wouters89f507f2006-12-13 04:49:30 +0000508 def d01(a=1): pass
509 d01()
510 d01(1)
511 d01(*(1,))
Yury Selivanov14acf5f2015-08-05 17:54:10 -0400512 d01(*[] or [2])
513 d01(*() or (), *{} and (), **() or {})
Thomas Wouters89f507f2006-12-13 04:49:30 +0000514 d01(**{'a':2})
Benjamin Petersonde12b792015-05-16 09:44:45 -0400515 d01(**{'a':2} or {})
Thomas Wouters89f507f2006-12-13 04:49:30 +0000516 def d11(a, b=1): pass
517 d11(1)
518 d11(1, 2)
519 d11(1, **{'b':2})
520 def d21(a, b, c=1): pass
521 d21(1, 2)
522 d21(1, 2, 3)
523 d21(*(1, 2, 3))
524 d21(1, *(2, 3))
525 d21(1, 2, *(3,))
526 d21(1, 2, **{'c':3})
527 def d02(a=1, b=2): pass
528 d02()
529 d02(1)
530 d02(1, 2)
531 d02(*(1, 2))
532 d02(1, *(2,))
533 d02(1, **{'b':2})
534 d02(**{'a': 1, 'b': 2})
535 def d12(a, b=1, c=2): pass
536 d12(1)
537 d12(1, 2)
538 d12(1, 2, 3)
539 def d22(a, b, c=1, d=2): pass
540 d22(1, 2)
541 d22(1, 2, 3)
542 d22(1, 2, 3, 4)
543 def d01v(a=1, *rest): pass
544 d01v()
545 d01v(1)
546 d01v(1, 2)
547 d01v(*(1, 2, 3, 4))
548 d01v(*(1,))
549 d01v(**{'a':2})
550 def d11v(a, b=1, *rest): pass
551 d11v(1)
552 d11v(1, 2)
553 d11v(1, 2, 3)
554 def d21v(a, b, c=1, *rest): pass
555 d21v(1, 2)
556 d21v(1, 2, 3)
557 d21v(1, 2, 3, 4)
558 d21v(*(1, 2, 3, 4))
559 d21v(1, 2, **{'c': 3})
560 def d02v(a=1, b=2, *rest): pass
561 d02v()
562 d02v(1)
563 d02v(1, 2)
564 d02v(1, 2, 3)
565 d02v(1, *(2, 3, 4))
566 d02v(**{'a': 1, 'b': 2})
567 def d12v(a, b=1, c=2, *rest): pass
568 d12v(1)
569 d12v(1, 2)
570 d12v(1, 2, 3)
571 d12v(1, 2, 3, 4)
572 d12v(*(1, 2, 3, 4))
573 d12v(1, 2, *(3, 4, 5))
574 d12v(1, *(2,), **{'c': 3})
575 def d22v(a, b, c=1, d=2, *rest): pass
576 d22v(1, 2)
577 d22v(1, 2, 3)
578 d22v(1, 2, 3, 4)
579 d22v(1, 2, 3, 4, 5)
580 d22v(*(1, 2, 3, 4))
581 d22v(1, 2, *(3, 4, 5))
582 d22v(1, *(2, 3), **{'d': 4})
Georg Brandld8b690f2008-05-16 17:28:50 +0000583
584 # keyword argument type tests
585 try:
586 str('x', **{b'foo':1 })
587 except TypeError:
588 pass
589 else:
590 self.fail('Bytes should not work as keyword argument names')
Thomas Wouters89f507f2006-12-13 04:49:30 +0000591 # keyword only argument tests
592 def pos0key1(*, key): return key
593 pos0key1(key=100)
594 def pos2key2(p1, p2, *, k1, k2=100): return p1,p2,k1,k2
595 pos2key2(1, 2, k1=100)
596 pos2key2(1, 2, k1=100, k2=200)
597 pos2key2(1, 2, k2=100, k1=200)
598 def pos2key2dict(p1, p2, *, k1=100, k2, **kwarg): return p1,p2,k1,k2,kwarg
599 pos2key2dict(1,2,k2=100,tokwarg1=100,tokwarg2=200)
600 pos2key2dict(1,2,tokwarg1=100,tokwarg2=200, k2=100)
601
Robert Collinsdf395992015-08-12 08:00:06 +1200602 self.assertRaises(SyntaxError, eval, "def f(*): pass")
603 self.assertRaises(SyntaxError, eval, "def f(*,): pass")
604 self.assertRaises(SyntaxError, eval, "def f(*, **kwds): pass")
605
Benjamin Peterson2d735bc2008-08-19 20:57:10 +0000606 # keyword arguments after *arglist
607 def f(*args, **kwargs):
608 return args, kwargs
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000609 self.assertEqual(f(1, x=2, *[3, 4], y=5), ((1, 3, 4),
Benjamin Peterson2d735bc2008-08-19 20:57:10 +0000610 {'x':2, 'y':5}))
Benjamin Peterson025e9eb2015-05-05 20:16:41 -0400611 self.assertEqual(f(1, *(2,3), 4), ((1, 2, 3, 4), {}))
Benjamin Peterson2d735bc2008-08-19 20:57:10 +0000612 self.assertRaises(SyntaxError, eval, "f(1, x=2, *(3,4), x=5)")
Benjamin Peterson025e9eb2015-05-05 20:16:41 -0400613 self.assertEqual(f(**{'eggs':'scrambled', 'spam':'fried'}),
614 ((), {'eggs':'scrambled', 'spam':'fried'}))
615 self.assertEqual(f(spam='fried', **{'eggs':'scrambled'}),
616 ((), {'eggs':'scrambled', 'spam':'fried'}))
Benjamin Peterson2d735bc2008-08-19 20:57:10 +0000617
Serhiy Storchaka0cc99c82018-01-04 10:36:35 +0200618 # Check ast errors in *args and *kwargs
619 check_syntax_error(self, "f(*g(1=2))")
620 check_syntax_error(self, "f(**g(1=2))")
621
Neal Norwitzc1505362006-12-28 06:47:50 +0000622 # argument annotation tests
623 def f(x) -> list: pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000624 self.assertEqual(f.__annotations__, {'return': list})
Zachary Warece17f762015-08-01 21:55:36 -0500625 def f(x: int): pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000626 self.assertEqual(f.__annotations__, {'x': int})
Pablo Galindoa0c01bf2019-05-31 15:19:50 +0100627 def f(x: int, /): pass
628 self.assertEqual(f.__annotations__, {'x': int})
629 def f(x: int = 34, /): pass
630 self.assertEqual(f.__annotations__, {'x': int})
Zachary Warece17f762015-08-01 21:55:36 -0500631 def f(*x: str): pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000632 self.assertEqual(f.__annotations__, {'x': str})
Zachary Warece17f762015-08-01 21:55:36 -0500633 def f(**x: float): pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000634 self.assertEqual(f.__annotations__, {'x': float})
Zachary Warece17f762015-08-01 21:55:36 -0500635 def f(x, y: 1+2): pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000636 self.assertEqual(f.__annotations__, {'y': 3})
Pablo Galindoa0c01bf2019-05-31 15:19:50 +0100637 def f(x, y: 1+2, /): pass
638 self.assertEqual(f.__annotations__, {'y': 3})
Zachary Warece17f762015-08-01 21:55:36 -0500639 def f(a, b: 1, c: 2, d): pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000640 self.assertEqual(f.__annotations__, {'b': 1, 'c': 2})
Pablo Galindoa0c01bf2019-05-31 15:19:50 +0100641 def f(a, b: 1, /, c: 2, d): pass
642 self.assertEqual(f.__annotations__, {'b': 1, 'c': 2})
Zachary Warece17f762015-08-01 21:55:36 -0500643 def f(a, b: 1, c: 2, d, e: 3 = 4, f=5, *g: 6): pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000644 self.assertEqual(f.__annotations__,
Zachary Warece17f762015-08-01 21:55:36 -0500645 {'b': 1, 'c': 2, 'e': 3, 'g': 6})
646 def f(a, b: 1, c: 2, d, e: 3 = 4, f=5, *g: 6, h: 7, i=8, j: 9 = 10,
647 **k: 11) -> 12: pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000648 self.assertEqual(f.__annotations__,
Zachary Warece17f762015-08-01 21:55:36 -0500649 {'b': 1, 'c': 2, 'e': 3, 'g': 6, 'h': 7, 'j': 9,
650 'k': 11, 'return': 12})
Pablo Galindoa0c01bf2019-05-31 15:19:50 +0100651 def f(a, b: 1, c: 2, d, e: 3 = 4, f: int = 5, /, *g: 6, h: 7, i=8, j: 9 = 10,
652 **k: 11) -> 12: pass
653 self.assertEqual(f.__annotations__,
654 {'b': 1, 'c': 2, 'e': 3, 'f': int, 'g': 6, 'h': 7, 'j': 9,
655 'k': 11, 'return': 12})
Yury Selivanov34ce99f2014-02-18 12:49:41 -0500656 # Check for issue #20625 -- annotations mangling
657 class Spam:
Zachary Warece17f762015-08-01 21:55:36 -0500658 def f(self, *, __kw: 1):
Yury Selivanov34ce99f2014-02-18 12:49:41 -0500659 pass
660 class Ham(Spam): pass
Benjamin Petersonbcfcfc52014-03-09 20:59:24 -0500661 self.assertEqual(Spam.f.__annotations__, {'_Spam__kw': 1})
662 self.assertEqual(Ham.f.__annotations__, {'_Spam__kw': 1})
Nick Coghlan71011e22007-04-23 11:05:01 +0000663 # Check for SF Bug #1697248 - mixing decorators and a return annotation
664 def null(x): return x
665 @null
666 def f(x) -> list: pass
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000667 self.assertEqual(f.__annotations__, {'return': list})
Nick Coghlan71011e22007-04-23 11:05:01 +0000668
Brandt Bucherbe501ca2020-03-03 14:25:44 -0800669 # Test expressions as decorators (PEP 614):
670 @False or null
671 def f(x): pass
672 @d := null
673 def f(x): pass
674 @lambda f: null(f)
675 def f(x): pass
676 @[..., null, ...][1]
677 def f(x): pass
678 @null(null)(null)
679 def f(x): pass
680 @[null][0].__call__.__call__
681 def f(x): pass
682
Serhiy Storchaka64204de2016-06-12 17:36:24 +0300683 # test closures with a variety of opargs
Guido van Rossum0240b922007-02-26 21:23:50 +0000684 closure = 1
685 def f(): return closure
686 def f(x=1): return closure
687 def f(*, k=1): return closure
688 def f() -> int: return closure
Neal Norwitzc1505362006-12-28 06:47:50 +0000689
Robert Collinsdf395992015-08-12 08:00:06 +1200690 # Check trailing commas are permitted in funcdef argument list
691 def f(a,): pass
692 def f(*args,): pass
693 def f(**kwds,): pass
694 def f(a, *args,): pass
695 def f(a, **kwds,): pass
696 def f(*args, b,): pass
697 def f(*, b,): pass
698 def f(*args, **kwds,): pass
699 def f(a, *args, b,): pass
700 def f(a, *, b,): pass
701 def f(a, *args, **kwds,): pass
702 def f(*args, b, **kwds,): pass
703 def f(*, b, **kwds,): pass
704 def f(a, *args, b, **kwds,): pass
705 def f(a, *, b, **kwds,): pass
706
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500707 def test_lambdef(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000708 ### lambdef: 'lambda' [varargslist] ':' test
709 l1 = lambda : 0
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000710 self.assertEqual(l1(), 0)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000711 l2 = lambda : a[d] # XXX just testing the expression
Guido van Rossume2a383d2007-01-15 16:59:06 +0000712 l3 = lambda : [2 < x for x in [-1, 3, 0]]
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000713 self.assertEqual(l3(), [0, 1, 0])
Thomas Wouters89f507f2006-12-13 04:49:30 +0000714 l4 = lambda x = lambda y = lambda z=1 : z : y() : x()
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000715 self.assertEqual(l4(), 1)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000716 l5 = lambda x, y, z=2: x + y + z
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000717 self.assertEqual(l5(1, 2), 5)
718 self.assertEqual(l5(1, 2, 3), 6)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000719 check_syntax_error(self, "lambda x: x = 2")
Amaury Forgeot d'Arc35c86582008-06-17 21:11:29 +0000720 check_syntax_error(self, "lambda (None,): None")
Thomas Wouters89f507f2006-12-13 04:49:30 +0000721 l6 = lambda x, y, *, k=20: x+y+k
Florent Xicluna9b86b9a2010-03-19 19:00:44 +0000722 self.assertEqual(l6(1,2), 1+2+20)
723 self.assertEqual(l6(1,2,k=10), 1+2+10)
Guido van Rossumb31c7f71993-11-11 10:31:23 +0000724
Robert Collinsdf395992015-08-12 08:00:06 +1200725 # check that trailing commas are permitted
726 l10 = lambda a,: 0
727 l11 = lambda *args,: 0
728 l12 = lambda **kwds,: 0
729 l13 = lambda a, *args,: 0
730 l14 = lambda a, **kwds,: 0
731 l15 = lambda *args, b,: 0
732 l16 = lambda *, b,: 0
733 l17 = lambda *args, **kwds,: 0
734 l18 = lambda a, *args, b,: 0
735 l19 = lambda a, *, b,: 0
736 l20 = lambda a, *args, **kwds,: 0
737 l21 = lambda *args, b, **kwds,: 0
738 l22 = lambda *, b, **kwds,: 0
739 l23 = lambda a, *args, b, **kwds,: 0
740 l24 = lambda a, *, b, **kwds,: 0
741
Guido van Rossumb31c7f71993-11-11 10:31:23 +0000742
Thomas Wouters89f507f2006-12-13 04:49:30 +0000743 ### stmt: simple_stmt | compound_stmt
744 # Tested below
Georg Brandl52318d62006-09-06 07:06:08 +0000745
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500746 def test_simple_stmt(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000747 ### simple_stmt: small_stmt (';' small_stmt)* [';']
748 x = 1; pass; del x
749 def foo():
Ezio Melotti13925002011-03-16 11:05:33 +0200750 # verify statements that end with semi-colons
Thomas Wouters89f507f2006-12-13 04:49:30 +0000751 x = 1; pass; del x;
752 foo()
Georg Brandl52318d62006-09-06 07:06:08 +0000753
Guido van Rossumd8faa362007-04-27 19:54:29 +0000754 ### small_stmt: expr_stmt | pass_stmt | del_stmt | flow_stmt | import_stmt | global_stmt | access_stmt
Thomas Wouters89f507f2006-12-13 04:49:30 +0000755 # Tested below
Georg Brandl52318d62006-09-06 07:06:08 +0000756
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500757 def test_expr_stmt(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000758 # (exprlist '=')* exprlist
Victor Stinner15a30952016-02-08 22:45:06 +0100759 1
Thomas Wouters89f507f2006-12-13 04:49:30 +0000760 1, 2, 3
761 x = 1
762 x = 1, 2, 3
763 x = y = z = 1, 2, 3
764 x, y, z = 1, 2, 3
765 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4)
Guido van Rossum3bead091992-01-27 17:00:37 +0000766
Thomas Wouters89f507f2006-12-13 04:49:30 +0000767 check_syntax_error(self, "x + 1 = 1")
768 check_syntax_error(self, "a + 1 = b + 2")
Guido van Rossum3bead091992-01-27 17:00:37 +0000769
Nick Coghlan5b1fdc12014-06-16 19:48:02 +1000770 # Check the heuristic for print & exec covers significant cases
771 # As well as placing some limits on false positives
772 def test_former_statements_refer_to_builtins(self):
773 keywords = "print", "exec"
774 # Cases where we want the custom error
775 cases = [
776 "{} foo",
777 "{} {{1:foo}}",
778 "if 1: {} foo",
779 "if 1: {} {{1:foo}}",
780 "if 1:\n {} foo",
781 "if 1:\n {} {{1:foo}}",
782 ]
783 for keyword in keywords:
784 custom_msg = "call to '{}'".format(keyword)
785 for case in cases:
786 source = case.format(keyword)
787 with self.subTest(source=source):
788 with self.assertRaisesRegex(SyntaxError, custom_msg):
789 exec(source)
790 source = source.replace("foo", "(foo.)")
791 with self.subTest(source=source):
792 with self.assertRaisesRegex(SyntaxError, "invalid syntax"):
793 exec(source)
794
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500795 def test_del_stmt(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000796 # 'del' exprlist
797 abc = [1,2,3]
798 x, y, z = abc
799 xyz = x, y, z
Barry Warsaw7e3e1c12000-10-11 21:26:03 +0000800
Thomas Wouters89f507f2006-12-13 04:49:30 +0000801 del abc
802 del x, y, (z, xyz)
Barry Warsaw9182b452000-08-29 04:57:10 +0000803
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500804 def test_pass_stmt(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000805 # 'pass'
806 pass
Barry Warsaw9182b452000-08-29 04:57:10 +0000807
Thomas Wouters89f507f2006-12-13 04:49:30 +0000808 # flow_stmt: break_stmt | continue_stmt | return_stmt | raise_stmt
809 # Tested below
Barry Warsaw9182b452000-08-29 04:57:10 +0000810
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500811 def test_break_stmt(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000812 # 'break'
813 while 1: break
Barry Warsaw9182b452000-08-29 04:57:10 +0000814
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500815 def test_continue_stmt(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000816 # 'continue'
817 i = 1
818 while i: i = 0; continue
Barry Warsaw9182b452000-08-29 04:57:10 +0000819
Thomas Wouters89f507f2006-12-13 04:49:30 +0000820 msg = ""
821 while not msg:
822 msg = "ok"
823 try:
824 continue
825 msg = "continue failed to continue inside try"
826 except:
827 msg = "continue inside try called except block"
828 if msg != "ok":
829 self.fail(msg)
Barry Warsawefc92ee2000-08-21 15:46:50 +0000830
Thomas Wouters89f507f2006-12-13 04:49:30 +0000831 msg = ""
832 while not msg:
833 msg = "finally block not called"
834 try:
835 continue
836 finally:
837 msg = "ok"
838 if msg != "ok":
839 self.fail(msg)
Guido van Rossum3bead091992-01-27 17:00:37 +0000840
Thomas Wouters89f507f2006-12-13 04:49:30 +0000841 def test_break_continue_loop(self):
842 # This test warrants an explanation. It is a test specifically for SF bugs
843 # #463359 and #462937. The bug is that a 'break' statement executed or
844 # exception raised inside a try/except inside a loop, *after* a continue
845 # statement has been executed in that loop, will cause the wrong number of
846 # arguments to be popped off the stack and the instruction pointer reset to
847 # a very small number (usually 0.) Because of this, the following test
848 # *must* written as a function, and the tracking vars *must* be function
849 # arguments with default values. Otherwise, the test will loop and loop.
Guido van Rossum3bead091992-01-27 17:00:37 +0000850
Thomas Wouters89f507f2006-12-13 04:49:30 +0000851 def test_inner(extra_burning_oil = 1, count=0):
852 big_hippo = 2
853 while big_hippo:
854 count += 1
855 try:
856 if extra_burning_oil and big_hippo == 1:
857 extra_burning_oil -= 1
858 break
859 big_hippo -= 1
860 continue
861 except:
862 raise
863 if count > 2 or big_hippo != 1:
864 self.fail("continue then break in try/except in loop broken!")
865 test_inner()
Guido van Rossum3bead091992-01-27 17:00:37 +0000866
Benjamin Petersonc8507bf2011-05-30 10:52:48 -0500867 def test_return(self):
David Cuthbertfd97d1f2018-09-21 18:31:15 -0700868 # 'return' [testlist_star_expr]
Thomas Wouters89f507f2006-12-13 04:49:30 +0000869 def g1(): return
870 def g2(): return 1
David Cuthbertfd97d1f2018-09-21 18:31:15 -0700871 def g3():
872 z = [2, 3]
873 return 1, *z
874
Thomas Wouters89f507f2006-12-13 04:49:30 +0000875 g1()
876 x = g2()
David Cuthbertfd97d1f2018-09-21 18:31:15 -0700877 y = g3()
878 self.assertEqual(y, (1, 2, 3), "unparenthesized star expr return")
Thomas Wouters89f507f2006-12-13 04:49:30 +0000879 check_syntax_error(self, "class foo:return 1")
Guido van Rossum3bead091992-01-27 17:00:37 +0000880
Serhiy Storchaka7cc42c32018-01-02 02:38:35 +0200881 def test_break_in_finally(self):
882 count = 0
883 while count < 2:
884 count += 1
885 try:
886 pass
887 finally:
888 break
889 self.assertEqual(count, 1)
890
891 count = 0
892 while count < 2:
893 count += 1
894 try:
895 continue
896 finally:
897 break
898 self.assertEqual(count, 1)
899
900 count = 0
901 while count < 2:
902 count += 1
903 try:
904 1/0
905 finally:
906 break
907 self.assertEqual(count, 1)
908
909 for count in [0, 1]:
910 self.assertEqual(count, 0)
911 try:
912 pass
913 finally:
914 break
915 self.assertEqual(count, 0)
916
917 for count in [0, 1]:
918 self.assertEqual(count, 0)
919 try:
920 continue
921 finally:
922 break
923 self.assertEqual(count, 0)
924
925 for count in [0, 1]:
926 self.assertEqual(count, 0)
927 try:
928 1/0
929 finally:
930 break
931 self.assertEqual(count, 0)
932
Serhiy Storchakafe2bbb12018-03-18 09:56:52 +0200933 def test_continue_in_finally(self):
934 count = 0
935 while count < 2:
936 count += 1
937 try:
938 pass
939 finally:
940 continue
941 break
942 self.assertEqual(count, 2)
943
944 count = 0
945 while count < 2:
946 count += 1
947 try:
948 break
949 finally:
950 continue
951 self.assertEqual(count, 2)
952
953 count = 0
954 while count < 2:
955 count += 1
956 try:
957 1/0
958 finally:
959 continue
960 break
961 self.assertEqual(count, 2)
962
963 for count in [0, 1]:
964 try:
965 pass
966 finally:
967 continue
968 break
969 self.assertEqual(count, 1)
970
971 for count in [0, 1]:
972 try:
973 break
974 finally:
975 continue
976 self.assertEqual(count, 1)
977
978 for count in [0, 1]:
979 try:
980 1/0
981 finally:
982 continue
983 break
984 self.assertEqual(count, 1)
985
Serhiy Storchaka7cc42c32018-01-02 02:38:35 +0200986 def test_return_in_finally(self):
987 def g1():
988 try:
989 pass
990 finally:
991 return 1
992 self.assertEqual(g1(), 1)
993
994 def g2():
995 try:
996 return 2
997 finally:
998 return 3
999 self.assertEqual(g2(), 3)
1000
1001 def g3():
1002 try:
1003 1/0
1004 finally:
1005 return 4
1006 self.assertEqual(g3(), 4)
1007
Serhiy Storchakaef61c522019-08-24 13:11:52 +03001008 def test_break_in_finally_after_return(self):
1009 # See issue #37830
1010 def g1(x):
1011 for count in [0, 1]:
1012 count2 = 0
1013 while count2 < 20:
1014 count2 += 10
1015 try:
1016 return count + count2
1017 finally:
1018 if x:
1019 break
1020 return 'end', count, count2
1021 self.assertEqual(g1(False), 10)
1022 self.assertEqual(g1(True), ('end', 1, 10))
1023
1024 def g2(x):
1025 for count in [0, 1]:
1026 for count2 in [10, 20]:
1027 try:
1028 return count + count2
1029 finally:
1030 if x:
1031 break
1032 return 'end', count, count2
1033 self.assertEqual(g2(False), 10)
1034 self.assertEqual(g2(True), ('end', 1, 10))
1035
1036 def test_continue_in_finally_after_return(self):
1037 # See issue #37830
1038 def g1(x):
1039 count = 0
1040 while count < 100:
1041 count += 1
1042 try:
1043 return count
1044 finally:
1045 if x:
1046 continue
1047 return 'end', count
1048 self.assertEqual(g1(False), 1)
1049 self.assertEqual(g1(True), ('end', 100))
1050
1051 def g2(x):
1052 for count in [0, 1]:
1053 try:
1054 return count
1055 finally:
1056 if x:
1057 continue
1058 return 'end', count
1059 self.assertEqual(g2(False), 0)
1060 self.assertEqual(g2(True), ('end', 1))
1061
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001062 def test_yield(self):
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001063 # Allowed as standalone statement
1064 def g(): yield 1
1065 def g(): yield from ()
1066 # Allowed as RHS of assignment
1067 def g(): x = yield 1
1068 def g(): x = yield from ()
1069 # Ordinary yield accepts implicit tuples
1070 def g(): yield 1, 1
1071 def g(): x = yield 1, 1
1072 # 'yield from' does not
1073 check_syntax_error(self, "def g(): yield from (), 1")
1074 check_syntax_error(self, "def g(): x = yield from (), 1")
1075 # Requires parentheses as subexpression
1076 def g(): 1, (yield 1)
1077 def g(): 1, (yield from ())
1078 check_syntax_error(self, "def g(): 1, yield 1")
1079 check_syntax_error(self, "def g(): 1, yield from ()")
1080 # Requires parentheses as call argument
1081 def g(): f((yield 1))
1082 def g(): f((yield 1), 1)
1083 def g(): f((yield from ()))
1084 def g(): f((yield from ()), 1)
David Cuthbertfd97d1f2018-09-21 18:31:15 -07001085 # Do not require parenthesis for tuple unpacking
1086 def g(): rest = 4, 5, 6; yield 1, 2, 3, *rest
Serhiy Storchaka4642d5f2018-10-05 21:09:56 +03001087 self.assertEqual(list(g()), [(1, 2, 3, 4, 5, 6)])
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001088 check_syntax_error(self, "def g(): f(yield 1)")
1089 check_syntax_error(self, "def g(): f(yield 1, 1)")
1090 check_syntax_error(self, "def g(): f(yield from ())")
1091 check_syntax_error(self, "def g(): f(yield from (), 1)")
1092 # Not allowed at top level
1093 check_syntax_error(self, "yield")
1094 check_syntax_error(self, "yield from")
1095 # Not allowed at class scope
Thomas Wouters89f507f2006-12-13 04:49:30 +00001096 check_syntax_error(self, "class foo:yield 1")
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001097 check_syntax_error(self, "class foo:yield from ()")
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001098 # Check annotation refleak on SyntaxError
1099 check_syntax_error(self, "def g(a:(yield)): pass")
Guido van Rossum3bead091992-01-27 17:00:37 +00001100
Serhiy Storchaka73a7e9b2017-12-01 06:54:17 +02001101 def test_yield_in_comprehensions(self):
1102 # Check yield in comprehensions
1103 def g(): [x for x in [(yield 1)]]
1104 def g(): [x for x in [(yield from ())]]
1105
Serhiy Storchaka07ca9af2018-02-04 10:53:48 +02001106 check = self.check_syntax_error
Serhiy Storchaka73a7e9b2017-12-01 06:54:17 +02001107 check("def g(): [(yield x) for x in ()]",
1108 "'yield' inside list comprehension")
1109 check("def g(): [x for x in () if not (yield x)]",
1110 "'yield' inside list comprehension")
1111 check("def g(): [y for x in () for y in [(yield x)]]",
1112 "'yield' inside list comprehension")
1113 check("def g(): {(yield x) for x in ()}",
1114 "'yield' inside set comprehension")
1115 check("def g(): {(yield x): x for x in ()}",
1116 "'yield' inside dict comprehension")
1117 check("def g(): {x: (yield x) for x in ()}",
1118 "'yield' inside dict comprehension")
1119 check("def g(): ((yield x) for x in ())",
1120 "'yield' inside generator expression")
1121 check("def g(): [(yield from x) for x in ()]",
1122 "'yield' inside list comprehension")
1123 check("class C: [(yield x) for x in ()]",
1124 "'yield' inside list comprehension")
1125 check("[(yield x) for x in ()]",
1126 "'yield' inside list comprehension")
1127
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001128 def test_raise(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001129 # 'raise' test [',' test]
Collin Winter828f04a2007-08-31 00:04:24 +00001130 try: raise RuntimeError('just testing')
Thomas Wouters89f507f2006-12-13 04:49:30 +00001131 except RuntimeError: pass
1132 try: raise KeyboardInterrupt
1133 except KeyboardInterrupt: pass
Jeremy Hylton3faa52e2001-02-01 22:48:12 +00001134
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001135 def test_import(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001136 # 'import' dotted_as_names
1137 import sys
1138 import time, sys
1139 # 'from' dotted_name 'import' ('*' | '(' import_as_names ')' | import_as_names)
1140 from time import time
1141 from time import (time)
1142 # not testable inside a function, but already done at top of the module
1143 # from sys import *
1144 from sys import path, argv
1145 from sys import (path, argv)
1146 from sys import (path, argv,)
Tim Peters10fb3862001-02-09 20:17:14 +00001147
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001148 def test_global(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001149 # 'global' NAME (',' NAME)*
1150 global a
1151 global a, b
1152 global one, two, three, four, five, six, seven, eight, nine, ten
Thomas Wouters80d373c2001-09-26 12:43:39 +00001153
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001154 def test_nonlocal(self):
Benjamin Petersona933e522008-10-24 22:16:39 +00001155 # 'nonlocal' NAME (',' NAME)*
1156 x = 0
1157 y = 0
1158 def f():
1159 nonlocal x
1160 nonlocal x, y
1161
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001162 def test_assert(self):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +00001163 # assertTruestmt: 'assert' test [',' test]
Thomas Wouters89f507f2006-12-13 04:49:30 +00001164 assert 1
1165 assert 1, 1
1166 assert lambda x:x
1167 assert 1, lambda x:x+1
Ezio Melotti6cc5bf72011-12-02 18:22:52 +02001168
1169 try:
1170 assert True
1171 except AssertionError as e:
1172 self.fail("'assert True' should not have raised an AssertionError")
1173
1174 try:
1175 assert True, 'this should always pass'
1176 except AssertionError as e:
1177 self.fail("'assert True, msg' should not have "
1178 "raised an AssertionError")
1179
1180 # these tests fail if python is run with -O, so check __debug__
1181 @unittest.skipUnless(__debug__, "Won't work if __debug__ is False")
1182 def testAssert2(self):
Thomas Wouters80d373c2001-09-26 12:43:39 +00001183 try:
Thomas Wouters89f507f2006-12-13 04:49:30 +00001184 assert 0, "msg"
Guido van Rossumb940e112007-01-10 16:19:56 +00001185 except AssertionError as e:
Florent Xicluna9b86b9a2010-03-19 19:00:44 +00001186 self.assertEqual(e.args[0], "msg")
Thomas Wouters89f507f2006-12-13 04:49:30 +00001187 else:
Ezio Melotti6cc5bf72011-12-02 18:22:52 +02001188 self.fail("AssertionError not raised by assert 0")
1189
1190 try:
1191 assert False
1192 except AssertionError as e:
1193 self.assertEqual(len(e.args), 0)
1194 else:
1195 self.fail("AssertionError not raised by 'assert False'")
1196
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +02001197 self.check_syntax_warning('assert(x, "msg")',
1198 'assertion is always true')
Serhiy Storchakad31e7732018-10-21 10:09:39 +03001199 with warnings.catch_warnings():
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +02001200 warnings.simplefilter('error', SyntaxWarning)
Serhiy Storchakad31e7732018-10-21 10:09:39 +03001201 compile('assert x, "msg"', '<testcase>', 'exec')
1202
Thomas Wouters80d373c2001-09-26 12:43:39 +00001203
Thomas Wouters89f507f2006-12-13 04:49:30 +00001204 ### compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef
1205 # Tested below
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001206
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001207 def test_if(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001208 # 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
1209 if 1: pass
1210 if 1: pass
1211 else: pass
1212 if 0: pass
1213 elif 0: pass
1214 if 0: pass
1215 elif 0: pass
1216 elif 0: pass
1217 elif 0: pass
1218 else: pass
Guido van Rossum3bead091992-01-27 17:00:37 +00001219
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001220 def test_while(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001221 # 'while' test ':' suite ['else' ':' suite]
1222 while 0: pass
1223 while 0: pass
1224 else: pass
Guido van Rossum3bead091992-01-27 17:00:37 +00001225
Christian Heimes969fe572008-01-25 11:23:10 +00001226 # Issue1920: "while 0" is optimized away,
1227 # ensure that the "else" clause is still present.
1228 x = 0
1229 while 0:
1230 x = 1
1231 else:
1232 x = 2
Florent Xicluna9b86b9a2010-03-19 19:00:44 +00001233 self.assertEqual(x, 2)
Christian Heimes969fe572008-01-25 11:23:10 +00001234
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001235 def test_for(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001236 # 'for' exprlist 'in' exprlist ':' suite ['else' ':' suite]
1237 for i in 1, 2, 3: pass
1238 for i, j, k in (): pass
1239 else: pass
1240 class Squares:
1241 def __init__(self, max):
1242 self.max = max
1243 self.sofar = []
1244 def __len__(self): return len(self.sofar)
1245 def __getitem__(self, i):
1246 if not 0 <= i < self.max: raise IndexError
1247 n = len(self.sofar)
1248 while n <= i:
1249 self.sofar.append(n*n)
1250 n = n+1
1251 return self.sofar[i]
1252 n = 0
1253 for x in Squares(10): n = n+x
1254 if n != 285:
1255 self.fail('for over growing sequence')
Guido van Rossum3bead091992-01-27 17:00:37 +00001256
Thomas Wouters89f507f2006-12-13 04:49:30 +00001257 result = []
1258 for x, in [(1,), (2,), (3,)]:
1259 result.append(x)
1260 self.assertEqual(result, [1, 2, 3])
Guido van Rossum3bead091992-01-27 17:00:37 +00001261
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001262 def test_try(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001263 ### try_stmt: 'try' ':' suite (except_clause ':' suite)+ ['else' ':' suite]
1264 ### | 'try' ':' suite 'finally' ':' suite
Guido van Rossumb940e112007-01-10 16:19:56 +00001265 ### except_clause: 'except' [expr ['as' expr]]
Thomas Wouters89f507f2006-12-13 04:49:30 +00001266 try:
1267 1/0
1268 except ZeroDivisionError:
1269 pass
1270 else:
1271 pass
1272 try: 1/0
1273 except EOFError: pass
Guido van Rossumb940e112007-01-10 16:19:56 +00001274 except TypeError as msg: pass
Thomas Wouters89f507f2006-12-13 04:49:30 +00001275 except: pass
1276 else: pass
1277 try: 1/0
1278 except (EOFError, TypeError, ZeroDivisionError): pass
1279 try: 1/0
Guido van Rossumb940e112007-01-10 16:19:56 +00001280 except (EOFError, TypeError, ZeroDivisionError) as msg: pass
Thomas Wouters89f507f2006-12-13 04:49:30 +00001281 try: pass
1282 finally: pass
Jeremy Hyltonf828e2d2001-02-19 15:54:52 +00001283
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001284 def test_suite(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001285 # simple_stmt | NEWLINE INDENT NEWLINE* (stmt NEWLINE*)+ DEDENT
1286 if 1: pass
1287 if 1:
1288 pass
1289 if 1:
1290 #
1291 #
1292 #
1293 pass
1294 pass
1295 #
1296 pass
1297 #
Guido van Rossum3bead091992-01-27 17:00:37 +00001298
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001299 def test_test(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001300 ### and_test ('or' and_test)*
1301 ### and_test: not_test ('and' not_test)*
1302 ### not_test: 'not' not_test | comparison
1303 if not 1: pass
1304 if 1 and 1: pass
1305 if 1 or 1: pass
1306 if not not not 1: pass
1307 if not 1 and 1 and 1: pass
1308 if 1 and 1 or 1 and 1 and 1 or not 1 and 1: pass
Guido van Rossum3bead091992-01-27 17:00:37 +00001309
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001310 def test_comparison(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001311 ### comparison: expr (comp_op expr)*
1312 ### comp_op: '<'|'>'|'=='|'>='|'<='|'!='|'in'|'not' 'in'|'is'|'is' 'not'
1313 if 1: pass
1314 x = (1 == 1)
1315 if 1 == 1: pass
1316 if 1 != 1: pass
1317 if 1 < 1: pass
1318 if 1 > 1: pass
1319 if 1 <= 1: pass
1320 if 1 >= 1: pass
Serhiy Storchaka3bcbedc2019-01-18 07:47:48 +02001321 if x is x: pass
1322 if x is not x: pass
Thomas Wouters89f507f2006-12-13 04:49:30 +00001323 if 1 in (): pass
1324 if 1 not in (): pass
Serhiy Storchaka3bcbedc2019-01-18 07:47:48 +02001325 if 1 < 1 > 1 == 1 >= 1 <= 1 != 1 in 1 not in x is x is not x: pass
1326
1327 def test_comparison_is_literal(self):
1328 def check(test, msg='"is" with a literal'):
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +02001329 self.check_syntax_warning(test, msg)
Serhiy Storchaka3bcbedc2019-01-18 07:47:48 +02001330
1331 check('x is 1')
1332 check('x is "thing"')
1333 check('1 is x')
1334 check('x is y is 1')
1335 check('x is not 1', '"is not" with a literal')
1336
1337 with warnings.catch_warnings():
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +02001338 warnings.simplefilter('error', SyntaxWarning)
Serhiy Storchaka3bcbedc2019-01-18 07:47:48 +02001339 compile('x is None', '<testcase>', 'exec')
1340 compile('x is False', '<testcase>', 'exec')
1341 compile('x is True', '<testcase>', 'exec')
1342 compile('x is ...', '<testcase>', 'exec')
Guido van Rossum3bead091992-01-27 17:00:37 +00001343
Serhiy Storchaka62e44812019-02-16 08:12:19 +02001344 def test_warn_missed_comma(self):
1345 def check(test):
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +02001346 self.check_syntax_warning(test, msg)
Serhiy Storchaka62e44812019-02-16 08:12:19 +02001347
1348 msg=r'is not callable; perhaps you missed a comma\?'
1349 check('[(1, 2) (3, 4)]')
1350 check('[(x, y) (3, 4)]')
1351 check('[[1, 2] (3, 4)]')
1352 check('[{1, 2} (3, 4)]')
1353 check('[{1: 2} (3, 4)]')
1354 check('[[i for i in range(5)] (3, 4)]')
1355 check('[{i for i in range(5)} (3, 4)]')
1356 check('[(i for i in range(5)) (3, 4)]')
1357 check('[{i: i for i in range(5)} (3, 4)]')
1358 check('[f"{x}" (3, 4)]')
1359 check('[f"x={x}" (3, 4)]')
1360 check('["abc" (3, 4)]')
1361 check('[b"abc" (3, 4)]')
1362 check('[123 (3, 4)]')
1363 check('[12.3 (3, 4)]')
1364 check('[12.3j (3, 4)]')
1365 check('[None (3, 4)]')
1366 check('[True (3, 4)]')
1367 check('[... (3, 4)]')
1368
1369 msg=r'is not subscriptable; perhaps you missed a comma\?'
1370 check('[{1, 2} [i, j]]')
1371 check('[{i for i in range(5)} [i, j]]')
1372 check('[(i for i in range(5)) [i, j]]')
1373 check('[(lambda x, y: x) [i, j]]')
1374 check('[123 [i, j]]')
1375 check('[12.3 [i, j]]')
1376 check('[12.3j [i, j]]')
1377 check('[None [i, j]]')
1378 check('[True [i, j]]')
1379 check('[... [i, j]]')
1380
1381 msg=r'indices must be integers or slices, not tuple; perhaps you missed a comma\?'
1382 check('[(1, 2) [i, j]]')
1383 check('[(x, y) [i, j]]')
1384 check('[[1, 2] [i, j]]')
1385 check('[[i for i in range(5)] [i, j]]')
1386 check('[f"{x}" [i, j]]')
1387 check('[f"x={x}" [i, j]]')
1388 check('["abc" [i, j]]')
1389 check('[b"abc" [i, j]]')
1390
1391 msg=r'indices must be integers or slices, not tuple;'
1392 check('[[1, 2] [3, 4]]')
1393 msg=r'indices must be integers or slices, not list;'
1394 check('[[1, 2] [[3, 4]]]')
1395 check('[[1, 2] [[i for i in range(5)]]]')
1396 msg=r'indices must be integers or slices, not set;'
1397 check('[[1, 2] [{3, 4}]]')
1398 check('[[1, 2] [{i for i in range(5)}]]')
1399 msg=r'indices must be integers or slices, not dict;'
1400 check('[[1, 2] [{3: 4}]]')
1401 check('[[1, 2] [{i: i for i in range(5)}]]')
1402 msg=r'indices must be integers or slices, not generator;'
1403 check('[[1, 2] [(i for i in range(5))]]')
1404 msg=r'indices must be integers or slices, not function;'
1405 check('[[1, 2] [(lambda x, y: x)]]')
1406 msg=r'indices must be integers or slices, not str;'
1407 check('[[1, 2] [f"{x}"]]')
1408 check('[[1, 2] [f"x={x}"]]')
1409 check('[[1, 2] ["abc"]]')
1410 msg=r'indices must be integers or slices, not'
1411 check('[[1, 2] [b"abc"]]')
1412 check('[[1, 2] [12.3]]')
1413 check('[[1, 2] [12.3j]]')
1414 check('[[1, 2] [None]]')
1415 check('[[1, 2] [...]]')
1416
1417 with warnings.catch_warnings():
Serhiy Storchakae7a4bb52019-02-19 08:30:15 +02001418 warnings.simplefilter('error', SyntaxWarning)
Serhiy Storchaka62e44812019-02-16 08:12:19 +02001419 compile('[(lambda x, y: x) (3, 4)]', '<testcase>', 'exec')
1420 compile('[[1, 2] [i]]', '<testcase>', 'exec')
1421 compile('[[1, 2] [0]]', '<testcase>', 'exec')
1422 compile('[[1, 2] [True]]', '<testcase>', 'exec')
1423 compile('[[1, 2] [1:2]]', '<testcase>', 'exec')
1424 compile('[{(1, 2): 3} [i, j]]', '<testcase>', 'exec')
1425
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001426 def test_binary_mask_ops(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001427 x = 1 & 1
1428 x = 1 ^ 1
1429 x = 1 | 1
Guido van Rossum3bead091992-01-27 17:00:37 +00001430
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001431 def test_shift_ops(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001432 x = 1 << 1
1433 x = 1 >> 1
1434 x = 1 << 1 >> 1
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001435
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001436 def test_additive_ops(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001437 x = 1
1438 x = 1 + 1
1439 x = 1 - 1 - 1
1440 x = 1 - 1 + 1 - 1 + 1
Guido van Rossum3bead091992-01-27 17:00:37 +00001441
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001442 def test_multiplicative_ops(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001443 x = 1 * 1
1444 x = 1 / 1
1445 x = 1 % 1
1446 x = 1 / 1 * 1 % 1
Guido van Rossum3bead091992-01-27 17:00:37 +00001447
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001448 def test_unary_ops(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001449 x = +1
1450 x = -1
1451 x = ~1
1452 x = ~1 ^ 1 & 1 | 1 & 1 ^ -1
1453 x = -1*1/1 + 1*1 - ---1*1
Guido van Rossum3bead091992-01-27 17:00:37 +00001454
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001455 def test_selectors(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001456 ### trailer: '(' [testlist] ')' | '[' subscript ']' | '.' NAME
1457 ### subscript: expr | [expr] ':' [expr]
Guido van Rossum3bead091992-01-27 17:00:37 +00001458
Thomas Wouters89f507f2006-12-13 04:49:30 +00001459 import sys, time
1460 c = sys.path[0]
1461 x = time.time()
1462 x = sys.modules['time'].time()
1463 a = '01234'
1464 c = a[0]
1465 c = a[-1]
1466 s = a[0:5]
1467 s = a[:5]
1468 s = a[0:]
1469 s = a[:]
1470 s = a[-5:]
1471 s = a[:-1]
1472 s = a[-4:-3]
1473 # A rough test of SF bug 1333982. http://python.org/sf/1333982
1474 # The testing here is fairly incomplete.
1475 # Test cases should include: commas with 1 and 2 colons
1476 d = {}
1477 d[1] = 1
1478 d[1,] = 2
1479 d[1,2] = 3
1480 d[1,2,3] = 4
1481 L = list(d)
Serhiy Storchaka0cc99c82018-01-04 10:36:35 +02001482 L.sort(key=lambda x: (type(x).__name__, x))
Florent Xicluna9b86b9a2010-03-19 19:00:44 +00001483 self.assertEqual(str(L), '[1, (1,), (1, 2), (1, 2, 3)]')
Guido van Rossum3bead091992-01-27 17:00:37 +00001484
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001485 def test_atoms(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001486 ### atom: '(' [testlist] ')' | '[' [testlist] ']' | '{' [dictsetmaker] '}' | NAME | NUMBER | STRING
1487 ### dictsetmaker: (test ':' test (',' test ':' test)* [',']) | (test (',' test)* [','])
Guido van Rossum3bead091992-01-27 17:00:37 +00001488
Thomas Wouters89f507f2006-12-13 04:49:30 +00001489 x = (1)
1490 x = (1 or 2 or 3)
1491 x = (1 or 2 or 3, 2, 3)
Guido van Rossum3bead091992-01-27 17:00:37 +00001492
Thomas Wouters89f507f2006-12-13 04:49:30 +00001493 x = []
1494 x = [1]
1495 x = [1 or 2 or 3]
1496 x = [1 or 2 or 3, 2, 3]
1497 x = []
Guido van Rossum3bead091992-01-27 17:00:37 +00001498
Thomas Wouters89f507f2006-12-13 04:49:30 +00001499 x = {}
1500 x = {'one': 1}
1501 x = {'one': 1,}
1502 x = {'one' or 'two': 1 or 2}
1503 x = {'one': 1, 'two': 2}
1504 x = {'one': 1, 'two': 2,}
1505 x = {'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6}
Guido van Rossum3bead091992-01-27 17:00:37 +00001506
Thomas Wouters89f507f2006-12-13 04:49:30 +00001507 x = {'one'}
1508 x = {'one', 1,}
1509 x = {'one', 'two', 'three'}
1510 x = {2, 3, 4,}
1511
1512 x = x
1513 x = 'x'
1514 x = 123
1515
1516 ### exprlist: expr (',' expr)* [',']
1517 ### testlist: test (',' test)* [',']
1518 # These have been exercised enough above
1519
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001520 def test_classdef(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001521 # 'class' NAME ['(' [testlist] ')'] ':' suite
1522 class B: pass
1523 class B2(): pass
1524 class C1(B): pass
1525 class C2(B): pass
1526 class D(C1, C2, B): pass
1527 class C:
1528 def meth1(self): pass
1529 def meth2(self, arg): pass
1530 def meth3(self, a1, a2): pass
1531
Brandt Bucherbe501ca2020-03-03 14:25:44 -08001532 # decorator: '@' namedexpr_test NEWLINE
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001533 # decorators: decorator+
1534 # decorated: decorators (classdef | funcdef)
1535 def class_decorator(x): return x
1536 @class_decorator
1537 class G: pass
1538
Brandt Bucherbe501ca2020-03-03 14:25:44 -08001539 # Test expressions as decorators (PEP 614):
1540 @False or class_decorator
1541 class H: pass
1542 @d := class_decorator
1543 class I: pass
1544 @lambda c: class_decorator(c)
1545 class J: pass
1546 @[..., class_decorator, ...][1]
1547 class K: pass
1548 @class_decorator(class_decorator)(class_decorator)
1549 class L: pass
1550 @[class_decorator][0].__call__.__call__
1551 class M: pass
1552
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001553 def test_dictcomps(self):
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001554 # dictorsetmaker: ( (test ':' test (comp_for |
1555 # (',' test ':' test)* [','])) |
1556 # (test (comp_for | (',' test)* [','])) )
1557 nums = [1, 2, 3]
1558 self.assertEqual({i:i+1 for i in nums}, {1: 2, 2: 3, 3: 4})
1559
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001560 def test_listcomps(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001561 # list comprehension tests
1562 nums = [1, 2, 3, 4, 5]
1563 strs = ["Apple", "Banana", "Coconut"]
1564 spcs = [" Apple", " Banana ", "Coco nut "]
1565
1566 self.assertEqual([s.strip() for s in spcs], ['Apple', 'Banana', 'Coco nut'])
1567 self.assertEqual([3 * x for x in nums], [3, 6, 9, 12, 15])
1568 self.assertEqual([x for x in nums if x > 2], [3, 4, 5])
1569 self.assertEqual([(i, s) for i in nums for s in strs],
1570 [(1, 'Apple'), (1, 'Banana'), (1, 'Coconut'),
1571 (2, 'Apple'), (2, 'Banana'), (2, 'Coconut'),
1572 (3, 'Apple'), (3, 'Banana'), (3, 'Coconut'),
1573 (4, 'Apple'), (4, 'Banana'), (4, 'Coconut'),
1574 (5, 'Apple'), (5, 'Banana'), (5, 'Coconut')])
1575 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]],
1576 [(1, 'Banana'), (1, 'Coconut'), (2, 'Banana'), (2, 'Coconut'),
1577 (3, 'Banana'), (3, 'Coconut'), (4, 'Banana'), (4, 'Coconut'),
1578 (5, 'Banana'), (5, 'Coconut')])
1579 self.assertEqual([(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)],
1580 [[1], [1, 1], [1, 2, 4], [1, 3, 9, 27], [1, 4, 16, 64, 256]])
1581
1582 def test_in_func(l):
1583 return [0 < x < 3 for x in l if x > 2]
1584
1585 self.assertEqual(test_in_func(nums), [False, False, False])
1586
1587 def test_nested_front():
1588 self.assertEqual([[y for y in [x, x + 1]] for x in [1,3,5]],
1589 [[1, 2], [3, 4], [5, 6]])
1590
1591 test_nested_front()
1592
1593 check_syntax_error(self, "[i, s for i in nums for s in strs]")
1594 check_syntax_error(self, "[x if y]")
1595
1596 suppliers = [
1597 (1, "Boeing"),
1598 (2, "Ford"),
1599 (3, "Macdonalds")
1600 ]
1601
1602 parts = [
1603 (10, "Airliner"),
1604 (20, "Engine"),
1605 (30, "Cheeseburger")
1606 ]
1607
1608 suppart = [
1609 (1, 10), (1, 20), (2, 20), (3, 30)
1610 ]
1611
1612 x = [
1613 (sname, pname)
1614 for (sno, sname) in suppliers
1615 for (pno, pname) in parts
1616 for (sp_sno, sp_pno) in suppart
1617 if sno == sp_sno and pno == sp_pno
1618 ]
1619
1620 self.assertEqual(x, [('Boeing', 'Airliner'), ('Boeing', 'Engine'), ('Ford', 'Engine'),
1621 ('Macdonalds', 'Cheeseburger')])
1622
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001623 def test_genexps(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001624 # generator expression tests
1625 g = ([x for x in range(10)] for x in range(1))
Georg Brandla18af4e2007-04-21 15:47:16 +00001626 self.assertEqual(next(g), [x for x in range(10)])
Thomas Wouters89f507f2006-12-13 04:49:30 +00001627 try:
Georg Brandla18af4e2007-04-21 15:47:16 +00001628 next(g)
Thomas Wouters89f507f2006-12-13 04:49:30 +00001629 self.fail('should produce StopIteration exception')
1630 except StopIteration:
1631 pass
1632
1633 a = 1
1634 try:
1635 g = (a for d in a)
Georg Brandla18af4e2007-04-21 15:47:16 +00001636 next(g)
Thomas Wouters89f507f2006-12-13 04:49:30 +00001637 self.fail('should produce TypeError')
1638 except TypeError:
1639 pass
1640
1641 self.assertEqual(list((x, y) for x in 'abcd' for y in 'abcd'), [(x, y) for x in 'abcd' for y in 'abcd'])
1642 self.assertEqual(list((x, y) for x in 'ab' for y in 'xy'), [(x, y) for x in 'ab' for y in 'xy'])
1643
1644 a = [x for x in range(10)]
1645 b = (x for x in (y for y in a))
1646 self.assertEqual(sum(b), sum([x for x in range(10)]))
1647
1648 self.assertEqual(sum(x**2 for x in range(10)), sum([x**2 for x in range(10)]))
1649 self.assertEqual(sum(x*x for x in range(10) if x%2), sum([x*x for x in range(10) if x%2]))
1650 self.assertEqual(sum(x for x in (y for y in range(10))), sum([x for x in range(10)]))
1651 self.assertEqual(sum(x for x in (y for y in (z for z in range(10)))), sum([x for x in range(10)]))
1652 self.assertEqual(sum(x for x in [y for y in (z for z in range(10))]), sum([x for x in range(10)]))
1653 self.assertEqual(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)]))
1654 self.assertEqual(sum(x for x in (y for y in (z for z in range(10) if True) if False) if True), 0)
1655 check_syntax_error(self, "foo(x for x in range(10), 100)")
1656 check_syntax_error(self, "foo(100, x for x in range(10))")
1657
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001658 def test_comprehension_specials(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001659 # test for outmost iterable precomputation
1660 x = 10; g = (i for i in range(x)); x = 5
1661 self.assertEqual(len(list(g)), 10)
1662
1663 # This should hold, since we're only precomputing outmost iterable.
1664 x = 10; t = False; g = ((i,j) for i in range(x) if t for j in range(x))
1665 x = 5; t = True;
1666 self.assertEqual([(i,j) for i in range(10) for j in range(5)], list(g))
1667
1668 # Grammar allows multiple adjacent 'if's in listcomps and genexps,
1669 # even though it's silly. Make sure it works (ifelse broke this.)
1670 self.assertEqual([ x for x in range(10) if x % 2 if x % 3 ], [1, 5, 7])
1671 self.assertEqual(list(x for x in range(10) if x % 2 if x % 3), [1, 5, 7])
1672
1673 # verify unpacking single element tuples in listcomp/genexp.
1674 self.assertEqual([x for x, in [(4,), (5,), (6,)]], [4, 5, 6])
1675 self.assertEqual(list(x for x, in [(7,), (8,), (9,)]), [7, 8, 9])
1676
Benjamin Petersonf17ab892009-05-29 21:55:57 +00001677 def test_with_statement(self):
1678 class manager(object):
1679 def __enter__(self):
1680 return (1, 2)
1681 def __exit__(self, *args):
1682 pass
1683
1684 with manager():
1685 pass
1686 with manager() as x:
1687 pass
1688 with manager() as (x, y):
1689 pass
1690 with manager(), manager():
1691 pass
1692 with manager() as x, manager() as y:
1693 pass
1694 with manager() as x, manager():
1695 pass
1696
Benjamin Petersonc8507bf2011-05-30 10:52:48 -05001697 def test_if_else_expr(self):
Thomas Wouters89f507f2006-12-13 04:49:30 +00001698 # Test ifelse expressions in various cases
1699 def _checkeval(msg, ret):
1700 "helper to check that evaluation of expressions is done correctly"
Victor Stinnerc6ec54d2016-04-12 18:33:41 +02001701 print(msg)
Thomas Wouters89f507f2006-12-13 04:49:30 +00001702 return ret
1703
Nick Coghlan650f0d02007-04-15 12:05:43 +00001704 # the next line is not allowed anymore
1705 #self.assertEqual([ x() for x in lambda: True, lambda: False if x() ], [True])
Thomas Wouters89f507f2006-12-13 04:49:30 +00001706 self.assertEqual([ x() for x in (lambda: True, lambda: False) if x() ], [True])
1707 self.assertEqual([ x(False) for x in (lambda x: False if x else True, lambda x: True if x else False) if x(False) ], [True])
1708 self.assertEqual((5 if 1 else _checkeval("check 1", 0)), 5)
1709 self.assertEqual((_checkeval("check 2", 0) if 0 else 5), 5)
1710 self.assertEqual((5 and 6 if 0 else 1), 1)
1711 self.assertEqual(((5 and 6) if 0 else 1), 1)
1712 self.assertEqual((5 and (6 if 1 else 1)), 6)
1713 self.assertEqual((0 or _checkeval("check 3", 2) if 0 else 3), 3)
1714 self.assertEqual((1 or _checkeval("check 4", 2) if 1 else _checkeval("check 5", 3)), 1)
1715 self.assertEqual((0 or 5 if 1 else _checkeval("check 6", 3)), 5)
1716 self.assertEqual((not 5 if 1 else 1), False)
1717 self.assertEqual((not 5 if 0 else 1), 1)
1718 self.assertEqual((6 + 1 if 1 else 2), 7)
1719 self.assertEqual((6 - 1 if 1 else 2), 5)
1720 self.assertEqual((6 * 2 if 1 else 4), 12)
1721 self.assertEqual((6 / 2 if 1 else 3), 3)
1722 self.assertEqual((6 < 4 if 0 else 2), 2)
Jeremy Hylton7b03bad2006-02-28 17:46:23 +00001723
Benjamin Petersonf6489f92009-11-25 17:46:26 +00001724 def test_paren_evaluation(self):
1725 self.assertEqual(16 // (4 // 2), 8)
1726 self.assertEqual((16 // 4) // 2, 2)
1727 self.assertEqual(16 // 4 // 2, 2)
Serhiy Storchaka3bcbedc2019-01-18 07:47:48 +02001728 x = 2
1729 y = 3
1730 self.assertTrue(False is (x is y))
1731 self.assertFalse((False is x) is y)
1732 self.assertFalse(False is x is y)
Benjamin Petersonf6489f92009-11-25 17:46:26 +00001733
Benjamin Petersond51374e2014-04-09 23:55:56 -04001734 def test_matrix_mul(self):
1735 # This is not intended to be a comprehensive test, rather just to be few
1736 # samples of the @ operator in test_grammar.py.
1737 class M:
1738 def __matmul__(self, o):
1739 return 4
1740 def __imatmul__(self, o):
1741 self.other = o
1742 return self
1743 m = M()
1744 self.assertEqual(m @ m, 4)
1745 m @= 42
1746 self.assertEqual(m.other, 42)
1747
Yury Selivanov75445082015-05-11 22:57:16 -04001748 def test_async_await(self):
Yury Selivanov75445082015-05-11 22:57:16 -04001749 async def test():
1750 def sum():
Yury Selivanov8fb307c2015-07-22 13:33:45 +03001751 pass
Yury Selivanov75445082015-05-11 22:57:16 -04001752 if 1:
1753 await someobj()
1754
1755 self.assertEqual(test.__name__, 'test')
1756 self.assertTrue(bool(test.__code__.co_flags & inspect.CO_COROUTINE))
1757
1758 def decorator(func):
1759 setattr(func, '_marked', True)
1760 return func
1761
1762 @decorator
1763 async def test2():
1764 return 22
1765 self.assertTrue(test2._marked)
1766 self.assertEqual(test2.__name__, 'test2')
1767 self.assertTrue(bool(test2.__code__.co_flags & inspect.CO_COROUTINE))
1768
1769 def test_async_for(self):
1770 class Done(Exception): pass
1771
1772 class AIter:
Yury Selivanova6f6edb2016-06-09 15:08:31 -04001773 def __aiter__(self):
Yury Selivanov75445082015-05-11 22:57:16 -04001774 return self
1775 async def __anext__(self):
1776 raise StopAsyncIteration
1777
1778 async def foo():
1779 async for i in AIter():
1780 pass
1781 async for i, j in AIter():
1782 pass
1783 async for i in AIter():
1784 pass
1785 else:
1786 pass
1787 raise Done
1788
1789 with self.assertRaises(Done):
1790 foo().send(None)
1791
1792 def test_async_with(self):
1793 class Done(Exception): pass
1794
1795 class manager:
1796 async def __aenter__(self):
1797 return (1, 2)
1798 async def __aexit__(self, *exc):
1799 return False
1800
1801 async def foo():
1802 async with manager():
1803 pass
1804 async with manager() as x:
1805 pass
1806 async with manager() as (x, y):
1807 pass
1808 async with manager(), manager():
1809 pass
1810 async with manager() as x, manager() as y:
1811 pass
1812 async with manager() as x, manager():
1813 pass
1814 raise Done
1815
1816 with self.assertRaises(Done):
1817 foo().send(None)
1818
Guido van Rossum3bead091992-01-27 17:00:37 +00001819
Thomas Wouters89f507f2006-12-13 04:49:30 +00001820if __name__ == '__main__':
Zachary Ware38c707e2015-04-13 15:00:43 -05001821 unittest.main()