mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Implement compact dict
Issue #27350: `dict` implementation is changed like PyPy. It is more compact and preserves insertion order. _PyDict_Dummy() function has been removed. Disable test_gdb: python-gdb.py is not updated yet to the new structure of compact dictionaries (issue #28023). Patch written by INADA Naoki.
This commit is contained in:
parent
d8b7770a0e
commit
742da040db
12 changed files with 793 additions and 569 deletions
|
@ -11,6 +11,9 @@ import sysconfig
|
|||
import unittest
|
||||
import locale
|
||||
|
||||
# FIXME: issue #28023
|
||||
raise unittest.SkipTest("FIXME: issue #28023, compact dict (issue #27350) broke python-gdb.py")
|
||||
|
||||
# Is this Python configured to support threads?
|
||||
try:
|
||||
import _thread
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue