-
-
Notifications
You must be signed in to change notification settings - Fork 32k
gh-92210: Port of Cinder's socket.__init__ which uses argument clinic. #92237
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
Conversation
Misc/NEWS.d/next/Library/2022-05-03-15-55-04.gh-issue-92210.L3xp33.rst
Outdated
Show resolved
Hide resolved
Please use |
@@ -0,0 +1 @@ | |||
Port of Cinder's ``socket.__init__`` which uses argument clinic cpython. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
git rm "Misc/NEWS.d/next/Library/2022-05-03-17-29-04.gh-issue-92210.csDOQM.rst"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(There are still two NEWS entries; the newest you added is better than this one.)
Co-authored-by: Erlend Egeberg Aasland <[email protected]>
Misc/NEWS.d/next/Library/2022-05-03-17-33-46.gh-issue-92210.csDOQM.rst
Outdated
Show resolved
Hide resolved
Co-authored-by: Erlend Egeberg Aasland <[email protected]>
@ambv, can you kick the CI? |
I'm not ambv but I kicked it. I'll take a look now and probably merge. |
Summary: Original Diff: D23323432 by vladima, reviewed by carljm This makes arg parsing somewhat faster. This was already merged upstream in python/cpython#92237 We are leaving out the argclinic use in `lru_cache.__new__` for 3.10; this was rejected upstream and should not be hot enough to matter. Reviewed By: itamaro Differential Revision: D37555740 fbshipit-source-id: 895ebb0
gh-92210: Port of Cinder's socket.init which uses argument clinic.