René's URL Explorer Experiment


Title: gh-115999: Enable specialization of `CALL` instructions in free-threaded builds by mpage · Pull Request #127123 · python/cpython · GitHub

Open Graph Title: gh-115999: Enable specialization of `CALL` instructions in free-threaded builds by mpage · Pull Request #127123 · python/cpython

X Title: gh-115999: Enable specialization of `CALL` instructions in free-threaded builds by mpage · Pull Request #127123 · python/cpython

Description: The CALL family of instructions were mostly thread-safe already and only required a small number of changes, which are documented below. A few changes were needed to make CALL_ALLOC_AND_ENTER_INIT thread-safe: Added _PyType_LookupRefAndVersion, which returns the type version corresponding to the returned ref. Added _PyType_CacheInitForSpecialization, which takes an init method and the corresponding type version and only populates the specialization cache if the current type version matches the supplied version. This prevents potentially caching a stale value in free-threaded builds if we race with an update to __init__. Only cache __init__ functions that are deferred in free-threaded builds. This ensures that the reference to __init__ that is stored in the specialization cache is valid if the type version guard in _CHECK_AND_ALLOCATE_OBJECT passes. Fix a bug in _CREATE_INIT_FRAME where the frame is pushed to the stack on failure. A few other miscellaneous changes were also needed: Use {LOCK,UNLOCK}_OBJECT in LIST_APPEND. This ensures that the list's per-object lock is held while we are appending to it. Add missing co_tlbc for _Py_InitCleanup. Stop/start the world around setting the eval frame hook. This allows us to read interp->eval_frame non-atomically and preserves the behavior of _CHECK_PEP_523 documented below. Single-threaded performance Performance is improved by 3-4% on free-threaded builds. Performance is neutral on default builds. Scaling The scaling benchmark looks about the same for this PR vs its base: Base This PR object_cfunction 1.5x slower 1.3x slower cmodule_function 1.5x slower 1.5x slower mult_constant 12.5x faster 12.2x faster generator 12.1x faster 12.1x faster pymethod 1.8x slower 1.9x slower pyfunction 13.6x faster 14.1x faster module_function 1.7x slower 2.0x slower load_string_const 13.1x faster 13.8x faster load_tuple_const 13.0x faster 13.0x faster create_pyobject 11.7x faster 14.1x faster create_closure 13.4x faster 13.4x faster create_dict 12.7x faster 12.0x faster thread_local_read 3.6x slower 3.7x slower Thread safety Thread safety of each instruction in the CALL family is documented below, starting with the uops that are composed to form instructions in the family. UOPS The more interesting uops that warrant closer inspection are: _CHECK_AND_ALLOCATE_OBJECT This uop loads an __init__ method from the specialization cache of the operand (a type) if the operand's type version matches the type version stored in the inline cache. The loaded method is guaranteed to be valid because we only store deferred objects in the specialization cache and there are no escaping calls following the load: The type version is cleared before the reference in the MRO to __init__ is destroyed. If the reference in (1) was the last reference then the __init__ method will be queued for deletion the next time GC runs. GC requires stopping the world, which forces a synchronizes-with operation between all threads. If the GC collects the cached __init__, then type's version will have been updated and the update will be visible to all threads, so the guard cannot pass. _CHECK_FUNCTION_VERSION This uop guards that the top of the stack is a function and that its version matches the version stored in the inline cache. Instructions assume that if the guard passes, the version, and any properties verified by the version, will not change for the remainder of the instruction execution, assuming there are no escaping calls in between the guard and the code that relies on the guard. This property is preserved in free-threaded builds: the world is stopped whenever a function's version changes. _CHECK_PEP_523 This uop guards that a custom eval frame function is not in use. Instructions assume that if the guard passes, an eval frame function will not be set for the remainder of the instruction's execution, assuming there are no escaping calls in between the guard and code that relies on the guard passing. This property is preserved in free-threaded builds: the world is stopped whenever the eval frame function is set. The instructions are also composed of uops whose thread safety properties are easier to reason about and require less scrutiny. These are: _CALL_NON_PY_GENERAL - Uses existing thread-safe APIs. _CHECK_CALL_BOUND_METHOD_EXACT_ARGS - Only performs exact type checks, which are thread-safe: changing an instance's type stops the world. _CHECK_FUNCTION_EXACT_ARGS - All the loads in the uop are safe to perform non-atomically: setting func->func_code stops the world, the co_argcount attribute of code objects is immutable. _CHECK_IS_NOT_PY_CALLABLE - Only performs exact type checks. _CHECK_METHOD_VERSION - This loads a function from a PyMethodObject and guards that its version matches what is stored in the cache. PyMethodObjects are immutable; their fields can be accessed non-atomically. The thread safety of function version guards was already documented above. _CHECK_PERIODIC - Thread safety was previously addressed as part of the 3.13 release. _CHECK_STACK_SPACE - All the loads in this uop are safe to perform non-atomically: setting func->func_code stops the world, the co_framesize attribute of code objects is immutable, and tstate->py_recursion_remaining should only be mutated by the current thread. _CREATE_INIT_FRAME - Uses existing thread-safe APIs. _EXPAND_METHOD - Only loads from PyMethodObjects. _INIT_CALL_BOUND_METHOD_EXACT_ARGS - Only loads from PyMethodObjects. _INIT_CALL_PY_EXACT_ARGS - Only operates on data that isn't yet visible to other threads. _PUSH_FRAME - Only manipulates tstate->current_frame and fields that are not read by other threads. _PY_FRAME_GENERAL - Reads from fields that are either immutable (co_flags) or requires stopping the world to change (func_code). _SAVE_RETURN_OFFSET - Stores only to the frame's return_offset which is not read by other threads. Instructions These instructions perform exact type checks and loads from immutable fields of PyCFunction objects: CALL_BUILTIN_FAST CALL_BUILTIN_FAST_WITH_KEYWORDS CALL_BUILTIN_O These instructions perform exact type checks and loads from immutable fields of PyMethodDescrObjects: CALL_METHOD_DESCRIPTOR_FAST CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS CALL_METHOD_DESCRIPTOR_NOARGS CALL_METHOD_DESCRIPTOR_O These instructions are composed of the uops documented above, and are thread-safe transitively: CALL_ALLOC_AND_ENTER_INIT CALL_BOUND_METHOD_EXACT_ARGS CALL_BOUND_METHOD_GENERAL CALL_NON_PY_GENERAL CALL_PY_EXACT_ARGS CALL_PY_GENERAL These instructions load from the callable cache, which is immutable, perform exact type checks, and use existing thread-safe APIs: CALL_ISINSTANCE CALL_LEN CALL_LIST_APPEND These instructions use existing thread-safe APIs: CALL_STR_1 CALL_TUPLE_1 CALL_TYPE_1 Finally, these instructions don't categorize neatly: CALL_BUILTIN_CLASS - Performs exact type checks and loads from immutable types. Specialization Apart from the changes discussed earlier, specialization is already thread-safe. It inspects immutable properties (i.e. those of code objects, method descriptors, or PyCFunctions) or properties that require stopping the world to mutate (i.e. properties checked by function version guards). Issue: gh-115999

