summaryrefslogtreecommitdiff
path: root/Lib/test/test_genexps.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-06-08 23:44:13 +0000
committerBenjamin Peterson <benjamin@python.org>2009-06-08 23:44:13 +0000
commita5a5728cf01446f70c3bd09cc85453fdec71d461 (patch)
tree8e73f76c79f735981af4c33caf32b1b8fad704d6 /Lib/test/test_genexps.py
parent8ea4ded9a69ace6f8520615f770308fcdb485bbb (diff)
downloadcpython-git-a5a5728cf01446f70c3bd09cc85453fdec71d461.tar.gz
remove error checks already done in set_context()
Diffstat (limited to 'Lib/test/test_genexps.py')
-rw-r--r--Lib/test/test_genexps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_genexps.py b/Lib/test/test_genexps.py
index 17ad78a033..3d896a530f 100644
--- a/Lib/test/test_genexps.py
+++ b/Lib/test/test_genexps.py
@@ -144,7 +144,7 @@ Verify that syntax error's are raised for genexps used as lvalues
Traceback (most recent call last):
...
File "<doctest test.test_genexps.__test__.doctests[41]>", line 1
- SyntaxError: augmented assignment to generator expression not possible
+ SyntaxError: can't assign to generator expression
########### Tests borrowed from or inspired by test_generators.py ############