diff options
author | Stéphane Wirtel <stephane@wirtel.be> | 2018-02-01 07:31:07 (GMT) |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2018-02-01 07:31:07 (GMT) |
commit | ab328756d7fd969ee4882458b07892dff135013c (patch) | |
tree | 8232995e496e60d338bc8eff66ebbfa67c09b3bc /Doc/tutorial/classes.rst | |
parent | 07a1892f825aa8e2853f28acdff3acf522f86322 (diff) | |
download | cpython-ab328756d7fd969ee4882458b07892dff135013c.zip cpython-ab328756d7fd969ee4882458b07892dff135013c.tar.gz cpython-ab328756d7fd969ee4882458b07892dff135013c.tar.bz2 |
bpo-32722: Remove useless example in the Classes tutorial (#5446)
In the tutorial about the Generator expression, there is an example with
a dict comprehension and not with a generator expression, just removed
the code.
Diffstat (limited to 'Doc/tutorial/classes.rst')
-rw-r--r-- | Doc/tutorial/classes.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 4676ef4..b8f1226 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -892,10 +892,7 @@ Examples:: >>> sum(x*y for x,y in zip(xvec, yvec)) # dot product 260 - >>> from math import pi, sin - >>> sine_table = {x: sin(x*pi/180) for x in range(0, 91)} - - >>> unique_words = set(word for line in page for word in line.split()) + >>> unique_words = set(word for line in page for word in line.split()) >>> valedictorian = max((student.gpa, student.name) for student in graduates) |