We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6285503 commit 1ce5c98Copy full SHA for 1ce5c98
docs/whatsnew.rst
@@ -10,6 +10,9 @@ What's new in version 0.12.3
10
- Add "official Python 3.4 support": Py3.4 is now listed among the PyPI Trove
11
classifiers and the tests now run successfully on Py3.4 (issue #67).
12
13
+- Add backports of ``collections.OrderedDict`` and
14
+ ``collections.Counter`` for Python 2.6.
15
+
16
- Add ``--version`` option for ``futurize`` and ``pasteurize`` scripts
17
(issue #57).
18
future/standard_library/__init__.py
@@ -517,9 +517,6 @@ def install_aliases():
517
__import__(oldmodname)
518
oldmod = sys.modules[oldmodname]
519
520
- import pdb
521
- pdb.set_trace()
522
-
523
obj = getattr(oldmod, oldobjname)
524
setattr(newmod, newobjname, obj)
525
0 commit comments