summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* gh-101860: document `property.__name__` (GH-123399)Bénédikt Tran2024-08-281-0/+7
* GH-117759: Document incremental GC (GH-123266)Mark Shannon2024-08-271-15/+40
* GH-73991: Prune `pathlib.Path.copy()` and `copy_into()` arguments (#123337)Barney Gale2024-08-261-12/+2
* GH-73991: Make `pathlib.Path.delete()` private. (#123315)Barney Gale2024-08-261-37/+2
* GH-73991: Add `pathlib.Path.copy_into()` and `move_into()` (#123314)Barney Gale2024-08-261-0/+21
* gh-82378: Document the difference between sys.tracebacklimit and the limit ar...CF Bolz-Tereick2024-08-251-0/+8
* gh-122982: Extend the deprecation period for bool inversion by two years (#12...Kirill Podoprigora2024-08-251-1/+1
* GH-73991: Add `pathlib.Path.move()` (#122073)Barney Gale2024-08-251-2/+19
* GH-109975: Copyedit 3.13 What's New: Improved Modules (#123132)Adam Turner2024-08-241-0/+2
* gh-123213: Fixed xml.etree.ElementTree.Element.extend and assignment to no lo...Bar Harel2024-08-231-1/+1
* gh-123165: make `dis` functions render positions on demand (#123168)Bénédikt Tran2024-08-211-8/+40
* gh-123049: configparser: Allow to create the unnamed section from scratch. (#...Pedro Lacerda2024-08-181-4/+16
* gh-123110: correct note about _Bool in the struct module docs (GH-123111)Sergey B Kirpichev2024-08-181-3/+3
* fix typo in dis.rst (#121612)mathysEthical2024-08-171-1/+1
* Remove unneeded verb in the phrase in sys.rst (#122718)Rafael Fontenelle2024-08-171-1/+1
* gh-122519: Adding socket module shutdown() constants description (#122543)Damien2024-08-171-0/+7
* gh-123005: Add version added in enum.Flag.__len__ (GH-123007)Damien2024-08-141-0/+2
* gh-122873: Allow "python -m json" to work (#122884)Trey Hunner2024-08-132-13/+19
* GH-73991: Rework `pathlib.Path.copytree()` into `copy()` (#122369)Barney Gale2024-08-111-35/+18
* Docs: Standardise versionchanged text in weakref.rst (#122898)Rafael Fontenelle2024-08-111-1/+1
* gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875)Wulian2024-08-111-1/+1
* GH-120794: Use example paths with multiple parts in pathlib docs (#122887)Barney Gale2024-08-101-8/+8
* gh-115808: Add ``is_none`` and ``is_not_none`` to ``operator`` (#115814)Nico Mexis2024-08-101-0/+18
* gh-105376: Restore deprecated logging warn() method (#122775)Victor Stinner2024-08-091-13/+4
* Docs: Change `remove` to `removes` for consistency (#121072)smij7202024-08-071-2/+3
* GH-73991: Rework `pathlib.Path.rmtree()` into `delete()` (#122368)Barney Gale2024-08-071-21/+28
* gh-121103: Update site module docs for free-threaded installs (#122737)Sam Gross2024-08-061-4/+13
* gh-122058: `Lib/inspect`: Update docstrings for `isfunction`, `isgenerator`, ...Kirill Podoprigora2024-08-061-0/+25
* gh-121367: [doc] BUILD_TUPLE arg can be 0 (#122663)Irit Katriel2024-08-051-4/+8
* Doc: Grammar fix in ``library/ssl.rst``, 'Verifying certificates' (#122646)scottwoodall2024-08-031-1/+1
* Doc: Improve wording of ``os.path.commonpath()`` (#122627)Matth-M2024-08-031-1/+1
* gh-121723: Relax constraints on queue objects for `logging.handlers.QueueHand...Bénédikt Tran2024-08-021-3/+6
* Fix typos in docs, error messages and comments (#122502)jianghuyiyuan2024-08-011-1/+1
* gh-121381 Remove subprocess._USE_VFORK escape hatch (#121383)Cody Maloney2024-07-311-20/+5
* gh-121650: Encode newlines in headers, and verify headers are sound (GH-122233)Petr Viktorin2024-07-302-0/+25
* gh-105733: Soft-deprecate ctypes.ARRAY, rather than hard-deprecating it. (GH-...Petr Viktorin2024-07-301-0/+9
* GH-121462: pathlib docs: improve table of corresponding os/os.path functions ...Barney Gale2024-07-271-36/+51
* Document ``mimetypes.MimeTypes.add_type()`` (#122301)Subrahmanya Gaonkar2024-07-261-0/+10
* gh-122300: Preserve AST nodes for format specifiers with single elements (#12...Pablo Galindo Salgado2024-07-261-1/+3
* gh-121999: Change default tarfile filter to 'data' (GH-122002)WilliamRoyNelson2024-07-262-32/+55
* GH-116090: Fix test and clarify behavior for exception events when exhausting...Mark Shannon2024-07-261-0/+4
* GH-122160: Remove BUILD_CONST_KEY_MAP opcode. (GH-122164)Mark Shannon2024-07-251-9/+0
* Docs: Use cross-reference to `os.uname` in `sysconfig.get_platform` (#122083)Ville Skyttä2024-07-231-1/+1
* gh-119698: deprecate ``symtable.Class.get_methods`` (#121902)Bénédikt Tran2024-07-221-0/+16
* gh-121957: Emit audit events for `python -i` and `python -m asyncio` (GH-121958)Łukasz Langa2024-07-221-2/+13
* Docs: spelling and grammar fixes (#122084)Ville Skyttä2024-07-2218-25/+25
* gh-120522: Apply App Store compliance patch during installation (#121947)Russell Keith-Magee2024-07-211-1/+9
* Delete stale note about mp.Lock.acquire/SIGINT (#120929)Andrey Mishchenko2024-07-211-11/+0
* gh-121977: Add tips for handling unhashable data (#122075)Raymond Hettinger2024-07-211-0/+6
* GH-73991: Support preserving metadata in `pathlib.Path.copytree()` (#121438)Barney Gale2024-07-201-1/+9