Serhiy Storchaka
18015451d0
gh-121153: Fix some errors with use of _PyLong_CompactValue() (GH-121154)
...
* The result has type Py_ssize_t, not intptr_t.
* Type cast between unsigned and signdet integer types should be explicit.
* Downcasting should be explicit.
* Fix integer overflow check in sum().
2024-07-13 13:40:44 +03:00
Bas Bloemsaat
0759cecd9d
gh-99242 Ignore error when running regression tests under certain conditions. (GH-121663)
...
Co-Authored-By: Kevin Diem <kg.diem@gmail.com>
2024-07-13 11:52:08 +02:00
Pablo Galindo Salgado
4e36dd7d87
gh-121497: Make Pyrepl respect correctly the history with input hook set ( #121498 )
2024-07-13 09:42:14 +00:00
Zachary Ware
dc03ce797a
gh-95144: Improve error message of `... in None` (GH-119888)
2024-07-12 16:34:17 +00:00
Savannah Ostrowski
65fededf9c
Update retroactive comments from GH-117741 (segfault in `FutureIter_dealloc`) (GH-121638)
...
Address comments
2024-07-12 10:34:30 +02:00
Sam Gross
e8c91d90ba
gh-121103: Put free-threaded libraries in `lib/python3.14t` ( #121293 )
...
On POSIX systems, excluding macOS framework installs, the lib directory
for the free-threaded build now includes a "t" suffix to avoid conflicts
with a co-located default build installation.
2024-07-11 16:21:37 -04:00
Eric Snow
5250a03133
gh-117482: Fix Builtin Types Slot Wrappers (gh-121602)
...
When builtin static types are initialized for a subinterpreter, various "tp" slots have already been inherited (for the main interpreter). This was interfering with the logic in add_operators() (in Objects/typeobject.c), causing a wrapper to get created when it shouldn't. This change fixes that by preserving the original data from the static type struct and checking that.
2024-07-11 20:20:14 +00:00
Jelle Zijlstra
58e8cf2bb6
gh-121332: Make AST node constructor check _attributes instead of hardcoding attributes ( #121334 )
2024-07-11 14:34:53 +00:00
Sam Gross
44937d11a6
gh-121592: Make select.poll() and related objects thread-safe ( #121594 )
...
This makes select.poll() and kqueue() objects thread-safe in the
free-threaded build. Note that calling close() concurrently with other
functions is still not thread-safe due to races on file descriptors
(gh-121544).
2024-07-11 10:21:09 -04:00
sobolevn
e6264b44dc
gh-121615: Improve `module.rst` C-API docs with better error descriptions ( #121616 )
2024-07-11 11:57:22 +03:00
Tian Gao
690b9355e0
gh-121450: Make inline breakpoints use the most recent pdb instance ( #121451 )
2024-07-10 19:54:27 -07:00
Irit Katriel
6557af6698
gh-121554: remove unnecessary internal functions in compile.c ( #121555 )
...
Co-authored-by: Erlend E. Aasland <erlend@python.org>
2024-07-10 23:48:37 +01:00
Irit Katriel
ef10110cd7
gh-119786: fix broken links in docs and comment ( #121601 )
2024-07-10 21:59:14 +00:00
Eric Snow
35a67e36aa
gh-121596: Fix Sharing Interpreter Channels (gh-121597)
...
This fixes a mistake in gh-113012 and adds a test that verifies the fix.
2024-07-10 21:31:09 +00:00
Sam Gross
7641743d48
gh-117657: Remove TSAN suppressions for _abc.c ( #121508 )
...
The functions look thread-safe and I haven't seen any warnings issued
when running the tests locally.
2024-07-10 17:08:10 -04:00
Sam Gross
3ec719fabf
gh-117657: Fix TSan race in _PyDict_CheckConsistency ( #121551 )
...
The only remaining race in dictobject.c was in _PyDict_CheckConsistency
when the dictionary has shared keys.
2024-07-10 14:04:12 -04:00
Ken Jin
3bfc9c831a
gh-120198: Stop the world when setting __class__ on free-threaded build (GH-120672)
2024-07-11 02:02:08 +08:00
Stefano Rivera
a802277914
gh-121460: Skip freeing unallocated arenas (gh-121491)
...
`munmap(NULL)` is not noop, like `free(NULL)` is.
Fixes an observed testsuite hang on 32-bit ARM systems.
2024-07-10 10:40:55 -06:00
Irit Katriel
0177a34335
gh-121404: remove some accesses to compiler internals from codegen functions ( #121538 )
2024-07-10 17:09:45 +01:00
Sam Gross
af9f6de6ea
gh-107851: Fix spurious failures in fcntl eintr tests ( #121556 )
...
On heavily loaded machines, the subprocess may finish its sleep before
the parent process manages to synchronize with it via a failed lock.
This leads to errors like:
Exception: failed to sync child in 300.3 sec
Use pipes instead to mutually synchronize between parent and child.
2024-07-10 10:36:52 -04:00
Victor Stinner
ca0fb3423c
gh-89364: Export PySignal_SetWakeupFd() function ( #121537 )
...
Export the PySignal_SetWakeupFd() function. Previously, the function
was documented but it couldn't be used in 3rd party code.
2024-07-10 15:47:08 +02:00
sobolevn
84a5597b08
gh-121567: Improve `slice` C-API docs by mentioning exceptions ( #121568 )
...
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
2024-07-10 13:56:44 +03:00
Irit Katriel
cced22c760
gh-121547: deduplicate the code of const_cache update functions ( #121548 )
2024-07-10 10:34:54 +00:00
sobolevn
e2822360da
gh-121571: Do not use `EnvironmentError` in tests, use `OSError` instead ( #121572 )
2024-07-10 13:11:46 +03:00
Serhiy Storchaka
22a0bdbf9a
Improve zipimport tests (GH-121535)
2024-07-10 11:29:03 +03:00
satori1995
9585a1a2a2
GH-121439: Allow PyTupleObjects with an ob_size of 20 in the free_list to be reused (gh-121428)
2024-07-10 07:48:25 +00:00
Brett Cannon
f62161837e
GH-121521: Detect when wasmtime is not installed in `Tools/wasm/wasi.py` (GH-121522)
2024-07-09 15:08:01 -07:00
Brett Cannon
8020946814
GH-120372: Switch to wasmtime 22 (GH-121523)
...
Along the way, make the cache key in GitHub Actions for `config.cache` be more robust in the face of potential env var changes from `Tools/wasm/wasi.py`.
2024-07-09 15:02:25 -07:00
Sam Gross
04397434aa
gh-117657: Skip test when running under TSan (GH-121549)
...
The ProcessPoolForkserver combined with resource_tracker starts a thread
after forking, which is not supported by TSan.
Also skip test_multiprocessing_fork for the same reason
2024-07-09 14:12:45 -07:00
Sam Gross
9c08f40a61
gh-117657: Fix TSAN races in setobject.c ( #121511 )
...
The `used` field must be written using atomic stores because `set_len`
and iterators may access the field concurrently without holding the
per-object lock.
2024-07-09 12:11:43 -04:00
sobolevn
649d5b6d7b
gh-121533: Improve `PyCell_[Get,Set]` docs: mention the exceptions ( #121534 )
...
Co-authored-by: Victor Stinner <vstinner@python.org>
2024-07-09 18:47:35 +03:00
Rafael Fontenelle
9ba2a4638d
Docs: fix typo and duplicate word in configure.rst ( #121410 )
2024-07-09 14:24:37 +02:00
Mark Shannon
bf8686e1ea
GH-118926: Better distinguish between pointer and arrays in interpreter generator (GH-121496)
2024-07-09 11:33:56 +01:00
AN Long
facf9862da
gh-121333: Clarify what is the default executor for asyncio.run_in_executor ( #121335 )
...
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
2024-07-09 14:52:07 +05:30
Eric Snow
15d48aea02
gh-121110: Fix Extension Module Tests Under Py_TRACE_REFS Builds (gh-121503)
...
The change in gh-118157 (b2cd54a
) should have also updated clear_singlephase_extension() but didn't. We fix that here. Note that clear_singlephase_extension() (AKA _PyImport_ClearExtension()) is only used in tests.
2024-07-08 15:10:00 -06:00
Sam Gross
218edaf0ff
gh-121018: Fix typo in NEWS entry ( #121510 )
2024-07-08 16:44:56 -04:00
Hugo van Kemenade
006b53a42f
NEWS: Fix Sphinx warnings and increase threshold for new news nits ( #121482 )
...
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
2024-07-08 14:30:05 -06:00
Irit Katriel
2be37ec8e2
gh-121404: remove direct accesses to u_private from codegen functions ( #121500 )
2024-07-08 21:02:01 +01:00
Sam Gross
1d3cf79a50
gh-121368: Fix seq lock memory ordering in _PyType_Lookup ( #121388 )
...
The `_PySeqLock_EndRead` function needs an acquire fence to ensure that
the load of the sequence happens after any loads within the read side
critical section. The missing fence can trigger bugs on macOS arm64.
Additionally, we need a release fence in `_PySeqLock_LockWrite` to
ensure that the sequence update is visible before any modifications to
the cache entry.
2024-07-08 14:52:07 -04:00
Marc Mueller
31873bea47
gh-121487: Fix deprecation warning for ATOMIC_VAR_INIT in mimalloc (gh-121488)
2024-07-08 14:32:30 -04:00
Barney Gale
db00fee3a2
GH-119169: Simplify `os.walk()` exception handling ( #121435 )
...
Handle errors from `os.scandir()` and `ScandirIterator` similarly, which
lets us loop over directory entries with `for`.
2024-07-08 17:41:01 +01:00
Max Muoto
5289550b33
gh-121374: Correct docstrings in `_interpchannels` (gh-121418)
2024-07-08 10:32:17 -06:00
Mark Shannon
8ad6067bd4
GH-121012: Set index to -1 when list iterators become exhausted in tier 2 (GH-121483)
2024-07-08 14:20:13 +01:00
Michael Droettboom
d69529d31c
gh-121338: Remove #pragma optimize ( #121340 )
2024-07-08 08:48:42 -04:00
Alyssa Coghlan
59be79ae60
gh-108297: Update crashers README for test_crashers removal ( #121475 )
...
Update Lib/test/crashers/README for test_crashers removal
2024-07-08 05:24:31 +00:00
CBerJun
bf74db731b
gh-121461: Fix os.path.normpath documentation indentation ( #121466 )
2024-07-08 03:51:03 +00:00
Marc Mueller
5aa1e60e0c
gh-121467: Fix makefile to include mimalloc headers ( #121469 )
2024-07-07 17:45:21 -07:00
Shantanu
c8669489d4
Fix sphinx reference target ( #121470 )
...
This was introduced in https://github.com/python/cpython/pull/121164
and appears to be causing test failures on main
2024-07-07 17:18:28 -07:00
Barney Gale
b765e4adf8
GH-73991: Fix "Operation not supported" on Fedora buildbot. ( #121444 )
...
Follow-up to #120806 . Use `os_helper.skip_unless_xattr` to skip testing
xattr preservation when unsupported.
2024-07-07 17:27:52 +01:00
Ken Jin
3bddd07c2a
Add Fidget-Spinner to stackrefs CODEOWNERS (GH-121455)
2024-07-07 21:45:06 +08:00