diff options
author | Georg Brandl <georg@python.org> | 2006-06-18 22:17:29 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-06-18 22:17:29 +0000 |
commit | ccff78525889fe2fa1a3512c4084a407994f9ce3 (patch) | |
tree | d8f3482e702a64e147455613d56bf471042e1e62 /Lib/test/test_genexps.py | |
parent | 066769c3073fb080e5ba0b68499e726c56d509c0 (diff) | |
download | cpython-git-ccff78525889fe2fa1a3512c4084a407994f9ce3.tar.gz |
Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c.
Diffstat (limited to 'Lib/test/test_genexps.py')
-rw-r--r-- | Lib/test/test_genexps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_genexps.py b/Lib/test/test_genexps.py index e414757ab0..2598a7913a 100644 --- a/Lib/test/test_genexps.py +++ b/Lib/test/test_genexps.py @@ -109,7 +109,7 @@ for iterability Traceback (most recent call last): File "<pyshell#4>", line 1, in -toplevel- (i for i in 6) - TypeError: iteration over non-sequence + TypeError: 'int' object is not iterable Verify late binding for the outermost if-expression |