- 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
- b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
- b0c84cd Issue #19030: final pieces for proper location of various class attributes located in the metaclass. by Ethan Furman · 11 years ago
- 1448ecf Issue #18716: Deprecate the formatter module by Brett Cannon · 11 years ago
- 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 11 years ago
- cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
- f4ba4ec Issue #17177: Stop using imp in pydoc by Brett Cannon · 11 years ago
- 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
- b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 11 years ago
- d5e6f2e Issue #18157: stop using imp.load_module() in imp. by Brett Cannon · 11 years ago
- 72b8502 #11182: remove the unused and undocumented pydoc.Scanner class. Patch by Martin Morrison. by Ezio Melotti · 12 years ago
- ac0cea5 Merge: #17476: make allmethods actually return all methods. by R David Murray · 12 years ago
- 2f50aaf modernize some modules' code by using with statement around open() by Giampaolo Rodola' · 12 years ago
- 3420057 Closes #17158: Add 'symbols' to help() welcome message; clarify 'modules spam' by Terry Jan Reedy · 12 years ago
- f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
- 29e02a2 merge 3.3 by Benjamin Peterson · 12 years ago
- b29614e compare singletons by identity not equality (closes #16712) by Benjamin Peterson · 12 years ago
- 4791a24 #16135: Removal of OS/2 support (Python code partial cleanup) by Jesus Cea · 12 years ago
- d340b43 Issue #15163: Pydoc shouldn't show __loader__ as a part of a module's data. by Brett Cannon · 12 years ago
- 9deaa06 Issue #9319: Remove the workaround for this since fixed problem from pydoc by Nick Coghlan · 12 years ago
- 2824cb5 Issue #15343: A lot more than just unicode decoding can go wrong when retrieving a source file by Nick Coghlan · 12 years ago
- c645c6a Closes #15162: the meaning of "online" has shifted a bit in recent years, use "interactive" instead. by Georg Brandl · 12 years ago
- 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
- ea3eb88 Issue #9260: A finer-grained import lock. by Antoine Pitrou · 13 years ago
- cb66eb0 Issue #13959: Deprecate imp.get_suffixes() for new attributes on by Brett Cannon · 13 years ago
- a82c960 merge #14638: pydoc now treats non-str __name__ as None instead of raising by R David Murray · 13 years ago
- c43125a #14638: pydoc now treats non-str __name__ as None instead of raising by R David Murray · 13 years ago
- fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 13 years ago
- 8613b0d Merge #14434: make tutorial link in 'help' banner version-specific by R David Murray · 13 years ago
- de0f629 #14434: make tutorial link in 'help' banner version-specific by R David Murray · 13 years ago
- 86a8a9a Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
- 12f65d1 Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
- 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
- aabbda5 Merge 3.2 by Florent Xicluna · 13 years ago
- 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
- 4c3124c Merge 3.2 by Éric Araujo · 13 years ago
- 647ef8c Wrap pydoc output under 80 characters by Éric Araujo · 13 years ago
- c473f8c Merge fix for #8887 from 3.2 by Éric Araujo · 13 years ago
- e64e51b Make “pydoc somebuiltin.somemethod” work (#8887) by Éric Araujo · 13 years ago
- 7a2f0c7 Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime. by Charles-François Natali · 13 years ago
- 27c4e88 Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime. by Charles-François Natali · 13 years ago
- d7772bc (merge 3.2) Issue #12451: pydoc: html_getfile() now uses tokenize.open() to by Victor Stinner · 13 years ago
- 91e0877 Issue #12451: pydoc: html_getfile() now uses tokenize.open() to support Python by Victor Stinner · 13 years ago
- 5f9a995 (merge 3.2) Issue #12451: pydoc: importfile() now opens the Python script in by Victor Stinner · 13 years ago
- e975af6 Issue #12451: pydoc: importfile() now opens the Python script in binary mode, by Victor Stinner · 13 years ago
- 319672e (merge 3.2) Issue #12451: pydoc.synopsis() now reads the encoding cookie if by Victor Stinner · 13 years ago
- e6c910e Issue #12451: pydoc.synopsis() now reads the encoding cookie if available, to by Victor Stinner · 13 years ago
- 8c6f88e remove __version__s dependent on subversion keyword expansion (closes #12221) by Benjamin Peterson · 13 years ago
- 6daa33c Issue #10818: Remove deprecated pydoc.serve() function by Victor Stinner · 13 years ago
- 383c3fc Issue #10818: Remove the Tk GUI of the pydoc module (pydoc -g has been by Victor Stinner · 13 years ago
- 60811c2 #11926: merge with 3.2. by Ezio Melotti · 14 years ago
- 44aad85 #11926: merge with 3.1. by Ezio Melotti · 14 years ago
- b185a04 #11926: add missing keywords to help("keywords"). by Ezio Melotti · 14 years ago
- 4d65224 Issue #11186: pydoc ignores a module if its name contains a surrogate character by Victor Stinner · 14 years ago
- 007bdbd Issue #11666: Teach pydoc to display full help for named tuples by Raymond Hettinger · 14 years ago
- 1103d05 Issue #11666: Teach pydoc to display full help for named tuples by Raymond Hettinger · 14 years ago
- 6827294 Speed-up search for hidden names by using a set instead of a tuple. by Raymond Hettinger · 14 years ago
- f6c8fd6 Merged revisions 86537,86867-86868,86881,86887,86913-86915,86931-86933,86960,86964,86974,86980,86996,87008,87050 via svnmerge from by Georg Brandl · 14 years ago
- d2f3857 #10961: fix exception handling in new pydoc server code. by Georg Brandl · 14 years ago
- 7be05b2 Merged revisions 82547 via svnmerge from by Alexander Belopolsky · 14 years ago
- a3abd1d pydoc: close the DocServer when done by Victor Stinner · 14 years ago
- cbd2ab1 #1513299: cleanup some map() uses where a comprehension works better. by Georg Brandl · 14 years ago
- ecace28 Handle Windows paths and don't double up on HTML header sections in new pydoc URL handler by Nick Coghlan · 14 years ago
- 9bd45f99 #10549: fix interface of docclass() for text documenter. by Georg Brandl · 14 years ago
- 7bb30b7 Improve Pydoc interactive browsing (#2001). Patch by Ron Adam. by Nick Coghlan · 14 years ago
- d80d5f4 #940286: pydoc.Helper.help() ignores input/output init parameters. by Georg Brandl · 14 years ago
- 74abf6f #9724: add nonlocal to pydoc topics. by Georg Brandl · 14 years ago
- 4979b9b Merged revisions 86504 via svnmerge from by Alexander Belopolsky · 14 years ago
- a47bbf5 Issue #10446: Several changes to module documentation generated by pydoc: by Alexander Belopolsky · 14 years ago
- e8f5832 Issue #9308: Removed redundant coding cookies. Added tests for by Alexander Belopolsky · 14 years ago
- 7ff5913 Fix Issue672656 - Securing pydoc server. by Senthil Kumaran · 14 years ago
- e5d518f Merged revisions 83370,83372-83374,83384 via svnmerge from by Georg Brandl · 14 years ago
- 76ae397 Build properties using lambdas. This makes test_pyclbr pass again, because it does not think that input and output are methods anymore. by Georg Brandl · 14 years ago
- 78aa396 #8198: the Helper class should not save the stdin and stdout objects by Georg Brandl · 14 years ago
- 2e733c9 Issue #9118: help(None) will now return NoneType doc instead of by Alexander Belopolsky · 14 years ago
- 94f2528 Remove traces of MacOS9 support. by Ronald Oussoren · 15 years ago
- 28a691b PEP 3147 by Barry Warsaw · 15 years ago
- 1f03f6e Merged revisions 79545 via svnmerge from by Brian Curtin · 15 years ago
- edef05b Merged revisions 79543 via svnmerge from by Brian Curtin · 15 years ago
- a94cbd8 Merged revisions 79531 via svnmerge from by Brian Curtin · 15 years ago
- fd2bfb0 Merged revisions 79529 via svnmerge from by Brian Curtin · 15 years ago
- 0d8a1dd Merged revisions 79520 via svnmerge from by Brian Curtin · 15 years ago
- 49c284c Merged revisions 79518 via svnmerge from by Brian Curtin · 15 years ago
- 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 15 years ago
- bf839b9 Merged revisions 78209 via svnmerge from by Ezio Melotti · 15 years ago
- 412c95a Merged revisions 78207 via svnmerge from by Ezio Melotti · 15 years ago
- b830a23 Recorded merge of revisions 76314 via svnmerge from by Nick Coghlan · 15 years ago
- 106274b Merged revisions 76312 via svnmerge from by Nick Coghlan · 15 years ago
- 22fff43 Merged revisions 74609,74627,74634,74645,74651,74738,74840,75016,75316-75317,75323-75324,75326,75328,75330,75338,75340-75341,75343,75352-75353,75355,75357,75359 via svnmerge from by Georg Brandl · 15 years ago
- 395ed24 #5221: fix related topics: SEQUENCEMETHODS[12] doesnt exist any more. by Georg Brandl · 15 years ago
- d76c8da Merged revisions 73623-73624 via svnmerge from by Benjamin Peterson · 15 years ago
- 0289b15 Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from by Benjamin Peterson · 15 years ago
- 1f1b9d3 Merged revisions 72966 via svnmerge from by R. David Murray · 15 years ago
- 5617db8 Merged revisions 71960 via svnmerge from by Georg Brandl · 16 years ago
- 388faac #5698, part 2: generate a meta info in pydoc HTML pages indicating the encoding, and fix the -w option to use the correct encoding. by Georg Brandl · 16 years ago
- e606694 Merged revisions 71443 via svnmerge from by Georg Brandl · 16 years ago
- 126c879 #5453: fix SyntaxErrors using pydoc -k, caused by intentionally bad files in Pythons test suite. by Georg Brandl · 16 years ago
- 95f285c Revert unintended part of r69948. Pydoc was not supposed to change. by Raymond Hettinger · 16 years ago
- 4d9a823 Refine docs for super() noting that sibling classes can by Raymond Hettinger · 16 years ago
- a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago