Uh oh!
There was an error while loading. Please reload this page.
gh-104265 Disallow instantiation of _csv.Reader and _csv.Writer - #104266
gh-104265 Disallow instantiation of _csv.Reader and _csv.Writer#104266erlend-aasland merged 13 commits into
_csv.Reader and _csv.Writer#104266Conversation
…r` types Set `Py_TPFLAGS_DISALLOW_INSTANTIATION` and unset `Py_TPFLAGS_BASETYPE` flags on `Reader` and `Writer` types to prevent their instantiation and subtyping
_csv.Reader and _csv.Writer_csv.Reader and _csv.Writererlend-aasland
commented
May 7, 2023
Thanks! This needs a NEWS entry, preferrably with a reference to when the bug was introduced. I think this should be backported through to 3.10. |
erlend-aasland
commented
May 7, 2023
Also, please add tests. There's a dedicated test.support helper for this. Grep through the code base to find it and see how it's used. |
@erlend-aasland, are you talking about |
erlend-aasland
commented
May 7, 2023
There's a disallow_instantiation helper in test.support. |
erlend-aasland
commented
May 7, 2023
Ah, 3.10 is in security fix mode, so we can only backport to 3.11. |
erlend-aasland
commented
May 7, 2023
Some history, the original issue for applying PEP-384 to the _csv extension module:
A later (duplicate issue); the linked PRs were closed and incorporated into gh-23224
As you can see, both the Writer and the Reader class had |
_csv.Reader and _csv.Writer_csv.Reader and _csv.Writerbedevere-bot
commented
May 7, 2023
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
chgnrdv
commented
May 7, 2023
erlend-aasland
commented
May 7, 2023
Indeed it did. You can reference GitHub issues/PRs with the |
chgnrdv
commented
May 7, 2023
I have made the requested changes; please review again |
bedevere-bot
commented
May 7, 2023
Thanks for making the requested changes! @erlend-aasland: please review the changes made to this pull request. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
…ub.com:chgnrdv/cpython into _csv-make-Reader-Writer-types-non-instantiable
erlend-aasland
commented
May 7, 2023
Thank you so much for the report and bugfix, Radislav; good job! |
miss-islington
commented
May 7, 2023
Thanks @chgnrdv for the PR, and @erlend-aasland for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11. |
bedevere-bot
commented
May 7, 2023
GH-104278 is a backport of this pull request to the 3.11 branch. |
…ter` (pythonGH-104266) (cherry picked from commit 06c2a48) Co-authored-by: chgnrdv <52372310+chgnrdv@users.noreply.github.com>
chgnrdv
commented
May 7, 2023
@erlend-aasland, thank you for your patient review :) |
* main: (47 commits) pythongh-97696 Remove unnecessary check for eager_start kwarg (python#104188) pythonGH-104308: socket.getnameinfo should release the GIL (python#104307) pythongh-104310: Add importlib.util.allowing_all_extensions() (pythongh-104311) pythongh-99113: A Per-Interpreter GIL! (pythongh-104210) pythonGH-104284: Fix documentation gettext build (python#104296) pythongh-89550: Buffer GzipFile.write to reduce execution time by ~15% (python#101251) pythongh-104223: Fix issues with inheriting from buffer classes (python#104227) pythongh-99108: fix typo in Modules/Setup (python#104293) pythonGH-104145: Use fully-qualified cross reference types for the bisect module (python#104172) pythongh-103193: Improve `getattr_static` test coverage (python#104286) Trim trailing whitespace and test on CI (python#104275) pythongh-102500: Remove mention of bytes shorthand (python#104281) pythongh-97696: Improve and fix documentation for asyncio eager tasks (python#104256) pythongh-99108: Replace SHA3 implementation HACL* version (python#103597) pythongh-104273: Remove redundant len() calls in argparse function (python#104274) pythongh-64660: Don't hardcode Argument Clinic return converter result variable name (python#104200) pythongh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (python#104266) pythonGH-102613: Improve performance of `pathlib.Path.rglob()` (pythonGH-104244) pythongh-103650: Fix perf maps address format (python#103651) pythonGH-89812: Churn `pathlib.Path` methods (pythonGH-104243) ...
Fixes#104265
Set
Py_TPFLAGS_DISALLOW_INSTANTIATIONand unsetPy_TPFLAGS_BASETYPEflags onReaderandWritertypes to prevent their instantiation and subtyping_csvReaderandWritertypes shouldn't be directly instantiable #104265