diff options
Diffstat (limited to 'Lib/test/test_genexps.py')
-rw-r--r-- | Lib/test/test_genexps.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_genexps.py b/Lib/test/test_genexps.py index c5e10dda8c..fb531d6d47 100644 --- a/Lib/test/test_genexps.py +++ b/Lib/test/test_genexps.py @@ -27,7 +27,7 @@ Test first class >>> g = (i*i for i in range(4)) >>> type(g) - <class 'generator' ...> + <class 'generator'> >>> list(g) [0, 1, 4, 9] @@ -269,8 +269,7 @@ else: def test_main(verbose=None): from test import support from test import test_genexps - import doctest - support.run_doctest(test_genexps, verbose, optionflags=doctest.ELLIPSIS) + support.run_doctest(test_genexps, verbose) # verify reference counting if verbose and hasattr(sys, "gettotalrefcount"): |