[PATCH] windows: use os.SEEK_END

Adrian Buehlmann adrian at cadifra.com
Sat Jun 6 12:12:06 UTC 2015


# HG changeset patch
# User Adrian Buehlmann <adrian at cadifra.com>
# Date 1433592235 -7200
# Node ID 021e68d37c5b38e497311fca2c83fda5ff988549
# Parent  6fabde6ef4453ee6c2aa964184f6cf2c54483621
windows: use os.SEEK_END

diff --git a/mercurial/windows.py b/mercurial/windows.py
--- a/mercurial/windows.py
+++ b/mercurial/windows.py
@@ -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:


More information about the Mercurial-devel mailing list