Fix compatibility with Python 2.5.

Emulate next(b, None) through  for loop with single round.
There wasn't print_function, while it really doesn't needed.
This commit is contained in:
Alexander Shorin
2012-09-12 08:34:45 +04:00
parent a2c3bc2de1
commit aef6313b04
2 changed files with 7 additions and 6 deletions

View File

@@ -217,5 +217,6 @@ class JsonPointer(object):
def pairwise(iterable):
"s -> (s0,s1), (s1,s2), (s2, s3), ..."
a, b = tee(iterable)
next(b, None)
for _ in b:
break
return izip(a, b)

View File

@@ -1,7 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import doctest
import unittest
import sys
@@ -73,7 +72,8 @@ if coverage is not None:
coverage.erase()
if coverage is None:
print("""
No coverage reporting done (Python module "coverage" is missing)
Please install the python-coverage package to get coverage reporting.
""", file=sys.stderr)
sys.stderr.write("""
No coverage reporting done (Python module "coverage" is missing)
Please install the python-coverage package to get coverage reporting.
""")
sys.stderr.flush()