diff options
author | Guido van Rossum <guido@python.org> | 1993-05-24 14:19:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-05-24 14:19:37 (GMT) |
commit | 23301a9467024eb70b654924c3f0a54d76702e47 (patch) | |
tree | 5db8a61d44362828c147c19a369ca0a25eaa7a43 /Doc/partparse.py | |
parent | d316607732aa70361d5793f6b301b70fab7ca367 (diff) | |
download | cpython-23301a9467024eb70b654924c3f0a54d76702e47.zip cpython-23301a9467024eb70b654924c3f0a54d76702e47.tar.gz cpython-23301a9467024eb70b654924c3f0a54d76702e47.tar.bz2 |
* lib1.tex: documented dict.items() and dict.values()
* ref3.tex: documented new __init__ and __del__ special methods of
class instances.
Diffstat (limited to 'Doc/partparse.py')
-rw-r--r-- | Doc/partparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/partparse.py b/Doc/partparse.py index 83b58bd..1f8e952 100644 --- a/Doc/partparse.py +++ b/Doc/partparse.py @@ -1001,7 +1001,7 @@ def next_command_p(length, buf, pp, i, cmdname): # things that are special to LaTeX, but not to texi.. onlylatexspecial = '_~^$#&%' -class Struct(): pass +class Struct: pass hist = Struct() out = Struct() |