summaryrefslogtreecommitdiff
path: root/testsuite/E22.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2012-12-19 01:46:15 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2012-12-19 01:46:15 +0100
commit515eb192a37c965d9a80cd10e152ba9a70030b50 (patch)
treed36baed068a4493beaac3df13d7e6204d4c1839e /testsuite/E22.py
parent7d3efa228bed40b3b7c1881bd42546e2f9ba6636 (diff)
downloadpep8-515eb192a37c965d9a80cd10e152ba9a70030b50.tar.gz
Add changelog entry for issue #96
Diffstat (limited to 'testsuite/E22.py')
-rw-r--r--testsuite/E22.py4
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))
#: