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/Standard_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/Standard_Suite.py')
-rw-r--r-- | Mac/Lib/lib-scripting/Standard_Suite.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Lib/lib-scripting/Standard_Suite.py b/Mac/Lib/lib-scripting/Standard_Suite.py index 36eaed8..f6d9b5a 100644 --- a/Mac/Lib/lib-scripting/Standard_Suite.py +++ b/Mac/Lib/lib-scripting/Standard_Suite.py @@ -21,7 +21,7 @@ class Standard_Suite: Required argument: the object class about which information is requested Keyword argument _in: the human language and script system in which to return information Keyword argument _attributes: AppleEvent attribute dictionary - Returns: a record containing the object¹s properties and elements + Returns: a record containing the objectÕs properties and elements """ _code = 'core' _subcode = 'qobj' @@ -615,11 +615,11 @@ class _3d_(aetools.NComparison): class _3e_(aetools.NComparison): """> - Greater than""" class _b3_(aetools.NComparison): - """„ - Greater than or equal to""" + """³ - Greater than or equal to""" class _3c_(aetools.NComparison): """< - Less than""" class _b2_(aetools.NComparison): - """¾ - Less than or equal to""" + """² - Less than or equal to""" _Enum_savo = { 'yes' : 'yes ', # Save objects now 'no' : 'no ', # Do not save objects |