windows: use os.SEEK_END
authorAdrian Buehlmann <adrian@cadifra.com>
Sat, 06 Jun 2015 14:03:55 +0200
changeset 25462 021e68d37c5b
parent 25461 6fabde6ef445
child 25463 03af5c2ddf75
windows: use os.SEEK_END
mercurial/windows.py
--- a/mercurial/windows.py	Fri Jun 05 15:44:43 2015 -0500
+++ b/mercurial/windows.py	Sat Jun 06 14:03:55 2015 +0200
@@ -26,7 +26,6 @@
 unlink = win32.unlink
 
 umask = 0022
-_SEEK_END = 2 # os.SEEK_END was introduced in Python 2.5
 
 def posixfile(name, mode='r', buffering=-1):
     '''Open a file with even more POSIX-like semantics'''
@@ -36,7 +35,7 @@
         # The position when opening in append mode is implementation defined, so
         # make it consistent with other platforms, which position at EOF.
         if 'a' in mode:
-            fp.seek(0, _SEEK_END)
+            fp.seek(0, os.SEEK_END)
 
         return fp
     except WindowsError, err: