diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-17 12:45:13 +0000 |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-17 12:45:13 +0000 |
| commit | 6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5 (patch) | |
| tree | 68fa306974cc05de44d5c5c07ba62a739db3aa72 /Mac/Lib/findertools.py | |
| parent | dfebe90c4c04a7a36e4542907118ddce97085868 (diff) | |
| download | cpython-git-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.tar.gz | |
Fixed macroman<->latin1 conversion. Some chars don't
exist in latin1, but at least the roundtrip results in the
same macroman characters.
Diffstat (limited to 'Mac/Lib/findertools.py')
| -rw-r--r-- | Mac/Lib/findertools.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Lib/findertools.py b/Mac/Lib/findertools.py index dde329abfb..0fd4c51183 100644 --- a/Mac/Lib/findertools.py +++ b/Mac/Lib/findertools.py @@ -121,7 +121,7 @@ def update(file): # def comment(object, comment=None): - """comment: get or set the Finder-comment of the item, displayed in the łGet Info˛ window.""" + """comment: get or set the Finder-comment of the item, displayed in the Get Info window.""" object = macfs.FSSpec(object) fss = macfs.FSSpec(object) object_alias = fss.NewAlias() @@ -756,7 +756,7 @@ def _test(): sys.stdin.readline() def _test2(): - print '\nmorefindertools version %s\nTests coming up' %__version__ + print '\nmorefindertools version %s\nTests coming up' %__version__ import os import random @@ -800,7 +800,7 @@ def _test2(): pos = (100+i*10, 100+i*10) windowposition(base, pos) print '\twindow position', pos - windowposition(base, orgpos) # park it where it was before + windowposition(base, orgpos) # park it where it was before print 'Put a comment in file', f, ':' print '\t', comment(f) # print the Finder comment this file has |
