diff options
author | Dino Viehland <dinoviehland@gmail.com> | 2019-09-10 11:01:20 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-10 11:01:20 (GMT) |
commit | 5a7d2e11aaea2dd32878dc5c6b1aae8caf56cb44 (patch) | |
tree | bcd95470db543aa444c7ad8c855372b2eef10eb8 /Misc | |
parent | 537877d85d1c27d2c2f5189e39da64a7a0c413d3 (diff) | |
download | cpython-5a7d2e11aaea2dd32878dc5c6b1aae8caf56cb44.zip cpython-5a7d2e11aaea2dd32878dc5c6b1aae8caf56cb44.tar.gz cpython-5a7d2e11aaea2dd32878dc5c6b1aae8caf56cb44.tar.bz2 |
bpo-38069: Convert _posixsubprocess to PEP-384 (GH-15780)
Summary:
Eliminate uses of `_Py_IDENTIFIER` from `_posixsubprocess`, replacing them with interned strings.
Also tries to find an existing version of the module, which will allow subinterpreters.
https://bugs.python.org/issue38069
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-09-09-14-46-05.bpo-38069.cn8XLv.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-09-09-14-46-05.bpo-38069.cn8XLv.rst b/Misc/NEWS.d/next/Core and Builtins/2019-09-09-14-46-05.bpo-38069.cn8XLv.rst new file mode 100644 index 0000000..6bfe7a7 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-09-09-14-46-05.bpo-38069.cn8XLv.rst @@ -0,0 +1 @@ +Make _posixsubprocess PEP-384 compatible
\ No newline at end of file |