diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-09-26 22:39:22 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-09-26 22:39:22 (GMT) |
commit | 3ffeae130bc55522543bf367f064478f6d770164 (patch) | |
tree | 588f507fc2989b8aefc0819fefc6df238b4e11da /Lib/pydoc.py | |
parent | 3ab0ac7cd4e0652186c3a1e5ab84f44b76b55d50 (diff) | |
download | cpython-3ffeae130bc55522543bf367f064478f6d770164.zip cpython-3ffeae130bc55522543bf367f064478f6d770164.tar.gz cpython-3ffeae130bc55522543bf367f064478f6d770164.tar.bz2 |
Removed no-longer-true comment about pydoc working under all versions of
Python since 1.5 (virtually everything I changed over the last week relies
on "modern" features, particularly nested scopes).
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-x | Lib/pydoc.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index a99fdb4..84ef4a5 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -35,10 +35,6 @@ Richard Chamberlain, for the first implementation of textdoc. Mynd you, møøse bites Kan be pretty nasti...""" -# Note: this module is designed to deploy instantly and run under any -# version of Python from 1.5 and up. That's why it's a single file and -# some 2.0 features (like string methods) are conspicuously absent. - # Known bugs that can't be fixed here: # - imp.load_module() cannot be prevented from clobbering existing # loaded modules, so calling synopsis() on a binary module file |