summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* gh-111157: Mention `__notes__` in `traceback.format_exception_only` ↵Nikita Sobolev2023-10-211-15/+12
| | | | docstring (#111158)
* gh-110918: regrtest: allow to intermix --match and --ignore options (GH-110919)Serhiy Storchaka2023-10-2112-141/+126
| | | | | | | Test case matching patterns specified by options --match, --ignore, --matchfile and --ignorefile are now tested in the order of specification, and the last match determines whether the test case be run or ignored.
* gh-111123: symtable should visit exception handlers before the else block ↵Irit Katriel2023-10-214-2/+25
| | | | (#111142)
* gh-110572: Fix potential leaks in test_*_code in _testcapi/getargs.c (GH-110573)Nikita Sobolev2023-10-211-33/+57
|
* gh-111155: Fix direct invocation of test_pprint (GH-111156)Nikita Sobolev2023-10-211-1/+5
|
* gh-110974: Make sure all test_zoneinfo tests are collected (GH-110975)Nikita Sobolev2023-10-211-2/+5
| | | | | Test classes from the test_zoneinfo submodule were overridden by test classes from the test_zoneinfo_property submodule with the same name.
* gh-110932: Fix regrtest for SOURCE_DATE_EPOCH (#111143)Victor Stinner2023-10-214-22/+75
| | | | If the SOURCE_DATE_EPOCH environment variable is defined, use its value as the random seed.
* gh-106310 - document the __signature__ attribute (#106311)Gouvernathor2023-10-201-0/+5
| | | | | Document the __signature__ attribute Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* gh-111046: for wasi-threads, export memory as well via the linker (GH-111099)YAMAMOTO Takashi2023-10-203-0/+11
|
* gh-110964: clinic: refactor output_templates() (#110982)Victor Stinner2023-10-201-56/+53
|
* gh-111133: Remove unnecessary PyFrozenSet_Check() calls in const folding ↵Kirill Podoprigora2023-10-201-14/+3
| | | | | (GH-111137) frozenset does not support multiplication.
* gh-111132: Fix crash on interactive_filename in `run_mod` (#111136)Nikita Sobolev2023-10-202-1/+14
|
* gh-111089: Use PyUnicode_AsUTF8() in sqlite3 (#111122)Victor Stinner2023-10-201-6/+1
| | | | PyUnicode_AsUTF8() now raises an exception if the string contains embedded null characters.
* gh-111126: Use `isinstance` instead of `assert[Not]IsInstance` in ↵Nikita Sobolev2023-10-201-4/+4
| | | | `test_typing` (#111127)
* gh-111089: PyUnicode_AsUTF8AndSize() sets size on error (#111106)Victor Stinner2023-10-203-4/+11
| | | | On error, PyUnicode_AsUTF8AndSize() now sets the size argument to -1, to avoid undefined value.
* gh-111089: Add PyUnicode_AsUTF8() to the limited C API (#111121)Victor Stinner2023-10-209-16/+23
| | | | | | | | Add PyUnicode_AsUTF8() function to the limited C API. multiprocessing posixshmem now uses PyUnicode_AsUTF8() instead of PyUnicode_AsUTF8AndSize(): the extension is built with the limited C API. The function now raises an exception if the filename contains an embedded null character instead of truncating silently the filename.
* gh-111119: Fix flaky test test_lock_two_threads (gh-111124)Sam Gross2023-10-201-4/+12
|
* gh-110093: Partially revert previous change in socketmodule.c (GH-111120)Serhiy Storchaka2023-10-201-1/+3
|
* gh-111089: PyUnicode_AsUTF8() now raises on embedded NUL (#111091)Victor Stinner2023-10-208-25/+49
| | | | | | | | | * PyUnicode_AsUTF8() now raises an exception if the string contains embedded null characters. * Update related C API tests (test_capi.test_unicode). * type_new_set_doc() uses PyUnicode_AsUTF8AndSize() to silently truncate doc containing null bytes. Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)Serhiy Storchaka2023-10-2013-32/+33
|
* Synchronize test_contextlib with test_contextlib_async (GH-111000)Serhiy Storchaka2023-10-201-0/+46
|
* gh-110913: Fix WindowsConsoleIO chunking of UTF-8 text (GH-111007)Tamás Hegedűs2023-10-202-16/+21
|
* Add tests for failing PyUnicode_AsUTF8AndSize() with psize=NULL (GH-111100)Serhiy Storchaka2023-10-201-0/+4
|
* gh-101100: Fix Sphinx warnings in `library/tty.rst` (#111079)Hugo van Kemenade2023-10-202-5/+14
| | | Fix Sphinx warnings in library/tty.rst
* gh-111092: Make turtledemo run without default root enabled (#111093)Terry Jan Reedy2023-10-202-1/+2
| | | | Add missing 'root' argument to PanedWindow call. Other root children already have it.
* gh-85283: Build posixshmem extension with Limited C API (#111087)Victor Stinner2023-10-194-104/+24
| | | | | | | Build the _multiprocessing.posixshmem extension with the Limited C API. * Add <errno.h> include. * Replace PyUnicode_AsUTF8() with PyUnicode_AsUTF8AndSize().
* gh-67565: Add tests for C-contiguity checks (GH-110951)Furkan Onder2023-10-193-0/+29
|
* Remove unnecessary while in SocketIO.readinto (GH-111057)sc07kvm2023-10-191-10/+9
| | | It is unnecessary after removing "continue" in 6e6c59b (bpo-42357).
* add 3.13 as an option on the bug form (#111083)Ned Batchelder2023-10-191-0/+1
|
* gh-109510: Clearly explain "Which Docstrings Are Examined" (#109696)Unique-Usman2023-10-191-3/+24
| | | | | | | Co-authored-by: Mariatta <Mariatta@users.noreply.github.com> Co-authored-by: Jacob Coffee <jacob@z7x.org> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
* GH-101100: Fix reference warnings for ``__enter__`` and ``__exit__`` (#110112)Adam Turner2023-10-1911-58/+58
|
* GH-101100: Fix reference warnings for ``__getitem__`` (#110118)Adam Turner2023-10-1920-38/+38
|
* gh-101100: Fix sphinx warnings in `library/getpass.rst` (#110461)Nikita Sobolev2023-10-192-2/+1
|
* gh-76785: Make interpreters.*Channel Objects Shareable (gh-110607)Eric Snow2023-10-193-2/+5
| | | This restores their shareability, which was disabled by gh-110318 due to ref leaks.
* gh-76785: Add *Channel.is_closed (gh-110606)Eric Snow2023-10-193-2/+302
|
* gh-101100: Fix sphinx warnings in `library/codecs.rst` (#110979)Nikita Sobolev2023-10-192-34/+36
|
* gh-111031: Check more files in `test_tokenize` (#111032)Nikita Sobolev2023-10-191-10/+0
|
* gh-111050: IDLE - Simplify configdialog.HighPage.theme_elements (#111053)Terry Jan Reedy2023-10-192-24/+22
| | | | | | Replace tuple value with internal name, removing numbers. Remove sorting of already ordered dislay names. Remove '[0]' indexing into now-gone tuple.
* GH-103082: Clean up the sys.monitoring docs (GH-110532)Tian Gao2023-10-182-101/+165
|
* Fix a misspelling of Interpeter -> Interpreter (GH-111040)Nikita Sobolev2023-10-182-2/+2
|
* GH-104232: Fix statement about trace return values (GH-110516)Tian Gao2023-10-181-3/+2
|
* GH-102895 Add an option local_exit in code.interact to block exit() from ↵Tian Gao2023-10-185-33/+114
| | | | terminating the whole process (GH-102896)
* gh-111015: Install IDLE.app and Python Launcher.app on macOS with correct ↵Joshua Root2023-10-183-0/+5
| | | | | permissions (gh-111016) Co-authored-by: Ned Deily <nad@python.org>
* gh-100445: Improve error message for unterminated strings with escapes (#100446)Shantanu2023-10-183-4/+25
|
* gh-103737: IDLE - Remove unneeded .keys() for dict iteration (#110960)Terry Jan Reedy2023-10-188-26/+28
| | | | | Add comments where .keys() is needed. Leave debugger usages along because situation is unclear as indicated in expanded comment. Most testing is manual.
* gh-111019: Align expected and actual titles in test output (#111020)James2023-10-182-10/+10
| | | | Align expected and actual titles in output from assert_has_calls/assert_called_with for greater readability
* gh-108747: Add unit tests for site.{usercustomize,sitecustomize} hooks (#109470)Charles Machalow2023-10-182-0/+40
|
* gh-110938: More syntax tests for PEP695 funcs and classes (#110986)Nikita Sobolev2023-10-181-0/+15
|
* gh-109975: What's new in 3.13: longer full support (#110997)Hugo van Kemenade2023-10-181-0/+5
|
* gh-110961: Fixed asyncio.wait docstring to remove deprecated coroutine ↵Bar Harel2023-10-181-2/+0
| | | | | reference (#111017) Co-authored-by: Kumar Aditya <kumaraditya@python.org>