8000 OrderedDict: restore compat with Py2.6 · thecodingchicken/python-future@47c57e2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 47c57e2

Browse files
committed
OrderedDict: restore compat with Py2.6
1 parent 7606626 commit 47c57e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/future/backports/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ def clear(self):
676676
self.maps[0].clear()
677677

678678

679-
if sys.version_info <= (2, 6):
679+
if sys.version_info < (2, 7):
680680
OrderedDict = _OrderedDict
681681
Counter = _Counter
682682
check_output = _check_output

0 commit comments

Comments
 (0)
0