From: Guido van Rossum Date: Sat, 7 Oct 1995 19:25:25 +0000 (+0000) Subject: mac robustness: default timezone, unlink target before rename X-Git-Tag: v1.3~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6d69289a3f4a57302f0ab6aaf827c46fee8104c;p=thirdparty%2FPython%2Fcpython.git mac robustness: default timezone, unlink target before rename --- diff --git a/Demo/pdist/cvslib.py b/Demo/pdist/cvslib.py index 96cc785d0daf..cf305c97982d 100755 --- a/Demo/pdist/cvslib.py +++ b/Demo/pdist/cvslib.py @@ -6,6 +6,8 @@ import time import md5 import fnmatch +if not hasattr(time, 'timezone'): + time.timezone = 0 class File: @@ -282,6 +284,8 @@ class CVS: def backup(self, file): if os.path.isfile(file): bfile = file + '~' + try: os.unlink(bfile) + except os.error: pass os.rename(file, bfile) def ignored(self, file):