Skip to content

Commit 1ce5c98

Browse files
committed
Add What's New entry for OrderedDict and Counter backports to Py2.6
1 parent 6285503 commit 1ce5c98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/whatsnew.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ What's new in version 0.12.3
1010
- Add "official Python 3.4 support": Py3.4 is now listed among the PyPI Trove
1111
classifiers and the tests now run successfully on Py3.4 (issue #67).
1212

13+
- Add backports of ``collections.OrderedDict`` and
14+
``collections.Counter`` for Python 2.6.
15+
1316
- Add ``--version`` option for ``futurize`` and ``pasteurize`` scripts
1417
(issue #57).
1518

future/standard_library/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -517,9 +517,6 @@ def install_aliases():
517517
__import__(oldmodname)
518518
oldmod = sys.modules[oldmodname]
519519

520-
import pdb
521-
pdb.set_trace()
522-
523520
obj = getattr(oldmod, oldobjname)
524521
setattr(newmod, newobjname, obj)
525522

0 commit comments

Comments
 (0)