1
0
forked from VimPlug/jedi

py3k/py2.5 compatibility, and a bugfix

This commit is contained in:
David Halter
2012-12-16 04:03:46 +01:00
parent 36b75c3e15
commit 5f76ffdfe8
2 changed files with 7 additions and 3 deletions

View File

@@ -167,3 +167,8 @@ if is_py25:
yield element
itertools.chain = chain
del chain
try:
from functools import reduce
except ImportError:
reduce = reduce