aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2021-02-04 15:52:16 -0800
committerGitHub <noreply@github.com>2021-02-04 15:52:16 -0800
commitb6d68aa08baebb753534a26d537ac3c0d2c21c79 (patch)
tree8678fd8056357e83a28a44dda92f857a01aa8ec9 /Misc
parentbpo-42882: Fix MSVC warnings in pystate.c (GH-24440) (diff)
downloadcpython-b6d68aa08baebb753534a26d537ac3c0d2c21c79.tar.gz
cpython-b6d68aa08baebb753534a26d537ac3c0d2c21c79.tar.bz2
cpython-b6d68aa08baebb753534a26d537ac3c0d2c21c79.zip
bpo-43102: Set namedtuple __new__'s internal builtins to a dict. (GH-24439)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-02-03-22-55-27.bpo-43102.TSlZ6J.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-03-22-55-27.bpo-43102.TSlZ6J.rst b/Misc/NEWS.d/next/Library/2021-02-03-22-55-27.bpo-43102.TSlZ6J.rst
new file mode 100644
index 00000000000..985fd68a03a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-02-03-22-55-27.bpo-43102.TSlZ6J.rst
@@ -0,0 +1,2 @@
+The namedtuple __new__ method had its __builtins__ set to None instead
+of an actual dictionary. This created problems for introspection tools.