diff options
author | Dino Viehland <dinoviehland@gmail.com> | 2019-09-14 14:20:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-14 14:20:27 (GMT) |
commit | f919054e539a5c1afde1b31c9fd7a8f5b2313311 (patch) | |
tree | a33e0c84afbaaab56ac7f3c1cd4e13b53faf4424 /Misc | |
parent | 0247e80f3c529900689425676342cb70ea31a13d (diff) | |
download | cpython-f919054e539a5c1afde1b31c9fd7a8f5b2313311.zip cpython-f919054e539a5c1afde1b31c9fd7a8f5b2313311.tar.gz cpython-f919054e539a5c1afde1b31c9fd7a8f5b2313311.tar.bz2 |
bpo-38116: Convert select module to PEP-384 (#15971)
* Convert select module to PEP-384
Summary: Do the necessary versions to be Pyro-compatible, including migrating `PyType_Ready` to `PyType_FromSpec` and moving static data into a new `_selectstate` struct.
* 📜🤖 Added by blurb_it.
* Fixup Mac OS/X build
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-09-11-14-49-42.bpo-38116.KDwmwt.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-09-11-14-49-42.bpo-38116.KDwmwt.rst b/Misc/NEWS.d/next/Core and Builtins/2019-09-11-14-49-42.bpo-38116.KDwmwt.rst new file mode 100644 index 0000000..d6d630b --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-09-11-14-49-42.bpo-38116.KDwmwt.rst @@ -0,0 +1 @@ +The select module is now PEP-384 compliant and no longer has static state
\ No newline at end of file |