diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-17 12:45:13 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-17 12:45:13 (GMT) |
commit | 6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5 (patch) | |
tree | 68fa306974cc05de44d5c5c07ba62a739db3aa72 /Mac/Lib/lib-scripting/AppleScript_Suite.py | |
parent | dfebe90c4c04a7a36e4542907118ddce97085868 (diff) | |
download | cpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.zip cpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.tar.gz cpython-6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5.tar.bz2 |
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/lib-scripting/AppleScript_Suite.py')
-rw-r--r-- | Mac/Lib/lib-scripting/AppleScript_Suite.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/Lib/lib-scripting/AppleScript_Suite.py b/Mac/Lib/lib-scripting/AppleScript_Suite.py index ea9f1f1..34765d2 100644 --- a/Mac/Lib/lib-scripting/AppleScript_Suite.py +++ b/Mac/Lib/lib-scripting/AppleScript_Suite.py @@ -275,7 +275,7 @@ class AppleScript_Suite: } def Call_a5_subroutine(self, _object=None, _attributes={}, **_arguments): - """Call€subroutine: A subroutine call + """Call‚subroutine: A subroutine call Required argument: anything Keyword argument at: a preposition Keyword argument _from: a preposition @@ -347,7 +347,7 @@ class AppleScript_Suite: return _arguments['----'] def _ad_(self, _object, _attributes={}, **_arguments): - """‚: Inequality + """: Inequality Required argument: an AE object reference Keyword argument _attributes: AppleEvent attribute dictionary Returns: anything @@ -536,7 +536,7 @@ class AppleScript_Suite: return _arguments['----'] def _b3_(self, _object, _attributes={}, **_arguments): - """„: Greater than or equal to + """³: Greater than or equal to Required argument: an AE object reference Keyword argument _attributes: AppleEvent attribute dictionary Returns: anything @@ -578,7 +578,7 @@ class AppleScript_Suite: return _arguments['----'] def _b2_(self, _object, _attributes={}, **_arguments): - """¾: Less than or equal to + """²: Less than or equal to Required argument: an AE object reference Keyword argument _attributes: AppleEvent attribute dictionary Returns: anything |