Browse Source

Add xrange() and fix second() for Python3.

pull/307/head
William Ting 10 years ago
parent
commit
62c0877479
2 changed files with 7 additions and 2 deletions
  1. +6
    -2
      bin/autojump_utils.py
  2. +1
    -0
      tests/autojump_utils_test.py

+ 6
- 2
bin/autojump_utils.py View File

@ -172,8 +172,12 @@ def sanitize(directories):
def second(xs): def second(xs):
it = iter(xs) it = iter(xs)
try: try:
it.next()
return it.next()
if is_python2():
it.next()
return it.next()
elif is_python3():
next(it)
return next(it)
except StopIteration: except StopIteration:
return None return None

+ 1
- 0
tests/autojump_utils_test.py View File

@ -24,6 +24,7 @@ from autojump_utils import unico
if is_python3(): if is_python3():
os.getcwdu = os.getcwd os.getcwdu = os.getcwd
xrange = range
def u(string): def u(string):

Loading…
Cancel
Save