| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-101552: Allow pydoc to display signatures in source format (#124669) | Jelle Zijlstra | 2024-10-09 | 1 | -2/+3 |
|
|
* | gh-81263: Add assignment expressions to `help` (#124641) | Emily Morehouse | 2024-09-27 | 1 | -0/+2 |
|
|
* | gh-122129: Improve support of method descriptors and wrappers in the help tit... | Serhiy Storchaka | 2024-07-23 | 1 | -0/+7 |
|
|
* | gh-120541: Improve the "less" prompt in pydoc (GH-120543) | Serhiy Storchaka | 2024-06-15 | 1 | -1/+8 |
|
|
* | gh-120417: Add #noqa to used imports in the stdlib (#120421) | Victor Stinner | 2024-06-13 | 1 | -1/+4 |
|
|
* | gh-120417: Remove unused imports in the stdlib (#120420) | Victor Stinner | 2024-06-12 | 1 | -1/+1 |
|
|
* | bpo-37755: Use configured output in pydoc instead of pager (GH-15105) | Enrico Tröger | 2024-06-08 | 1 | -2/+6 |
|
|
* | gh-119856: Support exiting help() with just "exit" (#119858) | Victor Stinner | 2024-06-03 | 1 | -2/+2 |
|
|
* | gh-118673: Remove shebang and executable bits from stdlib modules. (#119658) | Jason R. Coombs | 2024-05-29 | 1 | -1/+0 |
|
|
* | gh-118465: Add __firstlineno__ attribute to class (GH-118475) | Serhiy Storchaka | 2024-05-06 | 1 | -1/+1 |
|
|
* | gh-111201: A new Python REPL (GH-111567) | Pablo Galindo Salgado | 2024-05-05 | 1 | -145/+13 |
|
|
* | gh-65824: Add "Help on ..." to the "less" prompt in pydoc (GH-116183) | Serhiy Storchaka | 2024-04-17 | 1 | -15/+22 |
|
|
* | gh-115775: Compiler adds __static_attributes__ field to classes (#115913) | Irit Katriel | 2024-03-26 | 1 | -1/+2 |
|
|
* | gh-116143: Fix race condition in pydoc _start_server (#116144) | Itamar Oren | 2024-03-06 | 1 | -3/+4 |
|
|
* | gh-65824: Improve the "less" prompt in pydoc (GH-116050) | Serhiy Storchaka | 2024-03-01 | 1 | -1/+10 |
|
|
* | gh-113942: Show functions implemented as builtin methods (GH-115306) | Serhiy Storchaka | 2024-02-26 | 1 | -6/+6 |
|
|
* | gh-101860: Expose __name__ on property (GH-101876) | Eugene Toder | 2024-02-20 | 1 | -3/+2 |
|
|
* | gh-107155: Fix help() for lambda function with return annotation (GH-107401) | Kirill Podoprigora | 2024-02-17 | 1 | -2/+4 |
|
|
* | gh-108303: Move all `pydoc` related test files to new `test.test_pydoc` packa... | Nikita Sobolev | 2024-02-13 | 1 | -1/+1 |
|
|
* | gh-97959: Fix rendering of routines in pydoc (GH-113941) | Serhiy Storchaka | 2024-02-11 | 1 | -34/+115 |
|
|
* | gh-64020: Deprecate pydoc.ispackage() (GH-20908) | Zackery Spytz | 2023-12-27 | 1 | -0/+2 |
|
|
* | gh-112139: Add `inspect.Signature.format` and use it in `pydoc` (#112143) | Nikita Sobolev | 2023-12-02 | 1 | -1/+4 |
|
|
* | gh-112007: Re-organize help utility intro message (#112017) | Terry Jan Reedy | 2023-11-13 | 1 | -11/+13 |
|
|
* | gh-107782: Pydoc: fall back to __text_signature__ if inspect.signature() fail... | Serhiy Storchaka | 2023-08-11 | 1 | -40/+38 |
|
|
* | gh-102541: Fix Helper.help("mod") for non-existent mod (#105934) | Kirill Podoprigora | 2023-07-01 | 1 | -1/+5 |
|
|
* | gh-102541: Hide traceback in help prompt (gh-102614) | Kirill Podoprigora | 2023-06-14 | 1 | -8/+13 |
|
|
* | pydoc.safeimport: Use importlib.import_module instead of __import__ (GH-103118) | Yuxin Wu | 2023-05-03 | 1 | -4/+1 |
|
|
* | gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059) | Barry Warsaw | 2023-05-03 | 1 | -1/+1 |
|
|
* | gh-98040: Remove just the `imp` module (#98573) | Barry Warsaw | 2023-04-28 | 1 | -1/+1 |
|
|
* | gh-102799: Let pydoc use the exception instead of sys.exc_info (#102830) | Irit Katriel | 2023-03-21 | 1 | -14/+22 |
|
|
* | bpo-45975: Simplify some while-loops with walrus operator (GH-29347) | Nick Drozd | 2022-11-26 | 1 | -3/+1 |
|
|
* | gh-98374: Suppress ImportError for invalid query for help() command. (gh-98450) | Dong-hee Na | 2022-10-20 | 1 | -1/+4 |
|
|
* | gh-94318: Strip trailing spaces in pydoc text output (GH-94319) | Serhiy Storchaka | 2022-06-27 | 1 | -2/+1 |
|
|
* | gh-89828: Do not relay the __class__ attribute in GenericAlias (#93754) | Serhiy Storchaka | 2022-06-18 | 1 | -13/+9 |
|
|
* | bpo-44712: Replace "type(literal)" with corresponding builtin types (GH-27294) | Serhiy Storchaka | 2022-05-08 | 1 | -6/+6 |
|
|
* | bpo-46547: remove leaking vars into `pydoc.Helper` namespace (#30957) | Nikita Sobolev | 2022-05-02 | 1 | -0/+1 |
|
|
* | bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124) | Hugo van Kemenade | 2022-03-30 | 1 | -2/+2 |
|
|
* | bpo-26120: do not exclude __future__ import in pydoc of the __future__ module... | Irit Katriel | 2022-03-29 | 1 | -1/+1 |
|
|
* | bpo-26120: make pydoc exclude __future__ imports from the data block of the m... | Irit Katriel | 2022-03-28 | 1 | -0/+7 |
|
|
* | bpo-40296: Fix supporting generic aliases in pydoc (GH-30253) | Serhiy Storchaka | 2022-03-18 | 1 | -9/+13 |
|
|
* | bpo-40280: Emscripten has no support for subprocesses (GH-29872) | Christian Heimes | 2021-12-02 | 1 | -0/+2 |
|
|
* | bpo-10716: Migrating pydoc to html5. (GH-28651) | Julien Palard | 2021-10-09 | 1 | -85/+79 |
|
|
* | bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd... | E-Paine | 2021-08-29 | 1 | -6/+7 |
|
|
* | bpo-44967: pydoc: return non-zero exit code when query is not found (GH-27868) | Gregory Anders | 2021-08-26 | 1 | -17/+12 |
|
|
* | Update URLs in comments and metadata to use HTTPS (GH-27458) | Noah Kantrowitz | 2021-07-30 | 1 | -1/+1 |
|
|
* | bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378) | Mariusz Felisiak | 2021-07-26 | 1 | -6/+6 |
|
|
* | bpo-43651: Fix EncodingWarning in `pydoc`. (GH-25644) | Inada Naoki | 2021-04-27 | 1 | -2/+3 |
|
|
* | bpo-42988: Remove the pydoc getfile feature (GH-25015) | Victor Stinner | 2021-03-29 | 1 | -18/+0 |
|
|
* | bpo-42869: Avoid an HTTP redirection. (GH-24174) | Julien Palard | 2021-01-25 | 1 | -1/+1 |
|
|
* | bpo-40939: Remove PEG parser easter egg (__new_parser__) (#20802) | Lysandros Nikolaou | 2020-06-11 | 1 | -1/+0 |
|
|