summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-05 18:29:34 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-02-05 18:29:34 (GMT)
commit6ee0480521901d3e84769d1590603f89efd456a4 (patch)
tree9ecc2d6febd0422f8ea6018c7625a02c7b636f60 /Misc
parent5c4ded2c3b59aa134b82ab17cdfe7ab633194ca6 (diff)
downloadcpython-6ee0480521901d3e84769d1590603f89efd456a4.zip
cpython-6ee0480521901d3e84769d1590603f89efd456a4.tar.gz
cpython-6ee0480521901d3e84769d1590603f89efd456a4.tar.bz2
[680789] Debug with long array takes forever
Added array.array to the types repr.py knows about, after a suggestion from Jurjen N.E. Bos.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 67e84df..25cbe69 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -145,6 +145,9 @@ Extension modules
Library
-------
+- array.array was added to the types repr.py knows about (see
+ <http://www.python.org/sf/680789>).
+
- The new pickletools.py contains lots of documentation about pickle
internals, and supplies some helpers for working with pickles, such as
a symbolic pickle disassembler.