Serhiy Storchaka
92a9e98024
gh-81002: Add tests for termios (GH-110386)
2023-10-10 13:35:15 +02:00
Nikita Sobolev
344d3a222a
gh-110590: Fix a bug where _sre.compile would overwrite exceptions ( #110591 )
...
TypeError would be overwritten by OverflowError
if 'code' param contained non-ints.
2023-10-10 10:15:12 +00:00
Donghee Na
0362cbf908
gh-109595: Add -Xcpu_count=<n> cmdline for container users ( #109667 )
...
---------
Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Gregory P. Smith [Google LLC] <greg@krypto.org>
2023-10-10 19:00:09 +09:00
Serhiy Storchaka
5aa62a8de1
gh-110378: Fix test_async_gen_propagates_generator_exit in test_contextlib_async ( #110500 )
...
It now fails if the original bug is not fixed, and no longer produce ResourceWarning with fixed code.
2023-10-10 11:38:40 +02:00
Alex Waygood
fc811c8d20
gh-110558: Enable ruff's pyupgrade rules when running on Argument Clinic ( #110603 )
2023-10-10 09:35:36 +00:00
Eric Snow
757cc35b6b
gh-84570: Implement Waiting in SendChannel.send() (gh-110565)
...
We had been faking it (poorly).
We will add timeouts separately.
2023-10-10 09:35:14 +00:00
Nikita Sobolev
46462ff929
gh-107652: Fix CIFuzz typo ( #110602 )
2023-10-10 09:34:48 +00:00
Adam Turner
08ec4a1dbf
GH-109408: Move the Python file whitespace check from patchcheck to pre-commit ( #109891 )
...
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
2023-10-10 09:17:53 +00:00
Brandt Bucher
982f1b7d6d
Remove an old macro from executor.c ( #110597 )
2023-10-10 08:45:23 +00:00
Brandt Bucher
13380da91e
GH-104584: Fix refleak when tracing through calls (GH-110593)
2023-10-10 08:29:48 +00:00
Alex Waygood
d5ec77fafd
Add some 'meta hooks' to our pre-commit config ( #110587 )
2023-10-10 08:21:58 +00:00
Hugo van Kemenade
7426ed0347
gh-109408: Add the docs whitespace check from patchcheck to pre-commit ( #109854 )
...
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
2023-10-10 08:11:51 +00:00
Alex Waygood
7b2764e798
gh-110558: Run ruff on Argument Clinic in CI ( #110559 )
2023-10-10 07:52:39 +00:00
Serhiy Storchaka
96fed66a65
gh-110378: Close invalid generators in contextmanager and asynccontextmanager (GH-110499)
...
contextmanager and asynccontextmanager context managers now close an invalid
underlying generator object that yields more then one value.
2023-10-10 09:43:04 +02:00
Nikita Sobolev
def7ea5cec
Fix CIFuzz build ( #110576 )
2023-10-10 00:44:57 -06:00
Donghee Na
67e8d416cc
gh-109693: Use pyatomic.h for signal module (gh-110480)
2023-10-10 08:26:29 +09:00
Ezio Melotti
bdbe43c7d0
Remove unused SPHINXLINT
var from Doc/Makefile
. ( #110570 )
...
Remove unused `SPHINXLINT` var.
2023-10-10 00:30:23 +02:00
Jakub Kulík
3b1580af07
gh-78469: Declare missing sethostname for Solaris 10 ( #109447 )
...
Add OS version specific macro for Solaris: Py_SUNOS_VERSION.
2023-10-09 21:18:05 +00:00
Ashish Shirodkar
0050670d76
gh-106765: Updates Windows installer build instructions to clarify system requirements (GH-110566)
2023-10-09 22:15:19 +01:00
Illia Volochii
ea7b53ff67
gh-107652: Set up CIFuzz to run fuzz targets continuously ( #107653 )
...
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
2023-10-09 09:30:10 -06:00
Serhiy Storchaka
326c6c4e07
gh-110519: Improve deprecation warning in the gettext module ( #110520 )
...
Deprecation warning about non-integer numbers in gettext now always refers
to the line in the user code where gettext function or method is used.
Previously, it could refer to a line in gettext code.
Also, increase test coverage for NullTranslations and domain-aware functions
like dngettext().
2023-10-09 15:45:22 +02:00
Eric Snow
7bd560ce8d
gh-76785: Add SendChannel.send_buffer() ( #110246 )
...
(This is still a test module.)
2023-10-09 07:39:51 -06:00
Bo Anderson
f4cb0d27cc
gh-109191: Fix build with newer editline (gh-110239)
2023-10-09 13:21:20 +00:00
Steve Dower
12cc6792d0
gh-110437: Allow overriding VCRuntimeDLL with a semicolon separated list of DLLs to bundle (GH-110470)
2023-10-09 12:17:42 +01:00
Nikita Sobolev
ea39c877c0
gh-110525: Cover PySet_Add corner case with frozenset objects (GH-110544)
2023-10-09 14:04:49 +03:00
Nikita Sobolev
89df5b73d0
gh-110549: Remove unused includes of <stddef.h> in _testcapi (GH-110552)
2023-10-09 10:37:57 +00:00
jtranquilli
48419a50b4
gh-109286: Update macOS installer to use SQLite 3.43.1 ( #110482 )
2023-10-09 10:05:50 +00:00
Nikita Sobolev
5e7edac771
gh-110497: Add note about OSError
being an alias to IOError
in docs ( #110498 )
2023-10-09 11:18:06 +02:00
Nikita Sobolev
c49edd7d9c
gh-110525: Add CAPI tests for set and frozenset objects (GH-110526)
2023-10-09 11:57:48 +03:00
Tian Gao
dd4bb0529e
gh-110514: Add PY_THROW to sys.setprofile
events (GH-110524)
2023-10-09 09:38:45 +01:00
Tian Gao
9f8282de6b
gh-106670: Set convenience variable for post mortem debugging ( #110493 )
2023-10-09 08:17:24 +00:00
Albert Villanova del Moral
0df772f555
Remove unused imports in multiprocessing docs example ( #109984 )
2023-10-08 22:36:01 -07:00
partev
892ee72b36
gh-110534 fix a URL redirect to wikipedia article on Fibonacci numbers ( #110535 )
2023-10-09 00:44:15 -04:00
Victor Stinner
7e30821b17
gh-108277: Fix test_os TimerfdTests ( #110515 )
...
* test_timerfd_TFD_TIMER_ABSTIME() and
test_timerfd_ns_TFD_TIMER_ABSTIME() tolerate a difference of 50 us.
* test_timerfd_negative() checks if os.TFD_TIMER_CANCEL_ON_SET is
defined.
2023-10-08 11:26:18 +00:00
Serhiy Storchaka
d96a8cdfe2
gh-89902: Deprecate non-standard format specifier "N" for Decimal (GH-110508)
...
It was not documented and only supported in the C implementation.
2023-10-08 10:01:39 +03:00
Nikita Sobolev
6780d63ae5
gh-110378: Move to IsolatedAsyncTestCase
in test_contextlib_async.py
( #110379 )
2023-10-08 11:44:56 +05:30
zipperer
8e56d551ce
Update floatingpoint.rst ( #110509 )
...
This commit removes a ':'. I believe the extra colon causes a display error.
What I believe to be an error:
Above this expression
`round(math.pi, ndigits=2) == round(22 / 7, ndigits=2)`
the page displays `.. doctest::`.
What I observed:
After I remove the extra colon, the page does not display `.. doctest::`
2023-10-07 17:07:36 -07:00
denballakh
dd9d781da3
gh-110237: Check PyList_Append
for errors in _PyEval_MatchClass
( #110238 )
2023-10-07 17:04:51 -07:00
Masaru Tsuchiyama
de2a4036cb
gh-108277: Add os.timerfd_create() function ( #108382 )
...
Add wrapper for timerfd_create, timerfd_settime, and timerfd_gettime to os module.
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
2023-10-07 19:33:22 +02:00
Victor Stinner
64f158e7b0
gh-110397: Add Py_IsFinalizing() to the stable ABI ( #110441 )
2023-10-07 17:59:16 +02:00
Serhiy Storchaka
b987fdb19b
gh-109848: Make test_rot13_func in test_codecs independent (GH-109850)
2023-10-07 16:01:39 +03:00
Serhiy Storchaka
1aad4fc5db
gh-109864: Make test_gettext tests order independent (GH-109866)
2023-10-07 16:00:28 +03:00
Eric Snow
92ca90b762
gh-76785: Support Running Some Functions in Subinterpreters (gh-110251)
...
This specifically refers to `test.support.interpreters.Interpreter.run()`.
2023-10-06 17:52:22 -06:00
Charlie Zhao
de1052245f
gh-106078: Suppress the warning caused by multi-phase initialization of decimal
( #107524 )
2023-10-07 00:15:19 +01:00
Brett Cannon
5fd8821cf8
GH-110455: Guard assert(tstate->thread_id > 0)
with #ifndef HAVE_PTHREAD_STUBS
(GH-110487)
2023-10-06 16:12:19 -07:00
Shantanu
f013b47504
gh-110489: Optimise math.ceil for known exact float ( #108801 )
...
This matches a similar optimisation done for math.floor in
https://github.com/python/cpython/pull/21072
2023-10-06 22:57:18 +00:00
jtranquilli
201dc11aeb
gh-109286: Update Windows installer to use SQLite 3.43.1 ( #110403 )
...
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Erlend E. Aasland <erlend@python.org>
2023-10-06 17:12:15 +02:00
InSync
02cdaefe9a
Fix typo in Doc/library/textwrap.rst ( #110328 )
...
"One problem with this is algorithm is that [...]" -> "One problem with this algorithm is that [...]"
2023-10-06 14:25:02 +00:00
Victor Stinner
d023d4166b
gh-110184: Fix subprocess test_pipesize_default() ( #110465 )
...
For proc.stdin, get the size of the read end of the test pipe.
Use subprocess context manager ("with proc:").
2023-10-06 15:44:53 +02:00
Victor Stinner
a4baa9e8ac
gh-103053: Fix test_tools.test_freeze on FreeBSD ( #110451 )
...
Fix test_tools.test_freeze on FreeBSD: run "make distclean" instead
of "make clean" in the copied source directory to remove also the
"python" program.
Other test_freeze changes:
* Log executed commands and directories, and the current directory.
* No longer uses make -C option to change the directory, instead use
subprocess cwd parameter.
2023-10-06 03:08:34 +02:00