summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-101936: Update the default value of fp from io.StringIO to io.BytesIO (gh-...Vo Hoang Long2023-02-214-1/+5
* gh-102008: simplify test_except_star by using sys.exception() instead of sys....Irit Katriel2023-02-211-25/+19
* gh-101903: Remove obsolete undefs for previously removed macros Py_EnterRecur...Owain Davies2023-02-211-4/+0
* gh-100556: Improve clarity of `or` docs (#100589)ram vikram singh2023-02-211-2/+2
* gh-101777: Make `PriorityQueue` docs slightly clearer (#102026)Owain Davies2023-02-211-2/+2
* gh-101965: Fix usage of Py_EnterRecursiveCall return value in _bisectmodule.c...Owain Davies2023-02-211-2/+2
* gh-101578: Amend exception docs (#102057)Erlend E. Aasland2023-02-212-22/+25
* gh-101961 fileinput.hookcompressed should not set the encoding value for the ...Gihwan Kim2023-02-214-12/+32
* gh-102056: Fix a few bugs in error handling of exception printing code (#102078)Irit Katriel2023-02-203-7/+48
* gh-102011: use sys.exception() instead of sys.exc_info() in docs where possib...Irit Katriel2023-02-206-32/+29
* gh-101566: Sync with zipp 3.14. (GH-102018)Jason R. Coombs2023-02-206-56/+215
* GH-99818: improve the documentation for zipfile.Path and Traversable (GH-101589)Filipe LaĆ­ns2023-02-202-3/+7
* gh-88233: zipfile: handle extras after a zip64 extra (GH-96161)Tim Hatch2023-02-203-0/+66
* gh-101981: Apply HOMEBREW related environment variables (gh-102074)Dong-hee Na2023-02-201-0/+3
* gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)Steve Dower2023-02-2013-184/+200
* gh-101819: Adapt _io types to heap types, batch 1 (GH-101949)Erlend E. Aasland2023-02-2010-478/+463
* gh-101981: Build macOS as recommended by the devguide (GH-102070)Erlend E. Aasland2023-02-201-3/+10
* gh-97786: Fix compiler warnings in pytime.c (#101826)Mark Dickinson2023-02-202-6/+31
* gh-101578: Amend PyErr_{Set,Get}RaisedException docs (#101962)Erlend E. Aasland2023-02-192-32/+20
* Misc improvements to the float tutorial (GH-102052)Raymond Hettinger2023-02-191-33/+106
* gh-85417: Clarify behaviour on branch cuts in cmath module (#102046)Mark Dickinson2023-02-192-28/+39
* gh-100425: Update tutorial docs related to sum() accuracy (FH-101854)neuralstring2023-02-191-1/+1
* Add missing 'is' to `cmath.log()` docstring (#102049)Owain Davies2023-02-192-4/+4
* gh-100210: Correct the comment link for unescaping HTML (#100212)Jean-Christophe Amiel2023-02-191-1/+1
* gh-97930: Also include subdirectory in makefile. (#102030)Jason R. Coombs2023-02-191-0/+2
* gh-99735: Use required=True in argparse subparsers example (#100927)Patricio Paez2023-02-191-1/+1
* Fix incorrectly documented attribute in csv docs (#101250)Reza Rastak2023-02-191-1/+1
* GH-84783: Make the slice object hashable (GH-101264)Furkan Onder2023-02-197-12/+53
* gh-97930: Apply changes from importlib_resources 5.12. (GH-102010)Jason R. Coombs2023-02-1815-127/+241
* bpo-46978: Correct docstrings for in-place builtin operators (#31802)Nicko van Someren2023-02-182-1/+2
* gh-101536: [docs] Improve attributes of `urllib.error.HTTPError` (#101612)Nikita Sobolev2023-02-181-1/+12
* gh-101967: add a missing error check (#101968)Eclips42023-02-182-1/+4
* gh-101739: [Enum] update docs - default boundary for Flag is CONFORM (GH-101746)Owain Davies2023-02-171-9/+8
* gh-100226: Clarify StreamReader.read behavior (#101807)Jan Gosmann2023-02-172-10/+19
* gh-101992: update plistlib examples to be runnable (#101994)Dustin Rodrigues2023-02-171-6/+15
* gh-101766: Fix refleak for _BlockingOnManager resources from test suite level...Dong-hee Na2023-02-172-5/+5
* gh-100809: Fix handling of drive-relative paths in pathlib.Path.absolute() (G...Barney Gale2023-02-174-1/+64
* gh-101360: Fix anchor matching in pathlib.PureWindowsPath.match() (GH-101363)Barney Gale2023-02-174-8/+13
* gh-101766: Fix refleak for _BlockingOnManager resources (gh-101942)Dong-hee Na2023-02-171-0/+5
* Docs: fix typos in PyFunction_WatchCallback docs and in 3.12 NEWS (GH-101980)Yeojin Kim2023-02-172-2/+2
* gh-101973: Fix parameter reference for PyModule_FromDefAndSpec (#101976)Oleg Iarygin2023-02-171-2/+2
* gh-101758: Fix Refleak-Related Failures in test_singlephase_variants (gh-101969)Eric Snow2023-02-171-1/+13
* gh-101758: Add _PyState_AddModule() Back for the Stable ABI (gh-101956)Eric Snow2023-02-165-0/+31
* GH-96764: rewrite `asyncio.wait_for` to use `asyncio.timeout` (#98518)Kumar Aditya2023-02-164-79/+133
* gh-99942: correct the pkg-config/python-config flags for cygwin/androidEli Schwartz2023-02-163-2/+4
* gh-101952: Fix possible segfault in `BUILD_SET` opcode (#101958)Eclips42023-02-163-0/+5
* gh-93573: Replace wrong example domains in configparser doc (GH-93574)sblondon2023-02-161-23/+23
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-168-25/+107
* gh-101951: use textwrap.dedent in compiler tests to make them more readable (...Irit Katriel2023-02-161-143/+145
* gh-101928: fix crash in compiler on multi-line lambda in function call (#101933)penguin_wwy2023-02-162-2/+13