diff options
author | Christian Heimes <christian@python.org> | 2020-06-22 07:41:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 07:41:48 (GMT) |
commit | 4901ea952691ad70aae21cfe04b6bd363b5a6aff (patch) | |
tree | 8706caa4e440749ec5e5973559fe7ebac5b7da44 /Misc | |
parent | d780fa7931d8ce94994827232d7cca79b0be3bf1 (diff) | |
download | cpython-4901ea952691ad70aae21cfe04b6bd363b5a6aff.zip cpython-4901ea952691ad70aae21cfe04b6bd363b5a6aff.tar.gz cpython-4901ea952691ad70aae21cfe04b6bd363b5a6aff.tar.bz2 |
bpo-41061: Fix incorrect expressions in hashtable (GH-21028)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-06-21-10-54-02.bpo-41061.AHf9MU.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-21-10-54-02.bpo-41061.AHf9MU.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-21-10-54-02.bpo-41061.AHf9MU.rst new file mode 100644 index 0000000..b5bb816 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-06-21-10-54-02.bpo-41061.AHf9MU.rst @@ -0,0 +1 @@ +Fix incorrect expressions and asserts in hashtable code and tests. |