-
-
Notifications
You must be signed in to change notification settings - Fork 33.4k
simplify code #130036
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
simplify code #130036
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… field (pythonGH-126938) (pythonGH-127825) This backports the *test* from pythonGH-126938, with changed limit and exception class. Co-authored-by: Melissa0x1f992 <[email protected]> Co-authored-by: Peter Bierma <[email protected]> Co-authored-by: Terry Jan Reedy <[email protected]>
…local support (pythonGH-127866) (pythonGH-127882) This PR fixes the build issue introduced by the commit 628f6eb from pythonGH-112207 on systems without thread local support. (cherry picked from commit f823910) Co-authored-by: velemas <[email protected]>
) Fix typos in `Lib/_pydecimal.py` (pythonGH-127700) (cherry picked from commit ed037d2) Co-authored-by: Stan Ulbrych <[email protected]>
Co-authored-by: Daniel Haag <[email protected]>
…ythonGH-127846) (python#127892) Uses symlinks to install iOS framework into testbed clone, adds a verbose mode to the iOS runner to hide most Xcode output, adds another mechanism to disable terminal colors, and ensures that stdout is flushed after every write. (cherry picked from commit ba2d2fd) Co-authored-by: Russell Keith-Magee <[email protected]>
Document PyObject_SelfIter (pythonGH-127861) (cherry picked from commit 58942a0) Co-authored-by: Miro Hrončok <[email protected]>
…27857) (python#127900) link to the correct output method in documentation (pythonGH-127857) (cherry picked from commit 11ff328) Co-authored-by: Viktor Kálmán <[email protected]>
…r_ handling (pythonGH-127872) (python#127917) pythongh-127870: Detect recursive calls in ctypes _as_parameter_ handling (pythonGH-127872) (cherry picked from commit 6ff38fc) Co-authored-by: Victor Stinner <[email protected]>
…GH-127916) (python#127919) pythongh-127906: Test the limited C API in test_cppext (pythonGH-127916) (cherry picked from commit d05a4e6) Co-authored-by: Victor Stinner <[email protected]>
…) (python#127941) Specify that it is valid for floats and ints with 'd' presentation and an error otherwise. --------- (cherry picked from commit e2325c9) Co-authored-by: Sergey B Kirpichev <[email protected]> Co-authored-by: Terry Jan Reedy <[email protected]>
…thonGH-127926) (python#127944) pythongh-127353: Allow to force color output on Windows V2 (pythonGH-127926) (cherry picked from commit 0ac40ac) Co-authored-by: Andrey Efremov <[email protected]>
…mSpec` (pythonGH-127955) (python#127959) Clarify ast docs to use a less confusing example for `ast.ParamSpec` (pythonGH-127955) Fix typo in ast docs: ParamSpec defaults (cherry picked from commit 7900a85) Co-authored-by: Steve C <[email protected]>
…#127994) pythongh-127906: Fix Py_BUILD_ASSERT_EXPR() on Windows Change Py_BUILD_ASSERT_EXPR implementation on Windows to avoid a compiler warning about an unnamed structure.
…ngObject (pythonGH-128006) Free arena on _PyCompile_AstOptimize failure in Py_CompileStringObject (pythonGH-127910) After commit 10a91d7 introduced arena cleanup, commit 2dfbd4f removed the free call when _PyCompile_AstOptimize fails. (cherry picked from commit cfeaa99) Co-authored-by: Berker Peksag <[email protected]>
… dlerror messages (pythonGH-126746) (pythonGH-128023) - Add a helper to set an error from locale-encoded `char*` - Use the helper for gdbm & dlerror messages (cherry picked from commit 7303f06) Co-authored-by: Bénédikt Tran <[email protected]> Co-authored-by: Victor Stinner <[email protected]>
…8028) (python#128052) Set TERM environment variable to "dumb" to disable traceback colors in IDLE, since IDLE doesn't understand ANSI escape sequences. (cherry picked from commit 559b0e7) Co-authored-by: Victor Stinner <[email protected]>
…types (pythonGH-128034) (python#128056) pythongh-126742: Avoid checking for library filename in test_ctypes (pythonGH-128034) Avoid checking for library filename in `dlerror()` error messages of test_ctypes. (cherry picked from commit 335e24f) Co-authored-by: Bénédikt Tran <[email protected]>
…8092) (python#128094) pythongh-122706: fix docs for asyncio ssl sockets (pythonGH-128092) (cherry picked from commit 19c5134) Co-authored-by: Kumar Aditya <[email protected]>
…sages (pythonGH-128025) (pythonGH-128059) (cherry picked from commit 2610bcc)
…flict with GitHub image's version (pythonGH-128090) (python#128096) pythongh-128069: brew link --overwrite tcl-tk@8 to prevent conflict with GitHub image's version (pythonGH-128090) brew link --overwrite tcl-tk@8 to prevent conflict with GitHub image's version (cherry picked from commit 46dc1ba) Co-authored-by: Victor Stinner <[email protected]> Co-authored-by: Hugo van Kemenade <[email protected]>
… turtledemo menu (pythonGH-128063) (python#128101) pythongh-128062: Fix the font size and shortcut display of the turtledemo menu (pythonGH-128063) Leave the font of the menu bar the default to keep it consistent with the rest of the world. Display the shortcut keys in the right way, using the 'accelerator' option. --------- (cherry picked from commit e163e8d) Co-authored-by: Zhikang Yan <[email protected]> Co-authored-by: Peter Bierma <[email protected]> Co-authored-by: Terry Jan Reedy <[email protected]>
…thonGH-127950) (python#128102) (cherry picked from commit b5d1e45) Co-authored-by: Peter Bierma <[email protected]>
…or non-module (pythonGH-128047) (python#128114) pythongh-128030: Avoid error from PyModule_GetFilenameObject for non-module (pythonGH-128047) I missed the extra `PyModule_Check` in pythonGH-127660 because I was looking at 3.12 as the base implementation for import from. This meant that I missed the `PyModuleCheck` introduced in pythonGH-112661. (cherry picked from commit 45e6dd6) Co-authored-by: Shantanu <[email protected]>
…sionError (pythonGH-128120) (python#128123) pythongh-128116: Skip test_socket VSOCK testStream() on PermissionError (pythonGH-128120) (cherry picked from commit cbfe302) Co-authored-by: Victor Stinner <[email protected]>
…of a custom ExceptionGroup split function (pythonGH-128079) (python#128139) pythongh-128049: Fix type confusion bug with the return value of a custom ExceptionGroup split function (pythonGH-128079) (cherry picked from commit 3879ca0) Co-authored-by: Nico-Posada <[email protected]>
Member
|
Error with incorrect base branch. |
Contributor
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📚 Documentation preview 📚: https://cpython-previews--130036.org.readthedocs.build/