summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* bpo-37578: glob.glob -- added include_hidden parameter (GH-30153)andrei kulakov2021-12-181-2/+12
* bpo-46113: Minor fixes in stdtypes documentation (GH-30167)Vivek Vashist2021-12-181-8/+8
* bpo-46104: Reduce use of pre-PEP 526 syntax in typing docs (GH-30148)Alex Waygood2021-12-181-9/+8
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-171-13/+21
* Doc: some rst linting. (GH-30149)Julien Palard2021-12-171-2/+2
* bpo-22047: [argparse] deprecate nested argument groups and mutually exclusive...Irit Katriel2021-12-161-0/+12
* bpo-28816: [doc] clarify that zipimport invokes importers only for python fil...Irit Katriel2021-12-161-2/+2
* Add Positional only arguments forward slash (/) to sorted() function in Built...Vivek Vashist2021-12-151-1/+1
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-141-32/+15
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-142-0/+57
* bpo-46063: Improve algorithm for computing which rolled-over log file… (GH-...Vinay Sajip2021-12-141-0/+17
* bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266)Gareth Rees2021-12-131-0/+10
* Clarify new_event_loop return value. (GH-30078)Paul Bryan2021-12-131-1/+1
* bpo-37602: Clarify that the lib2to3 nonzero fixer changes only definitions (G...Irit Katriel2021-12-131-1/+2
* Remove erroneous padding in dataclasses (GH-30076)Andre Delfino2021-12-121-63/+63
* bpo-44674: Use unhashability as a proxy for mutability for default dataclass ...Eric V. Smith2021-12-111-3/+9
* bpo-19737: Improved the documentation for globals (GH-29823)1809092021-12-111-3/+3
* bpo-42114: ctypes documentation: fix winmode parameter default value (GH-29976)Louis Sautier2021-12-101-3/+3
* bpo-42182: stdtypes doc - update and fix links to several dunder methods (GH...andrei kulakov2021-12-101-9/+10
* bpo-45391: mark UnionType as a class in documentation (GH-28757)Bernát Gábor2021-12-091-1/+1
* bpo-46016: fcntl module add FreeBSD's F_DUP2FD_CLOEXEC flag support (GH-29993)David CARLIER2021-12-081-0/+5
* bpo-46009: Do not exhaust generator when send() method raises (GH-29986)Mark Shannon2021-12-081-3/+2
* bpo-40222: update doc entry with respect to the change in WITH_EXCEPT_START (...Irit Katriel2021-12-081-1/+3
* bpo-35821: Fix restructuredtext code formatting in logging.rst (GH-29963)Ken Jin2021-12-071-5/+5
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-077-1/+844
* bpo-35821: Add an example to Logger.propagate documentation. (GH-29841)Vinay Sajip2021-12-071-0/+9
* bpo-46001: Change OverflowError to RecursionError in JSON library docstrings ...James Gerity2021-12-071-2/+2
* removal of duplicated text paragraph (#29666)Taras Sereda2021-12-061-6/+0
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-0/+8
* bpo-45535: Improve output of Enum ``dir()`` (GH-29316)Alex Waygood2021-12-021-2/+3
* docs: Improve example for urlparse() (GH-29816)Christian Clauss2021-12-021-31/+42
* bpo-30533: Add docs for `inspect.getmembers_static` (#29874)Weipeng Hong2021-12-011-0/+18
* bpo-45896: Fix docs default asyncio event loop on Windows (GH-29857)Rob2021-12-011-3/+4
* bpo-45711: Change exc_info related APIs to derive type and traceback from the...Irit Katriel2021-11-301-3/+8
* bpo-33381: [doc] strftime's %f option may pad zeros on the left or the right ...Vishal Pandey2021-11-301-2/+2
* bpo-45917: Add math.exp2() method - return 2 raised to the power of x (GH-29829)Gideon2021-11-291-0/+7
* bpo-43905: Expand dataclasses.astuple() and asdict() docs (GH-26154)andrei kulakov2021-11-291-4/+18
* bpo-45828: Use unraisable exceptions within sqlite3 callbacks (FH-29591)Erlend Egeberg Aasland2021-11-291-3/+21
* Add missing 'await writer.drain()' call to example (GH-29162)Sergey Kolesnikov2021-11-251-0/+1
* bpo-45568: Actually use @asynccontextmanager in usage example (GH-29151)Zbigniew Siciarz2021-11-251-0/+2
* bpo-45693: Document `port` parameter to `loop.create_server` (GH-29760)Jim Crist-Harif2021-11-241-0/+5
* bpo-45514: Deprecate importlib resources legacy functions. (GH-29036)Jason R. Coombs2021-11-241-1/+17
* bpo-45703: Invalidate _NamespacePath cache on importlib.invalidate_ca… (GH-...Miro Hrončok2021-11-231-0/+4
* Clarify that discutils.(plat)include is for CPython's headers (GH-29578)Petr Viktorin2021-11-231-2/+4
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-231-0/+9
* bpo-45766: Add direct proportion option to linear_regression(). (#29490)Raymond Hettinger2021-11-211-1/+11
* bpo-44733: Add max_tasks_per_child to ProcessPoolExecutor (GH-27373)Logan Jones2021-11-201-1/+10
* bpo-45250: fix docs regarding `__iter__` and iterators being inconsistently r...Brett Cannon2021-11-202-20/+18
* bpo-45788: Link sys.prefix doc to 'Installation paths' (#29606)Terry Jan Reedy2021-11-182-7/+6
* [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`` in th...Alex Waygood2021-11-181-0/+1