8000 gh-115754: Get singletons via function calls by vstinner · Pull Request #116572 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-115754: Get singletons via function calls #116572

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
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix the stable ABI
  • Loading branch information
vstinner committed Mar 11, 2024
commit 060283f67f7d5511e26c1dd7d4dcbf2c9e3ab3e3
5 changes: 5 additions & 0 deletions Lib/test/test_stable_abi_ctypes.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions Misc/stable_abi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2496,13 +2496,18 @@
[typedef.PyCFunctionFastWithKeywords]
added = '3.13'
# "abi-only" since 3.10. (Same story as PyCFunctionFast.)
[typedef._Py_GetNone]
[function._Py_GetNone]
added = '3.13'
[typedef._Py_GetFalse]
abi_only = true
[function._Py_GetFalse]
added = '3.13'
[typedef._Py_GetTrue]
abi_only = true
[function._Py_GetTrue]
added = '3.13'
[typedef._Py_GetEllipsis]
abi_only = true
[function._Py_GetEllipsis]
added = '3.13'
[typedef._Py_GetNotImplemented]
abi_only = true
[function._Py_GetNotImplemented]
added = '3.13'
abi_only = true
5 changes: 5 additions & 0 deletions PC/python3dll.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0