summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* gh-93839: Move Lib/ctypes/test/ to Lib/test/test_ctypes/ (#94041)Victor Stinner2022-06-2160-93/+83
| | | | | * Move Lib/ctypes/test/ to Lib/test/test_ctypes/ * Remove Lib/test/test_ctypes.py * Update imports and build system.
* GH-93678: refactor compiler so that optimizer does not need the assembler ↵Irit Katriel2022-06-212-160/+170
| | | | and compiler structs (GH-93842)
* gh-94021: Address unreachable code warning in specialize code (GH-94022)Christian Heimes2022-06-212-1/+3
|
* GH-93249: relax overly strict assertion on bounds->ar_start (GH-93961)Irit Katriel2022-06-202-2/+33
|
* gh-93937: PyOS_StdioReadline() uses PyConfig.legacy_windows_stdio (#94024)Victor Stinner2022-06-202-1/+5
| | | | | | | On Windows, PyOS_StdioReadline() now gets PyConfig.legacy_windows_stdio from _PyOS_ReadlineTState, rather than using the deprecated global Py_LegacyWindowsStdioFlag variable. Fix also a compiler warning in Py_SetStandardStreamEncoding().
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-2030-144/+172
| | | Add unit test on Py_MEMBER_SIZE() and some other macros.
* gh-90539: doc: Expand on what should not go into CFLAGS, LDFLAGS (#92754)Matthias Köppe2022-06-201-0/+18
|
* GH-93516: Speedup line number checks when tracing. (GH-93763)Mark Shannon2022-06-206-8/+101
| | | | * Use a lookup table to reduce overhead of getting line numbers during tracing.
* GH-93897: Store frame size in code object and de-opt if insufficient space ↵Mark Shannon2022-06-208-67/+50
| | | | on thread frame stack. (GH-93908)
* gh-84461: Silence some compiler warnings on WASM (GH-93978)Christian Heimes2022-06-207-8/+12
|
* gh-79009: sqlite3.iterdump now correctly handles tables with autoincrement ↵itssme2022-06-194-1/+62
| | | | | (#9621) Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
* gh-61162: Clarify sqlite3 connection context manager docs (GH-93890)Erlend Egeberg Aasland2022-06-192-4/+19
| | | | | | | | | | Explicitly note that transactions are only closed if there is an open transation at `__exit__`, and that transactions are not implicitly opened during `__enter__`. Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com> Automerge-Triggered-By: GH:erlend-aasland
* gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (#93926)Erlend Egeberg Aasland2022-06-193-19/+30
| | | Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
* gh-84461: Skip test_unwritable_directory again on Emscripten (GH-94007)Christian Heimes2022-06-191-0/+1
| | | GH-93992 removed geteuid() and enabled the test again on Emscripten.
* gh-84461: Fix Emscripten umask and permission issues (GH-94002)Christian Heimes2022-06-194-0/+23
| | | | | | | | - Emscripten's default umask is too strict, see https://github.com/emscripten-core/emscripten/issues/17269 - getuid/getgid and geteuid/getegid are stubs that always return 0 (root). Disable effective uid/gid syscalls and fix tests that use chmod() current user. - Cannot drop X bit from directory.
* gh-93991: Use boolean instead of 0/1 for condition check (GH-93992)Lei Zhang2022-06-191-4/+4
| | | # gh-93991: Use boolean instead of 0/1 for condition check
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-1921-28/+61
| | | | | | | | | | | | | | | | Move the follow functions and type from frameobject.h to pyframe.h, so the standard <Python.h> provide frame getter functions: * PyFrame_Check() * PyFrame_GetBack() * PyFrame_GetBuiltins() * PyFrame_GetGenerator() * PyFrame_GetGlobals() * PyFrame_GetLasti() * PyFrame_GetLocals() * PyFrame_Type Remove #include "frameobject.h" from many C files. It's no longer needed.
* gh-74953: Reformat PyThread_acquire_lock_timed() (#93947)Victor Stinner2022-06-191-46/+62
| | | | | | | | Reformat the pthread implementation of PyThread_acquire_lock_timed() using a mutex and a conditioinal variable. * Add goto to avoid multiple indentation levels and exit quickly * Use "while(1)" and make the control flow more obvious. * PEP 7: Add braces around if blocks.
* gh-93761: Fix test_logging test_config_queue_handler() race condition (#93952)Victor Stinner2022-06-191-0/+3
| | | Fix a race condition in test_config_queue_handler() of test_logging.
* What's new in 3.10: fix link to issue (#93968)Hugo van Kemenade2022-06-191-1/+1
| | | | | | | | | * What's new in 3.10: fix link to issue * What's new in 3.10: fix link to GH issue Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
* GH-93990: fix refcounting bug in `add_subclass` in `typeobject.c` (GH-93989)Kumar Aditya2022-06-191-1/+4
|
* gh-93975: Nicer error reporting in test_venv (GH-93959)Jason R. Coombs2022-06-182-14/+32
| | | | | | | | | | - gh-93957: Provide nicer error reporting from subprocesses in test_venv.EnsurePipTest.test_with_pip. - Update changelog This change does three things: 1. Extract a function for trapping output in subprocesses. 2. Emit both stdout and stderr when encountering an error. 3. Apply the change to `ensurepip._uninstall` check.
* gh-91387: Fix tarfile test on WASI (GH-93984)Christian Heimes2022-06-181-1/+1
| | | WASI's rmdir() syscall does not like the trailing slash.
* gh-93955: Use unbound methods for slot `__getattr__` and `__getattribute__` ↵Ken Jin2022-06-182-1/+9
| | | | (GH-93956)
* gh-84461: Fix pydebug Emscripten browser builds (GH-93982)Christian Heimes2022-06-182-16/+28
| | | | wasm_assets script did not take the ABIFLAG flag of sysconfigdata into account.
* gh-89828: Do not relay the __class__ attribute in GenericAlias (#93754)Serhiy Storchaka2022-06-187-20/+18
| | | | | list[int].__class__ returned type, and isinstance(list[int], type) returned True. It caused numerous problems in code that checks isinstance(x, type).
* gh-84461: Fix circulare dependency on BUILDPYTHON (GH-93977)Christian Heimes2022-06-183-4/+14
|
* Add jaraco as primary owner of importlib.metadata and importlib.resources. ↵Jason R. Coombs2022-06-181-0/+2
| | | | | | | | | | | (#93960) * Add jaraco as primary owner of importlib.metadata and importlib.resources. * Align indentation. Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
* gh-91387: Strip trailing slash from tarfile longname directories (GH-32423)Chris Fernald2022-06-173-0/+28
| | | Co-authored-by: Brett Cannon <brett@python.org>
* GH-77403: Fix tests which fail when PYTHONUSERBASE is not normalized (GH-93917)Irit Katriel2022-06-172-3/+3
|
* gh-92611: Add details on replacements for cgi utility funcs (GH-92792)CAM Gerlach2022-06-171-0/+31
| | | | | Per @brettcannon 's [suggestions on the Discourse thread](https://discuss.python.org/t/pep-594-take-2-removing-dead-batteries-from-the-standard-library/13508/51), discussed in #92611 and as a followup to PR #92612 , this PR add additional specific per-function replacement information for the utility functions in the `cgi` module deprecated by PEP 594 (PEP-594). @brettcannon , should this be backported (without the `deprecated-removed` , which I would update it accordingly and re-add in my other PR adding that to the others for 3.11+), or just go in 3.11+?
* GH-89858: Fix test_embed for out-of-tree builds (GH-93465)Kumar Aditya2022-06-172-5/+5
|
* gh-92888: Fix memoryview bad `__index__` use after free (GH-92946)Ken Jin2022-06-173-19/+139
| | | | Co-authored-by: chilaxan <35645806+chilaxan@users.noreply.github.com> Co-authored-by: Serhiy Storchaka <3659035+serhiy-storchaka@users.noreply.github.com>
* gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)Ken Jin2022-06-1712-71/+172
|
* gh-77782: Deprecate global configuration variable (#93943)Victor Stinner2022-06-178-28/+96
| | | | | | | Deprecate global configuration variable like Py_IgnoreEnvironmentFlag: the Py_InitializeFromConfig() API should be instead. Fix declaration of Py_GETENV(): use PyAPI_FUNC(), not PyAPI_DATA().
* gh-74953: Fix PyThread_acquire_lock_timed() code recomputing the timeout ↵Victor Stinner2022-06-171-1/+1
| | | | | (#93941) Set timeout, don't create a local variable with the same name.
* gh-74953: Add _PyTime_FromMicrosecondsClamp() function (#93942)Victor Stinner2022-06-173-16/+21
|
* gh-77782: Py_FdIsInteractive() now uses PyConfig.interactive (#93916)Victor Stinner2022-06-176-23/+29
|
* gh-93852: Add test.support.create_unix_domain_name() (#93914)Victor Stinner2022-06-177-86/+82
| | | | | | | | | | | | | | | test_asyncio, test_logging, test_socket and test_socketserver now create AF_UNIX domains in the current directory to no longer fail with OSError("AF_UNIX path too long") if the temporary directory (the TMPDIR environment variable) is too long. Modify the following tests to use create_unix_domain_name(): * test_asyncio * test_logging * test_socket * test_socketserver test_asyncio.utils: remove unused time import.
* gh-89745: Avoid exact match when comparing program_name in test_embed on ↵neonene2022-06-171-10/+7
| | | | Windows (GH-93888)
* gh-91404: Revert "bpo-23689: re module, fix memory leak when a match is ↵Gregory P. Smith2022-06-179-146/+74
| | | | | | | | | | | | terminated by a signal or allocation failure (GH-32283) (#93882) Revert "bpo-23689: re module, fix memory leak when a match is terminated by a signal or memory allocation failure (GH-32283)" This reverts commit 6e3eee5c11b539e9aab39cff783acf57838c355a. Manual fixups to increase the MAGIC number and to handle conflicts with a couple of changes that landed after that. Thanks for reviews by Ma Lin and Serhiy Storchaka.
* test_logging: Fix BytesWarning in SysLogHandlerTest (GH-93920)Victor Stinner2022-06-171-1/+1
|
* GH-83658: make multiprocessing.Pool raise an exception if maxtasksperchild ↵Irit Katriel2022-06-173-0/+9
| | | | | is not None or a positive int (GH-93364) Closes #83658.
* gh-91985: Ensure in-tree builds override platstdlib_dir in every path ↵neonene2022-06-164-2/+125
| | | | calculation (GH-93641)
* GH-91389: Fix dis position information for CACHEs (GH-93663)Brandt Bucher2022-06-163-12/+58
|
* gh-93353: regrtest supports checking tmp files with -j2 (#93909)Victor Stinner2022-06-163-11/+20
| | | | | regrtest now also implements checking for leaked temporary files and directories when using -jN for N >= 2. Use tempfile.mkdtemp() to create the temporary directory. Skip this check on WASI.
* gh-93847: Fix repr of enum of generic aliases (GH-93885)Serhiy Storchaka2022-06-163-2/+13
|
* Fix BINARY_SUBSCR_GETITEM stats (GH-93903)Ken Jin2022-06-162-7/+7
|
* gh-92547: Amend What's New (#93872)Erlend Egeberg Aasland2022-06-161-0/+8
|
* gh-91577: SharedMemory move imports out of methods (#91579)samtygier2022-06-162-4/+4
| | | | | | | SharedMemory.unlink() uses the unregister() function from resource_tracker. Previously it was imported in the method, but this can fail if the method is called during interpreter shutdown, for example when unlink is part of a __del__() method. Moving the import to the top of the file, means that the unregister() method is available during interpreter shutdown. The register call in SharedMemory.__init__() can also use this imported resource_tracker.