Explorar el Código

Implement next() for Python 2.5

Matthew Wang hace 11 años
padre
commit
12efc9d2c7
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. 6
    0
      cdiff.py

+ 6
- 0
cdiff.py Ver fichero

@@ -23,6 +23,12 @@ import sys
23 23
 if sys.hexversion < 0x02050000:
24 24
     raise SystemExit("*** Requires python >= 2.5.0")    # pragma: no cover
25 25
 
26
+# Python < 2.6 does not have next()
27
+try:
28
+    next
29
+except NameError:
30
+    def next(obj): return obj.next()
31
+
26 32
 import re
27 33
 import signal
28 34
 import subprocess