diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-08 16:32:29 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-08 16:32:29 (GMT) |
commit | 27d19c40bc4d469483c0944dec1113ff2bae8eca (patch) | |
tree | ee5090987a9b981c5fa11f8d682dcfb12fbfa6f5 /Lib | |
parent | 746096576ba29247ddcc7a9b6ca568731c08b7dc (diff) | |
download | cpython-27d19c40bc4d469483c0944dec1113ff2bae8eca.zip cpython-27d19c40bc4d469483c0944dec1113ff2bae8eca.tar.gz cpython-27d19c40bc4d469483c0944dec1113ff2bae8eca.tar.bz2 |
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).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/plat-mac/macfs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/plat-mac/macfs.py b/Lib/plat-mac/macfs.py index 3cf56d0..5822b19 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) |