aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/pydoc.py
Commit message (Expand)AuthorAge
* gh-128772: Fix pydoc for methods with __module__ is None (GH-129177)Serhiy Storchaka2025-02-04
* gh-128923: fix test_pydoc for object subclasses without `__module__` (#128951)T. Wouters2025-01-17
* gh-41872: Fix quick extraction of module docstrings from a file in pydoc (GH-...Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి)2025-01-08
* gh-101552: Allow pydoc to display signatures in source format (#124669)Jelle Zijlstra2024-10-09
* gh-81263: Add assignment expressions to `help` (#124641)Emily Morehouse2024-09-27
* gh-122129: Improve support of method descriptors and wrappers in the help tit...Serhiy Storchaka2024-07-23
* gh-120541: Improve the "less" prompt in pydoc (GH-120543)Serhiy Storchaka2024-06-15
* gh-120417: Add #noqa to used imports in the stdlib (#120421)Victor Stinner2024-06-13
* gh-120417: Remove unused imports in the stdlib (#120420)Victor Stinner2024-06-12
* bpo-37755: Use configured output in pydoc instead of pager (GH-15105)Enrico Tröger2024-06-08
* gh-119856: Support exiting help() with just "exit" (#119858)Victor Stinner2024-06-03
* gh-118673: Remove shebang and executable bits from stdlib modules. (#119658)Jason R. Coombs2024-05-29
* gh-118465: Add __firstlineno__ attribute to class (GH-118475)Serhiy Storchaka2024-05-06
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-05
* gh-65824: Add "Help on ..." to the "less" prompt in pydoc (GH-116183)Serhiy Storchaka2024-04-17
* gh-115775: Compiler adds __static_attributes__ field to classes (#115913)Irit Katriel2024-03-26
* gh-116143: Fix race condition in pydoc _start_server (#116144)Itamar Oren2024-03-06
* gh-65824: Improve the "less" prompt in pydoc (GH-116050)Serhiy Storchaka2024-03-01
* gh-113942: Show functions implemented as builtin methods (GH-115306)Serhiy Storchaka2024-02-26
* gh-101860: Expose __name__ on property (GH-101876)Eugene Toder2024-02-20
* gh-107155: Fix help() for lambda function with return annotation (GH-107401)Kirill Podoprigora2024-02-17
* gh-108303: Move all `pydoc` related test files to new `test.test_pydoc` packa...Nikita Sobolev2024-02-13
* gh-97959: Fix rendering of routines in pydoc (GH-113941)Serhiy Storchaka2024-02-11
* gh-64020: Deprecate pydoc.ispackage() (GH-20908)Zackery Spytz2023-12-27
* gh-112139: Add `inspect.Signature.format` and use it in `pydoc` (#112143)Nikita Sobolev2023-12-02
* gh-112007: Re-organize help utility intro message (#112017)Terry Jan Reedy2023-11-13
* gh-107782: Pydoc: fall back to __text_signature__ if inspect.signature() fail...Serhiy Storchaka2023-08-11
* gh-102541: Fix Helper.help("mod") for non-existent mod (#105934)Kirill Podoprigora2023-07-01
* gh-102541: Hide traceback in help prompt (gh-102614)Kirill Podoprigora2023-06-14
* pydoc.safeimport: Use importlib.import_module instead of __import__ (GH-103118)Yuxin Wu2023-05-03
* gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059)Barry Warsaw2023-05-03
* gh-98040: Remove just the `imp` module (#98573)Barry Warsaw2023-04-28
* gh-102799: Let pydoc use the exception instead of sys.exc_info (#102830)Irit Katriel2023-03-21
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-26
* gh-98374: Suppress ImportError for invalid query for help() command. (gh-98450)Dong-hee Na2022-10-20
* gh-94318: Strip trailing spaces in pydoc text output (GH-94319)Serhiy Storchaka2022-06-27
* gh-89828: Do not relay the __class__ attribute in GenericAlias (#93754)Serhiy Storchaka2022-06-18
* bpo-44712: Replace "type(literal)" with corresponding builtin types (GH-27294)Serhiy Storchaka2022-05-08
* bpo-46547: remove leaking vars into `pydoc.Helper` namespace (#30957)Nikita Sobolev2022-05-02
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-30
* bpo-26120: do not exclude __future__ import in pydoc of the __future__ module...Irit Katriel2022-03-29
* bpo-26120: make pydoc exclude __future__ imports from the data block of the m...Irit Katriel2022-03-28
* bpo-40296: Fix supporting generic aliases in pydoc (GH-30253)Serhiy Storchaka2022-03-18
* bpo-40280: Emscripten has no support for subprocesses (GH-29872)Christian Heimes2021-12-02
* bpo-10716: Migrating pydoc to html5. (GH-28651)Julien Palard2021-10-09
* bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd...E-Paine2021-08-29
* bpo-44967: pydoc: return non-zero exit code when query is not found (GH-27868)Gregory Anders2021-08-26
* Update URLs in comments and metadata to use HTTPS (GH-27458)Noah Kantrowitz2021-07-30
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-27
* bpo-43651: Fix EncodingWarning in `pydoc`. (GH-25644)Inada Naoki2021-04-27