summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
* bpo-46013: Fix confusing kerning on period in docs (GH-29989)jmcb2022-03-201-1/+1
* bpo-47040: improve document of checksum functions (gh-31955)Ma Lin2022-03-192-12/+9
* bpo-46382 dataclass(slots=True) now takes inherited slots into account (GH-31...Arie Bovenberg2022-03-191-0/+10
* bpo-47066: Convert a warning about flags not at the start of the regular expr...Serhiy Storchaka2022-03-192-0/+8
* bpo-44544: add textwrap placeholder arg (GH-27671)andrei kulakov2022-03-191-2/+3
* bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891)Hugo van Kemenade2022-03-185-1/+15
* [doc] Some more make suspicious false positives. (GH-31977)Julien Palard2022-03-181-0/+2
* bpo-45413: Define "posix_venv", "nt_venv" and "venv" sysconfig installation s...Miro Hrončok2022-03-183-1/+51
* bpo-34790: Remove passing coroutine objects to asyncio.wait() (GH-31964)Andrew Svetlov2022-03-171-43/+3
* bpo-46030: socket module add couple of FreeBSD constants. (GH-30018)David CARLIER2022-03-171-0/+15
* Use low bit of LOAD_GLOBAL's oparg to indicate whether it should push an addi...Mark Shannon2022-03-171-2/+5
* bpo-46996: Remove support of Tcl/Tk < 8.5.12 (GH-31839)Serhiy Storchaka2022-03-172-3/+4
* bpo-46480: add typing.assert_type (GH-30843)Jelle Zijlstra2022-03-171-0/+25
* bpo-46769: Improve documentation for `typing.TypeVar` (GH-31712)Alex Waygood2022-03-161-21/+55
* bpo-30677: [doc] mention that os.mkdir() can raise FileNotFoundError (GH-31548)slateny2022-03-141-1/+2
* bpo-31415: importtime was made by Inada Naoki (GH-31875)Victor Stinner2022-03-141-1/+1
* bpo-46906: Mention native endian in PyFloat_Pack8() doc (GH-31866)Victor Stinner2022-03-141-2/+6
* bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...Andrew Svetlov2022-03-142-3/+17
* bpo-47004: Sync with importlib_metadata 4.11.3. (#31854)Jason R. Coombs2022-03-131-0/+1
* bpo-46805: Add low level UDP socket functions to asyncio (GH-31455)Alex Grönholm2022-03-133-0/+53
* bpo-43215: Document Happy Eyeballs args of asyncio.open_connection (GH-24525)Illia Volochii2022-03-121-1/+5
* bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)Victor Stinner2022-03-112-0/+88
* bpo-46968: Add os.sysconf_names['SC_MINSIGSTKSZ'] (GH-31824)Victor Stinner2022-03-111-0/+3
* bpo-31327: Update time documentation to reflect possible errors (GH-31460)slateny2022-03-111-0/+6
* sqlite3: normalise pre-acronym determiners (GH-31772)Erlend Egeberg Aasland2022-03-111-5/+5
* Remove print race from task_done example. (GH-31795)Raymond Hettinger2022-03-101-4/+3
* bpo-46917: math.nan is now always available (GH-31793)Victor Stinner2022-03-102-0/+7
* bpo-46677: Add examples of inheritance and attributes to `TypedDict` docs (GH...Charlie Zhao2022-03-101-3/+88
* bpo-46917: Require IEEE 754 to build Python (GH-31790)Victor Stinner2022-03-101-0/+3
* bpo-45138: Revert GH-28240: Expand traced SQL statements (GH-31788)Erlend Egeberg Aasland2022-03-092-10/+0
* bpo-46245: Add optional parameter dir_fd in shutil.rmtree() (GH-30365)Serhiy Storchaka2022-03-092-2/+15
* Fix 3.11 what's new formatting (GH-31763)Ken Jin2022-03-091-4/+9
* bpo-45138: Expand traced SQL statements in `sqlite3` trace callback (GH-28240)Erlend Egeberg Aasland2022-03-092-0/+10
* Docstring: replace pysqlite with sqlite3 (GH-31758)Erlend Egeberg Aasland2022-03-091-2/+2
* Removed confusing reference to sys (GH-31638)David Gilbertson2022-03-081-3/+3
* bpo-40059: Add tomllib (PEP-680) (GH-31498)Taneli Hukkinen2022-03-083-1/+120
* docs: Don't use code formatting for emphasis (GH-30519)William Andrea2022-03-081-1/+1
* Removed ambiguity in __init_subclass__ docs (GH-31540)David Gilbertson2022-03-081-1/+1
* bpo-46494: Mention the typing_extensions pkg in typing docs (GH-31260)Meer Suri2022-03-081-0/+4
* importlib.metadata: Remove empty footnote section (GH-30451)Ned Batchelder2022-03-081-3/+0
* bpo-45680: Improve docs on subscriptions w.r.t. `GenericAlias` objects (GH-29...Alex Waygood2022-03-081-20/+30
* bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)Inada Naoki2022-03-061-0/+3
* bpo-38738: Fix formatting of True and False in the threading documentation (G...Géry Ogam2022-03-041-8/+8
* bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)slateny2022-03-041-7/+4
* bpo-46841: Fix error message hacks in `GET_AWAITABLE` (GH-31664)Brandt Bucher2022-03-041-1/+10
* bpo-46355: Update pythoncapi_compat project URL (GH-31670)Victor Stinner2022-03-031-2/+2
* bpo-6634: [doc] clarify that sys.exit() does not always exit the interpreter ...vidhya2022-03-031-5/+3
* bpo-21910: Clarify docs for codecs writelines method (GH-31245)slateny2022-03-031-2/+3
* bpo-45492: Corrected documentation for co_names in inspect library doc (GH-31...slateny2022-03-021-2/+3
* bpo-46195: Do not add `Optional` in `get_type_hints` (GH-30304)Nikita Sobolev2022-03-021-3/+6