summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add Kumar Aditya as codeowner for weakref (#125405)Kumar Aditya2024-10-131-0/+2
|
* gh-125403: fix console formatting in Chapter 12 of the tutorial (#125404)partev2024-10-131-8/+8
|
* gh-89967: make WeakKeyDictionary and WeakValueDictionary thread safe (#125325)Kumar Aditya2024-10-133-174/+50
| | | Make `WeakKeyDictionary` and `WeakValueDictionary` thread safe by copying the underlying the dict before iterating over it.
* gh-125161: return non zero value in pthread_self on wasi (#125303)Kumar Aditya2024-10-131-5/+5
|
* fix comment in _PyMutex_TryUnlock (#125319)Kumar Aditya2024-10-131-2/+2
|
* gh-125383: Update `fib` function comment for accuracy (#125386)Wulian2024-10-131-2/+2
| | | `Doc/tutorial/controlflow.rst`: fix comment for `fib` function
* gh-61698: Use launchctl to detect macOS window manager in tests (#118390)Erlend E. Aasland2024-10-131-15/+9
|
* gh-86673: Loosen test_ttk.test_identify() requirements (#125335)Erlend E. Aasland2024-10-131-5/+5
| | | In aeca373b3 (PR gh-12011, issue gh-71500), test_identify() was changed to expect different results on Darwin. Ned's fix was later adjusted by e52f9bee8. This workaround is only needed for some variants of Tk/Tcl on macOS, so we now allow both the workaround and the generic results for these tests.
* Trivial change: Update comments in activate about what running hash -r does ↵Andrew Athan2024-10-131-2/+3
| | | | | | | (GH-125385) Update comments about what running hash -r does The old comment said "hash -r" forgets "past commands." However, the documentation for "hash" states that it forgets past locations. The old comment was, in my opinion, confusing. This is because it could be interpreted to mean it does something to the command history (HISTORY/HISTFILE etc) vs the cache of locations.
* Doc: Fix suggested usage of `-X gil=0` in the glossary (#125366)Ruoyu Zhong2024-10-131-1/+1
| | | | | | | | | | | | | | | | Currently, the "global interpreter lock" entry in the glossary mentions that `-X gil 0` can be used to disable the GIL [1]. However, this is invalid; the correct usage should be `-X gil=0`. $ python -X gil 0 -c 'print("Hello, world")' Fatal Python error: config_read_gil: PYTHON_GIL / -X gil must be "0" or "1" Python runtime state: preinitialized $ python -X gil=0 -c 'print("Hello, world")' Hello, world [1]: https://docs.python.org/3/using/cmdline.html#cmdoption-X Signed-off-by: Ruoyu Zhong <zhongruoyu@outlook.com>
* gh-124872: Change PyContext_WatchCallback to take PyObject (#124737)Richard Hansen2024-10-124-10/+10
| | | | | The PyContext struct is not intended to be public, and users of the API don't need anything more specific than PyObject. Also see gh-78943.
* gh-125289: Update sample code in asyncio-task.rst (GH-125292)Ghorban M. Tavakoly2024-10-121-1/+1
| | | | | | | | | | | | | | | | | | | * Update sample code in asyncio-task.rst This will change **coroutines** sample code in the **Awaitables** section and make the example clearer. * Update Doc/library/asyncio-task.rst Revert the added print Co-authored-by: Carol Willing <carolcode@willingconsulting.com> * Update Doc/library/asyncio-task.rst Co-authored-by: Carol Willing <carolcode@willingconsulting.com> --------- Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
* Prefer "similar" over "equivalent" in tutorial (#125343)Stephen Rosen2024-10-121-4/+4
| | | | | | | | | | | In the datastructures tutorial doc, some operations are described as "equivalent to" others. This has led to some user-confusion -- at least in the Discourse forums -- about cases in which the operations differ. This change doesn't systematically eliminate the word "equivalent" from the tutorial. It just substitutes "similar to" in several cases in which "equivalent to" could mislead users into expecting exact equivalence.
* gh-124872: Move PyThreadState to first argument for consistency (#124774)Richard Hansen2024-10-121-3/+4
|
* gh-53203: Fix strptime() for %c and %x formats on many locales (GH-124946)Serhiy Storchaka2024-10-123-34/+134
| | | | | | | | | | | | | | | | | | | In some locales (like French or Hebrew) the full or abbreviated names of the default month and weekday used in __calc_date_time can be part of other name or constant part of the %c format. The month name can also match %m with constant suffix (like in Japanese). So the code failed to correctly distinguish formats %a, %A, %b, %B and %m. Cycle all month and all days of the week to find the variable part and distinguish %a from %A and %b from %B or %m. Fixed locales for the following languges: Arabic, Bislama, Breton, Bodo, Kashubian, Chuvash, Estonian, French, Irish, Ge'ez, Gurajati, Manx Gaelic, Hebrew, Hindi, Chhattisgarhi, Haitian Kreyol, Japanese, Kannada, Korean, Marathi, Malay, Norwegian, Nynorsk, Punjabi, Rajasthani, Tok Pisin, Yoruba, Yue Chinese, Yau/Nungon and Chinese. Co-authored-by: Eli Bendersky <eliben@gmail.com>
* gh-125260: Change the default ``gzip.compress()`` mtime to 0 (#125261)Bernhard M. Wiedemann2024-10-124-5/+23
| | | | | | | | | This follows GNU gzip, which defaults to using 0 as the mtime for compressing stdin, where no file mtime is involved. This makes the output of gzip.compress() deterministic by default, greatly helping reproducible builds. Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* gh-85935: Check for nargs=0 for positional arguments in argparse (GH-124839)Serhiy Storchaka2024-10-123-3/+18
| | | | | | Raise ValueError in add_argument() if either explicit nargs=0 or action that does not consume arguments (like 'store_const' or 'store_true') is specified for positional argument.
* gh-125254: Fix error report about ambiguous option in argparse (GH-125273)Serhiy Storchaka2024-10-123-3/+14
| | | | | This was a regression introduced in gh-58573. It was only tested for the case when the ambiguous option is the last argument in the command line.
* gh-85935: Explicitly document the case nargs=0 in argparse (GH-125302)Serhiy Storchaka2024-10-121-0/+5
|
* gh-59330: Improve error message for dest= for positionals (GH-125215)Serhiy Storchaka2024-10-123-2/+23
| | | | | | | Also improve the documentation. Specify how dest and metavar are derived from add_argument() positional arguments. Co-authored-by: Simon Law <sfllaw@sfllaw.ca>
* gh-65865: Raise early errors for invalid help strings in argparse (GH-124899)Serhiy Storchaka2024-10-123-7/+58
|
* gh-125196: Use PyUnicodeWriter in parser (#125271)Victor Stinner2024-10-121-7/+8
| | | | Replace the private _PyUnicodeWriter API with the public PyUnicodeWriter API in _PyPegen_concatenate_strings().
* gh-111924: use atomics for interp id refcounting (#125321)Kumar Aditya2024-10-122-52/+8
|
* Doc: Fix a typo in "Function Examples" in the control-flow tutorial (#125338)Rafael Fontenelle2024-10-121-1/+1
|
* gh-124309: fix staggered race on eager tasks (#124847)Thomas Grainger2024-10-114-3/+88
| | | | | | | This patch is entirely by Thomas and Peter Co-authored-by: Thomas Grainger <tagrain@gmail.com> Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
* gh-116938: Clarify documentation of `dict` and `dict.update` regarding the ↵Victorien2024-10-112-13/+14
| | | | | | positional argument they accept (#125213) Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* gh-119786: Move garbage collection doc from devguide to InternalDocs (#125282)Irit Katriel2024-10-117-0/+598
| | | | | | | | | | | | | | | | | | | Co-Authored-By: Carol Willing carolcode@willingconsulting.com Co-Authored-By: Ezio Melotti ezio.melotti@gmail.com Co-Authored-By: Hugo van Kemenade hugovk@users.noreply.github.com Co-Authored-By: Itamar Ostricher itamarost@gmail.com Co-Authored-By: Jesús Cea jcea@jcea.es Co-Authored-By: Joannah Nanjekye 33177550+nanjekyejoannah@users.noreply.github.com Co-Authored-By: Ned Batchelder ned@nedbatchelder.com Co-Authored-By: Pablo Galindo Salgado Pablogsal@gmail.com Co-Authored-By: Pamela Fox pamela.fox@gmail.com Co-Authored-By: Sam Gross colesbury@gmail.com Co-Authored-By: Stefan Pochmann 609905+pochmann@users.noreply.github.com Co-Authored-By: T. Wouters thomas@python.org Co-Authored-By: q-ata 24601033+q-ata@users.noreply.github.com Co-Authored-By: slateny 46876382+slateny@users.noreply.github.com Co-Authored-By: Борис Верховский boris.verk@gmail.com Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Jacob Coffee <jacob@z7x.org>
* Fix typo in ``Doclibrary/functions.rst`` (#125327)Rafael Fontenelle2024-10-111-1/+1
|
* gh-124917: Allow keyword args to os.path.exists/lexists on Windows (#124918)Jelle Zijlstra2024-10-114-13/+77
|
* gh-116738: Make `_csv` module thread-safe (#118344)AN Long2024-10-111-9/+11
|
* gh-124612: Update autoconf container image (#125320)Donghee Na2024-10-111-1/+1
|
* gh-124787: Fix `TypeAliasType` and incorrect `type_params` (#124795)sobolevn2024-10-113-12/+133
| | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
* gh-125235: Keep `_tkinter` TCL paths pointing to base installation on ↵Y52024-10-112-1/+3
| | | | | Windows (#125250) Signed-off-by: y5c4l3 <y5c4l3@proton.me>
* gh-61011: Fix inheritance of nested mutually exclusive groups in argparse ↵Serhiy Storchaka2024-10-114-1/+39
| | | | | | | | | (GH-125210) Previously, all nested mutually exclusive groups lost their connection to the group containing them and were displayed as belonging directly to the parser. Co-authored-by: Danica J. Sutherland <djsutherland@users.noreply.github.com>
* gh-125058: update `_thread` docs regarding interruptibility of ↵Jan Kaliszewski2024-10-111-3/+5
| | | | `lock.acquire()` (#125141)
* gh-125221: Fix free-threading data race in `object.__reduce_ex__` (#125267)Sam Gross2024-10-113-15/+15
|
* gh-125296: Fix strange fragment identifier for `name or flags` in argparse ↵Savannah Ostrowski2024-10-111-1/+1
| | | | docs (#125297)
* gh-124872: Rename blurb file to reference the correct issue (#125285)Richard Hansen2024-10-111-0/+0
|
* Add some doctest cleanups for `turtle` and `configparser` (#125288)Alex Waygood2024-10-102-0/+6
| | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* Doc: Upgrade Sphinx to 8.1 (#125276)Adam Turner2024-10-102-8/+25
|
* gh-125268: Use static string for "1e309" in AST (#125272)Sam Gross2024-10-108-32/+11
| | | | | When formatting the AST as a string, infinite values are replaced by 1e309, which evaluates to infinity. The initialization of this string replacement was not thread-safe in the free threading build.
* gh-125196: Use PyUnicodeWriter for repr(dict) (#125270)Victor Stinner2024-10-101-36/+36
|
* Note argparse exit code in documentation (GH-119568)Justin Kunimune2024-10-101-1/+2
| | | Co-authored-by: Savannah Ostrowski <savannahostrowski@gmail.com>
* GH-125174: Make immortal objects more robust, following design from PEP 683 ↵Mark Shannon2024-10-1017-72/+61
| | | | (GH-125251)
* gh-124570: ctypes: Run some Structure tests on Union as well (GH-124976)Petr Viktorin2024-10-103-357/+368
| | | | | | | | - Move some Structure tests to test_structunion; use a common base test class + two subclasses to run them on Union too - Remove test_union for now as it's redundant Note: `test_simple_structs` & `test_simple_unions` are in the common file because they share `formats`.
* gh-125196: Use PyUnicodeWriter for JSON encoder (#125249)Victor Stinner2024-10-101-38/+49
| | | Replace the private _PyUnicodeWriter with the public PyUnicodeWriter.
* gh-124153: Simplify PyType_GetBaseByToken (GH-124488)neonene2024-10-101-80/+43
|
* gh-125118: don't copy arbitrary values to _Bool in the struct module (GH-125169)Sergey B Kirpichev2024-10-103-3/+6
| | | | | | | | | | | memcopy'ing arbitrary values to _Bool variable triggers undefined behaviour. Avoid this. We assume that `false` is represented by all zero bytes. Credits to Alex Gaynor. Co-authored-by: Sam Gross <colesbury@gmail.com> Co-authored-by: Victor Stinner <vstinner@python.org> Co-authored-by: Petr Viktorin <encukou@gmail.com>
* gh-124471: Set name for unnamed reusable workflow (#124475)Donghee Na2024-10-108-5/+13
| | | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua>
* gh-71784: [doc] add usage examples for traceback.TracebackException (#125189)Irit Katriel2024-10-101-15/+118
| | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>