summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-04-13 14:36:51 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-04-13 14:36:51 (GMT)
commita4553c04fdea55b09beef6e364ccdaa9350f8ea4 (patch)
tree21afbb2a5ff1cb5d0c5859e36b0936c82f7ab3d3
parenta3e56a6cebecf4073458f7ecabcbf42c4bc6f3b3 (diff)
downloadcpython-a4553c04fdea55b09beef6e364ccdaa9350f8ea4.zip
cpython-a4553c04fdea55b09beef6e364ccdaa9350f8ea4.tar.gz
cpython-a4553c04fdea55b09beef6e364ccdaa9350f8ea4.tar.bz2
There's no need for the tokenize tests to include a SyntaxError.
-rw-r--r--Lib/test/tokenize_tests.py2
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})