|
@@ -16,19 +16,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
-"""Misc utilities to work with python <2.6.
|
|
|
+"""Misc utilities to work with python <2.7.
|
|
|
|
|
|
These utilities can all be deleted when dulwich decides it wants to stop
|
|
|
-support for python <2.6.
|
|
|
+support for python <2.7.
|
|
|
"""
|
|
|
|
|
|
-try:
|
|
|
- from os import SEEK_CUR, SEEK_END
|
|
|
-except ImportError:
|
|
|
- SEEK_CUR = 1
|
|
|
- SEEK_END = 2
|
|
|
-
|
|
|
-
|
|
|
|
|
|
|
|
|
|