(original) (raw)

changeset: 90821:3fa76139c908 branch: 3.4 parent: 90818:038cbbef4539 user: Serhiy Storchaka storchaka@gmail.com date: Sun May 25 13:04:13 2014 +0300 files: Lib/pydoc.py description: Issue #18918: Removed non-existing topic from a list of available topics. The 'File objects' section was removed in Python 3. Patch by Claudiu Popa. diff -r 038cbbef4539 -r 3fa76139c908 Lib/pydoc.py --- a/Lib/pydoc.py Sat May 24 18:48:18 2014 -0400 +++ b/Lib/pydoc.py Sun May 25 13:04:13 2014 +0300 @@ -1733,7 +1733,6 @@ 'TRACEBACKS': 'TYPES', 'NONE': ('bltin-null-object', ''), 'ELLIPSIS': ('bltin-ellipsis-object', 'SLICINGS'), - 'FILES': ('bltin-file-objects', ''), 'SPECIALATTRIBUTES': ('specialattrs', ''), 'CLASSES': ('types', 'class SPECIALMETHODS PRIVATENAMES'), 'MODULES': ('typesmodules', 'import'), /storchaka@gmail.com