summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorLiarPrincess <michal.matuszczyk@me.com>2022-09-28 13:57:14 (GMT)
committerGitHub <noreply@github.com>2022-09-28 13:57:14 (GMT)
commit0c1d7a06ed1a1802dbe8823d12b29c9500df0fcb (patch)
tree90467a3b1f6e244926d9d30e8d3582675f6fb2e1 /Misc/NEWS.d/next
parent5c110d112600b679b4cf41b11d2b73653da60555 (diff)
downloadcpython-0c1d7a06ed1a1802dbe8823d12b29c9500df0fcb.zip
cpython-0c1d7a06ed1a1802dbe8823d12b29c9500df0fcb.tar.gz
cpython-0c1d7a06ed1a1802dbe8823d12b29c9500df0fcb.tar.bz2
bpo-47243: Duplicate entry in 'Objects/unicodetype_db.h' (GH-32376)
Fix for duplicate 1st entry in 'Objects/unicodetype_db.h': ```c /* a list of unique character type descriptors */ const _PyUnicode_TypeRecord _PyUnicode_TypeRecords[] = { {0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0}, <--- HERE {0, 0, 0, 0, 0, 32}, {0, 0, 0, 0, 0, 48}, … ``` https://bugs.python.org/issue47243 Automerge-Triggered-By: GH:isidentical
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-04-16-15-37-55.gh-issue-91399.trLbK6.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-04-16-15-37-55.gh-issue-91399.trLbK6.rst b/Misc/NEWS.d/next/Core and Builtins/2022-04-16-15-37-55.gh-issue-91399.trLbK6.rst
new file mode 100644
index 0000000..d1e6c09
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-04-16-15-37-55.gh-issue-91399.trLbK6.rst
@@ -0,0 +1 @@
+Removed duplicate '{0, 0, 0, 0, 0, 0}' entry in 'Objects/unicodetype_db.h'.