From: Jeremy Hylton Date: Fri, 13 Apr 2001 14:36:51 +0000 (+0000) Subject: There's no need for the tokenize tests to include a SyntaxError. X-Git-Tag: v2.1c1~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4553c04fdea55b09beef6e364ccdaa9350f8ea4;p=thirdparty%2FPython%2Fcpython.git There's no need for the tokenize tests to include a SyntaxError. --- diff --git a/Lib/test/tokenize_tests.py b/Lib/test/tokenize_tests.py index 4974671f282a..e990a36069bd 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})