diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-01-27 11:55:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 11:55:58 (GMT) |
commit | 82bce54614f8116a40454fbbbf96a3fd460ca7df (patch) | |
tree | 0cc6b3cb4932f5400a88dea97692103c5b494f2e /Misc | |
parent | 08c0ed2d9c0d01ad1a5adc0787bc75e4e90cbb85 (diff) | |
download | cpython-82bce54614f8116a40454fbbbf96a3fd460ca7df.zip cpython-82bce54614f8116a40454fbbbf96a3fd460ca7df.tar.gz cpython-82bce54614f8116a40454fbbbf96a3fd460ca7df.tar.bz2 |
bpo-46544: Do not leak `x` and `uspace` in textwrap.TextWrapper (GH-30955)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-01-27-13-30-02.bpo-46544.oFDVWj.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-01-27-13-30-02.bpo-46544.oFDVWj.rst b/Misc/NEWS.d/next/Library/2022-01-27-13-30-02.bpo-46544.oFDVWj.rst new file mode 100644 index 0000000..63b47e5 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-01-27-13-30-02.bpo-46544.oFDVWj.rst @@ -0,0 +1,2 @@ +Don't leak ``x`` & ``uspace`` intermediate vars in +:class:`textwrap.TextWrapper`. |