summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pydoc.py
Commit message (Expand)AuthorAgeFilesLines
* gh-65961: Do not rely solely on `__cached__` (GH-97990)Brett Cannon2022-10-061-1/+1
* gh-94318: Strip trailing spaces in pydoc text output (GH-94319)Serhiy Storchaka2022-06-271-49/+49
* gh-84461: Fix Emscripten umask and permission issues (GH-94002)Christian Heimes2022-06-191-0/+1
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)Christian Heimes2022-06-061-0/+1
* gh-90473: Skip tests that don't apply to Emscripten and WASI (GH-92846)Christian Heimes2022-05-161-2/+6
* bpo-46998: Allow subclassing Any at runtime (GH-31841)Shantanu2022-04-051-6/+6
* bpo-26120: do not exclude __future__ import in pydoc of the __future__ module...Irit Katriel2022-03-291-0/+17
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-1/+2
* bpo-40296: Fix supporting generic aliases in pydoc (GH-30253)Serhiy Storchaka2022-03-181-0/+58
* bpo-47042: Fix testing the HTML output in test_pydoc (GH-31959)Serhiy Storchaka2022-03-171-6/+10
* General cleanup of test_pydoc (GH-29459)Zachary Ware2021-11-071-43/+43
* bpo-10716: Migrating pydoc to html5. (GH-28651)Julien Palard2021-10-091-166/+114
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-15/+6
* bpo-45020: Freeze some of the modules imported during startup. (gh-28335)Eric Snow2021-09-151-0/+2
* bpo-44967: pydoc: return non-zero exit code when query is not found (GH-27868)Gregory Anders2021-08-261-4/+12
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-211-2/+2
* bpo-43682: Make staticmethod objects callable (GH-25117)Victor Stinner2021-04-111-1/+1
* bpo-43682: @staticmethod inherits attributes (GH-25268)Victor Stinner2021-04-091-2/+4
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-311-1/+1
* bpo-42988: Remove the pydoc getfile feature (GH-25015)Victor Stinner2021-03-291-6/+0
* bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)Batuhan Taskaya2020-10-061-2/+2
* bpo-40275: Use new test.support helper submodules in tests (GH-21451)Hai Shi2020-08-031-8/+7
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-271-2/+3
* bpo-35113: Fix inspect.getsource to return correct source for inner classes (...Karthikeyan Singaravelan2020-04-181-0/+1
* bpo-40257: Improve help for the typing module (GH-19546)Serhiy Storchaka2020-04-181-1/+2
* bpo-40257: Output object's own docstring in pydoc (GH-19479)Serhiy Storchaka2020-04-151-1/+2
* bpo-38614: Use test.support.SHORT_TIMEOUT constant (GH-17566)Victor Stinner2019-12-111-1/+1
* bpo-38786: Add parsing of https links to pydoc (GH-17143)Kirill2019-11-131-0/+11
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-1/+0
* bpo-36045: builtins.help() now prefixes `async` for async functions (GH-12010)Dan Rose2019-05-241-0/+23
* bpo-36729: Delete unused text variable on tests. (GH-12959)Emmanuel Arias2019-04-291-4/+0
* bpo-35619: Improve support of custom data descriptors in help() and pydoc. (G...Serhiy Storchaka2019-01-151-10/+164
* bpo-32492: Tweak _collections._tuplegetter. (GH-11367)Serhiy Storchaka2018-12-311-0/+10
* bpo-35614: Fix pydoc help() on metaclasses (#11357)Sanyam Khurana2018-12-311-0/+11
* bpo-35513: Replace time.time() with time.monotonic() in tests (GH-11182)Victor Stinner2018-12-171-2/+2
* bpo-34966: Improve support of method aliases in pydoc. (GH-9823)Serhiy Storchaka2018-11-081-0/+99
* bpo-8525: help() on a type now shows builtin subclasses (GH-5066)Sanyam Khurana2018-10-211-0/+118
* bpo-34182: Fix test_pydoc running as a script. (GH-8389)Bo Bayles2018-07-291-1/+2
* bpo-33185: Improve wording and markup (GH-6477)Nick Coghlan2018-04-151-1/+1
* bpo-33185: Fix regression in pydoc CLI sys.path handling (GH-6419)Nick Coghlan2018-04-151-0/+67
* bpo-32226: PEP 560: improve typing module (#4906)Ivan Levkivskyi2018-01-201-1/+1
* bpo-32031: Fix pydoc `test_mixed_case_module_names_are_lower_cased` (GH-4441)xdegaye2017-11-181-1/+1
* bpo-32018: Fix inspect.signature repr to follow PEP 8 (#4408)Dong-hee Na2017-11-151-1/+1
* bpo-31128: Allow pydoc to bind to arbitrary hostnames (#3011)Feanil Patel2017-09-141-2/+2
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-5/+1
* bpo-31028: Fix test_pydoc when run directly (#2864)Victor Stinner2017-07-271-1/+1
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-271-1/+0
* Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of ...Guido van Rossum2016-10-221-0/+13
|\
| * Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of ...Guido van Rossum2016-10-221-0/+13
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-0/+4