From: Jack Jansen Date: Wed, 8 Jan 2003 16:32:29 +0000 (+0000) Subject: Removed the SetDates warning. The warning is in the readme, and the print statement... X-Git-Tag: v2.3c1~2519 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27d19c40bc4d469483c0944dec1113ff2bae8eca;p=thirdparty%2FPython%2Fcpython.git Removed the SetDates warning. The warning is in the readme, and the print statement was too obtrusive (it appeared during the installation process, and the user needed to close the resulting window manually). --- diff --git a/Lib/plat-mac/macfs.py b/Lib/plat-mac/macfs.py index 3cf56d033dc3..5822b197e0cc 100644 --- a/Lib/plat-mac/macfs.py +++ b/Lib/plat-mac/macfs.py @@ -57,7 +57,7 @@ class FSSpec(Carbon.File.FSSpec): return statb.st_ctime, statb.st_mtime, 0 def SetDates(self, *dates): - print "FSSpec.SetDates no longer implemented" + pass # print "FSSpec.SetDates not yet implemented" class FSRef(Carbon.File.FSRef): def as_fsspec(self): @@ -69,7 +69,7 @@ class Alias(Carbon.File.Alias): return self.GetAliasInfo(index) def Update(self, *args): - print "Alias.Update not yet implemented" + pass # print "Alias.Update not yet implemented" def Resolve(self, src=None): fss, changed = self.ResolveAlias(src)