diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2012-12-19 01:46:15 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2012-12-19 01:46:15 +0100 |
commit | 515eb192a37c965d9a80cd10e152ba9a70030b50 (patch) | |
tree | d36baed068a4493beaac3df13d7e6204d4c1839e /testsuite | |
parent | 7d3efa228bed40b3b7c1881bd42546e2f9ba6636 (diff) | |
download | pep8-515eb192a37c965d9a80cd10e152ba9a70030b50.tar.gz |
Add changelog entry for issue #96
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/E22.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/E22.py b/testsuite/E22.py index 0583e68..96393d0 100644 --- a/testsuite/E22.py +++ b/testsuite/E22.py @@ -88,4 +88,8 @@ print >> sys.stdout, "x is an integer." if True: *a, b = (1, 2, 3) + + +def squares(n): + return (i**2 for i in range(n)) #: |