diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-04-13 14:36:51 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-04-13 14:36:51 (GMT) |
commit | a4553c04fdea55b09beef6e364ccdaa9350f8ea4 (patch) | |
tree | 21afbb2a5ff1cb5d0c5859e36b0936c82f7ab3d3 /Lib | |
parent | a3e56a6cebecf4073458f7ecabcbf42c4bc6f3b3 (diff) | |
download | cpython-a4553c04fdea55b09beef6e364ccdaa9350f8ea4.zip cpython-a4553c04fdea55b09beef6e364ccdaa9350f8ea4.tar.gz cpython-a4553c04fdea55b09beef6e364ccdaa9350f8ea4.tar.bz2 |
There's no need for the tokenize tests to include a SyntaxError.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/tokenize_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/tokenize_tests.py b/Lib/test/tokenize_tests.py index 4974671..e990a36 100644 --- a/Lib/test/tokenize_tests.py +++ b/Lib/test/tokenize_tests.py @@ -144,7 +144,7 @@ if 0: # Operators def d22(a, b, c=1, d=2): pass -def d01v(a=1, *rest, **rest): pass +def d01v(a=1, *restt, **restd): pass (x, y) <> ({'a':1}, {'b':2}) |