Open Graph Description: The CALL family of instructions were mostly thread-safe already and only required a small number of changes, which are documented below. A few changes were needed to make CALL_ALLOC_AND_ENTER_INIT ...

X Description: The CALL family of instructions were mostly thread-safe already and only required a small number of changes, which are documented below. A few changes were needed to make CALL_ALLOC_AND_ENTER_INIT ...

Opengraph URL: https://github.com/python/cpython/pull/127123

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:3225ae85-b006-6039-12e9-e3c5f510ff50
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idB726:2CEF6D:2D28C87:40F663A:6A5675BF
html-safe-nonce4c5e1caa3065b1948be837eac0ebbae80e6d820a5308e54a39ad04d5ed7d1524
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNzI2OjJDRUY2RDoyRDI4Qzg3OjQwRjY2M0E6NkE1Njc1QkYiLCJ2aXNpdG9yX2lkIjoiMjgwNDA5NTM2Mzc3ODUwODIyMyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac6ea5eceea77b00c8ae470eda16b3b0b91c65e844631f11de07d7dd381547350e
hovercard-subject-tagpull_request:2193511193
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/python/cpython/pull/127123/files
twitter:imagehttps://avatars.githubusercontent.com/u/577841?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/577841?s=400&v=4
og:image:altThe CALL family of instructions were mostly thread-safe already and only required a small number of changes, which are documented below. A few changes were needed to make CALL_ALLOC_AND_ENTER_INIT ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None19b5ee9431dcfce15ab4b001d626e4e3a6ba1acb7be814813a52bbebd9a86ef5
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseafc01ffdb045f4ff81c6122091366ade7b6166b7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/127123/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F127123%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F127123%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/pull/127123/files
Reloadhttps://github.com/python/cpython/pull/127123/files
Reloadhttps://github.com/python/cpython/pull/127123/files
Please reload this pagehttps://github.com/python/cpython/pull/127123/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/127123/files
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 35k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.8k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.3k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality 0 https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
mpagehttps://github.com/mpage
python:mainhttps://github.com/python/cpython/tree/main
mpage:gh-115999-tlbc-callhttps://github.com/mpage/cpython/tree/gh-115999-tlbc-call
Conversation 13 https://github.com/python/cpython/pull/127123
Commits 29 https://github.com/python/cpython/pull/127123/commits
Checks 0 https://github.com/python/cpython/pull/127123/checks
Files changed https://github.com/python/cpython/pull/127123/files
Please reload this pagehttps://github.com/python/cpython/pull/127123/files
gh-115999: Enable specialization of CALL instructions in free-threaded builds https://github.com/python/cpython/pull/127123/files#top
Show all changes 29 commits https://github.com/python/cpython/pull/127123/files
6d9b6a2 Refactor specialize_c_call to use helpers mpage Oct 16, 2024 https://github.com/python/cpython/pull/127123/commits/6d9b6a21f3aaa8fe0b7e83b5c7283b32cfb873d7
30e25d2 Refactor specialize_py_call to use helpers mpage Oct 16, 2024 https://github.com/python/cpython/pull/127123/commits/30e25d22717d223dbd149ef1fa77d0ad4159dcf6
92160de Refactor specialize_class_call to use helpers mpage Oct 16, 2024 https://github.com/python/cpython/pull/127123/commits/92160decedd2395ed0fadd41aea9447df1681687
4754921 Refactor specialize_method_descriptor to use helpers mpage Oct 16, 2024 https://github.com/python/cpython/pull/127123/commits/475492108153ebab1244422615ddd8a7b56bbc85
6a20bb0 Remove unneeded code mpage Oct 16, 2024 https://github.com/python/cpython/pull/127123/commits/6a20bb0f918876dc1d8933979bda0351e31ca673
ea7206d Enable almost all specializations of CALL mpage Oct 17, 2024 https://github.com/python/cpython/pull/127123/commits/ea7206d6ba50f5529835195a754681ad0e33bee7
d5375f1 Regen files mpage Oct 18, 2024 https://github.com/python/cpython/pull/127123/commits/d5375f1780ccea968288328d71ecc275fc45650a
a2ca192 Fix implementation of CALL_LIST_APPEND in free-threaded builds mpage Oct 18, 2024 https://github.com/python/cpython/pull/127123/commits/a2ca19258086d17fbf0f19abb8aba8584e0570ab
2ab08f2 Regenerate interpreter and friends mpage Oct 18, 2024 https://github.com/python/cpython/pull/127123/commits/2ab08f2a4f1aca2849c0b8f563bd05db8a904d42
3534246 Refactor PyType_LookupRef to return version mpage Oct 22, 2024 https://github.com/python/cpython/pull/127123/commits/353424671a3af039a8c32eff0a2c0bcf1008ea02
acda1c6 Make CALL_ALLOC_AND_ENTER_INIT thread-safe mpage Oct 24, 2024 https://github.com/python/cpython/pull/127123/commits/acda1c6bb06e3dde08748c8d9ea2877802fdb42f
fdfa678 Regenerate files mpage Oct 24, 2024 https://github.com/python/cpython/pull/127123/commits/fdfa678008bfc1b27a61549dc22b97c5a4094709
ad2e15c Stop the world around assignments to `tstate->eval_frame` mpage Nov 19, 2024 https://github.com/python/cpython/pull/127123/commits/ad2e15ce5c91d40ff52e071eb6481b47495b5137
0003d00 Document restriction on _Py_InitCleanup bytecode mpage Nov 20, 2024 https://github.com/python/cpython/pull/127123/commits/0003d00e1bd1865aaef7ef0240510e6e8bf0acaa
8ebd331 Undo refactor mpage Nov 20, 2024 https://github.com/python/cpython/pull/127123/commits/8ebd3316e0da461d17e11dfff188b6dd87849e9b
4c1ad6c Undo workaround for now-fixed cases_generator bug mpage Nov 20, 2024 https://github.com/python/cpython/pull/127123/commits/4c1ad6c08a6fb867c1bd1389e4b5c452592d5f5e
57ba52d Document _PyType_CacheInitForSpecialization mpage Nov 21, 2024 https://github.com/python/cpython/pull/127123/commits/57ba52dabcfa3c23c24c9e525ada546ce8bd99ca
8ebd73d Remove unused define mpage Nov 21, 2024 https://github.com/python/cpython/pull/127123/commits/8ebd73db82ea765bc483354025d22c48fdfb7db8
8651ebe Enable tests mpage Nov 21, 2024 https://github.com/python/cpython/pull/127123/commits/8651ebea93e35bc17877ee908cfb0a0c975f41a4
4c7837f Fix warning about unused function on macos mpage Nov 22, 2024 https://github.com/python/cpython/pull/127123/commits/4c7837f383582b03abbe67cd3b8b10450818ed70
4b0a850 Merge branch 'main' into gh-115999-tlbc-call mpage Nov 25, 2024 https://github.com/python/cpython/pull/127123/commits/4b0a8502b7dbc7cfdacacd5d75fc52b2b5e095c8
d8a67c2 Tag workarounds for not deferring nested functions on classes with gh… mpage Nov 25, 2024 https://github.com/python/cpython/pull/127123/commits/d8a67c2ce2cccd6b133bff270e2e18bf5a75bccd
3e8d85e Use `_PyInterpreterState_SetEvalFrameFunc` when setting / clearing pe… mpage Nov 25, 2024 https://github.com/python/cpython/pull/127123/commits/3e8d85e9a7903796f8ebd0ba08139c4f3f3bb786
de0e2ee Fix issue with `_CREATE_INIT_FRAME` mpage Nov 26, 2024 https://github.com/python/cpython/pull/127123/commits/de0e2ee20f501bdfbd57613981985e011c4e23bd
1cb6260 Merge branch 'main' into gh-115999-tlbc-call mpage Dec 3, 2024 https://github.com/python/cpython/pull/127123/commits/1cb626030d4d5ee67bd3352f8c6a2b959f3ae51d
b3aa63c Use release/acquire for the specialization cache mpage Dec 3, 2024 https://github.com/python/cpython/pull/127123/commits/b3aa63cd24181b73eb03b1af3346b59f52ff997f
6b591c3 Use locking macros instead of helper function mpage Dec 3, 2024 https://github.com/python/cpython/pull/127123/commits/6b591c321087c1a567da841fd376feecc1e989e3
a5fdc59 Merge branch 'main' into gh-115999-tlbc-call mpage Dec 3, 2024 https://github.com/python/cpython/pull/127123/commits/a5fdc59757786314bb42be9852ee091893c48b6f
bc65932 Merge branch 'main' into gh-115999-tlbc-call mpage Dec 3, 2024 https://github.com/python/cpython/pull/127123/commits/bc65932d65f8940788e298554070d78cae7bf2e6
Clear filters https://github.com/python/cpython/pull/127123/files
Please reload this pagehttps://github.com/python/cpython/pull/127123/files
Please reload this pagehttps://github.com/python/cpython/pull/127123/files
pycore_object.h https://github.com/python/cpython/pull/127123/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
test_monitoring.py https://github.com/python/cpython/pull/127123/files#diff-15fb0cb29709c04c449bacd69e4ab2208372424d8390c26258eb83b2363c3cf1
test_opcache.py https://github.com/python/cpython/pull/127123/files#diff-dd88a1417bab2a9400460e629e7e43a3f6e798e47b44fe3541f3f804f12430d1
test_type_cache.py https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
typeobject.c https://github.com/python/cpython/pull/127123/files#diff-1decebeef15f4e0b0ce106c665751ec55068d4d1d1825847925ad4f528b5b872
bytecodes.c https://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
executor_cases.c.h https://github.com/python/cpython/pull/127123/files#diff-a1c3430c42a66c16e6d2e154491a6da993b187b27c628545a12a02c7b2a06b81
generated_cases.c.h https://github.com/python/cpython/pull/127123/files#diff-4ef46fa654f95502e49a24f7dc8ee31a4cac9b3433fe9cd2b2d4dd78cfbad448
perf_trampoline.c https://github.com/python/cpython/pull/127123/files#diff-595f02bdb580bcd4bdab264893766c4641ec405ed498329e60c14b905bf8696c
pystate.c https://github.com/python/cpython/pull/127123/files#diff-7ac11e526f79b42d6ea9d3592cb99da46775640c69fa5510f4a6de87cced7141
specialize.c https://github.com/python/cpython/pull/127123/files#diff-22e653d878778ca28317261f7826545288d02fd9980cf485d0329f28a34993f2
Include/internal/pycore_object.hhttps://github.com/python/cpython/pull/127123/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
View file https://github.com/mpage/cpython/blob/bc65932d65f8940788e298554070d78cae7bf2e6/Include/internal/pycore_object.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/127123/{{ revealButtonHref }}
https://github.com/python/cpython/pull/127123/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
https://github.com/python/cpython/pull/127123/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
Lib/test/test_monitoring.pyhttps://github.com/python/cpython/pull/127123/files#diff-15fb0cb29709c04c449bacd69e4ab2208372424d8390c26258eb83b2363c3cf1
View file https://github.com/mpage/cpython/blob/bc65932d65f8940788e298554070d78cae7bf2e6/Lib/test/test_monitoring.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/127123/{{ revealButtonHref }}
https://github.com/python/cpython/pull/127123/files#diff-15fb0cb29709c04c449bacd69e4ab2208372424d8390c26258eb83b2363c3cf1
https://github.com/python/cpython/pull/127123/files#diff-15fb0cb29709c04c449bacd69e4ab2208372424d8390c26258eb83b2363c3cf1
https://github.com/python/cpython/pull/127123/files#diff-15fb0cb29709c04c449bacd69e4ab2208372424d8390c26258eb83b2363c3cf1
https://github.com/python/cpython/pull/127123/files#diff-15fb0cb29709c04c449bacd69e4ab2208372424d8390c26258eb83b2363c3cf1
https://github.com/python/cpython/pull/127123/files#diff-15fb0cb29709c04c449bacd69e4ab2208372424d8390c26258eb83b2363c3cf1
https://github.com/python/cpython/pull/127123/files#diff-15fb0cb29709c04c449bacd69e4ab2208372424d8390c26258eb83b2363c3cf1
Lib/test/test_opcache.pyhttps://github.com/python/cpython/pull/127123/files#diff-dd88a1417bab2a9400460e629e7e43a3f6e798e47b44fe3541f3f804f12430d1
View file https://github.com/mpage/cpython/blob/bc65932d65f8940788e298554070d78cae7bf2e6/Lib/test/test_opcache.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/127123/{{ revealButtonHref }}
https://github.com/python/cpython/pull/127123/files#diff-dd88a1417bab2a9400460e629e7e43a3f6e798e47b44fe3541f3f804f12430d1
https://github.com/python/cpython/pull/127123/files#diff-dd88a1417bab2a9400460e629e7e43a3f6e798e47b44fe3541f3f804f12430d1
https://github.com/python/cpython/pull/127123/files#diff-dd88a1417bab2a9400460e629e7e43a3f6e798e47b44fe3541f3f804f12430d1
https://github.com/python/cpython/pull/127123/files#diff-dd88a1417bab2a9400460e629e7e43a3f6e798e47b44fe3541f3f804f12430d1
https://github.com/python/cpython/pull/127123/files#diff-dd88a1417bab2a9400460e629e7e43a3f6e798e47b44fe3541f3f804f12430d1
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L358
Lib/test/test_type_cache.pyhttps://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
View file https://github.com/mpage/cpython/blob/bc65932d65f8940788e298554070d78cae7bf2e6/Lib/test/test_type_cache.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/127123/{{ revealButtonHref }}
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/pull/127123/files#diff-a3dd5f83ab44b6a58a2a706b7ce8a9e520b910b89d1407c9769b22f495b53175
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L220
Objects/typeobject.chttps://github.com/python/cpython/pull/127123/files#diff-1decebeef15f4e0b0ce106c665751ec55068d4d1d1825847925ad4f528b5b872
View file https://github.com/mpage/cpython/blob/bc65932d65f8940788e298554070d78cae7bf2e6/Objects/typeobject.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/127123/{{ revealButtonHref }}
https://github.com/python/cpython/pull/127123/files#diff-1decebeef15f4e0b0ce106c665751ec55068d4d1d1825847925ad4f528b5b872
https://github.com/python/cpython/pull/127123/files#diff-1decebeef15f4e0b0ce106c665751ec55068d4d1d1825847925ad4f528b5b872
https://github.com/python/cpython/pull/127123/files#diff-1decebeef15f4e0b0ce106c665751ec55068d4d1d1825847925ad4f528b5b872
https://github.com/python/cpython/pull/127123/files#diff-1decebeef15f4e0b0ce106c665751ec55068d4d1d1825847925ad4f528b5b872
https://github.com/python/cpython/pull/127123/files#diff-1decebeef15f4e0b0ce106c665751ec55068d4d1d1825847925ad4f528b5b872
https://github.com/python/cpython/pull/127123/files#diff-1decebeef15f4e0b0ce106c665751ec55068d4d1d1825847925ad4f528b5b872
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L225
Python/bytecodes.chttps://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
View file https://github.com/mpage/cpython/blob/bc65932d65f8940788e298554070d78cae7bf2e6/Python/bytecodes.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/127123/{{ revealButtonHref }}
https://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
https://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
https://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
https://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
https://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
https://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
https://github.com/python/cpython/pull/127123/files#diff-729a985b0cb8b431cb291f1edb561bbbfea22e3f8c262451cd83328a0936a342
Please reload this pagehttps://github.com/python/cpython/pull/127123/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.