-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
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
bpo-1635741: Port _datetime extension module to multiphase initialization (PEP 489) #30522
Conversation
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept this contribution by verifying everyone involved has signed the PSF contributor agreement (CLA). CLA MissingOur records indicate the following people have not signed the CLA: For legal reasons we need all the people listed to sign the CLA before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. If you have recently signed the CLA, please wait at least one business day You can check yourself to see if the CLA has been received. Thanks again for the contribution, we look forward to reviewing it! |
@CharlieZhao95 Thanks for your contirbute. You can use |
Thank you for your interest in improving CPython! :) |
Thanks for your reply :) Indeed, it is better to convert global state to module state first. I will work on issue https://bugs.python.org/issue40077 (convert static types to heap types) and fix reference leak promblem caused by static types in this PR later. |
Sounds good. But the steps needed should be approximately like this:
IMO, this process should be spread out over several PRs, to make it easier to review. (I try to keep the diffs of my PRs below 200 lines of code.) It is IMO of importance that all of this happens in the course of a single alpha development phase. You cannot use a beta phase for changes like this. 3.11 beta starts in about 4 months time from now, IIRC. I suggest you take a shot at it on your own fork, so you'll be ready for when the SC has approved we can continue with these changes 😃 |
Oh, thanks for signing the CLA! 🚀 😃 |
Port _datetime extension module to multiphase initialization
https://bugs.python.org/issue1635741