mirror of
https://github.com/python/cpython.git
synced 2025-09-13 12:17:24 +00:00
Fixed macroman<->latin1 conversion. Some chars don't
exist in latin1, but at least the roundtrip results in the same macroman characters.
This commit is contained in:
parent
dfebe90c4c
commit
6f84ed5afc
48 changed files with 234 additions and 232 deletions
|
@ -429,7 +429,7 @@ class Standard_Suite_Events:
|
|||
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'
|
||||
|
@ -459,7 +459,7 @@ class frontmost(aetools.NProperty):
|
|||
which = 'pisf'
|
||||
want = 'bool'
|
||||
class selection(aetools.NProperty):
|
||||
"""selection - the selection visible to the user. Use the Œselect¹ command to set a new selection; use Œcontents of selection¹ to get or change information in the document. """
|
||||
"""selection - the selection visible to the user. Use the •selectÕ command to set a new selection; use •contents of selectionÕ to get or change information in the document. """
|
||||
which = 'sele'
|
||||
want = 'csel'
|
||||
class clipboard(aetools.NProperty):
|
||||
|
@ -500,10 +500,10 @@ class alias(aetools.ComponentItem):
|
|||
aliases = alias
|
||||
|
||||
class selection_2d_object(aetools.ComponentItem):
|
||||
"""selection-object - A way to refer to the state of the current of the selection. Use the Œselect¹ command to make a new selection. """
|
||||
"""selection-object - A way to refer to the state of the current of the selection. Use the •selectÕ command to make a new selection. """
|
||||
want = 'csel'
|
||||
class contents(aetools.NProperty):
|
||||
"""contents - the information currently selected. Use Œcontents of selection¹ to get or change information in a document. """
|
||||
"""contents - the information currently selected. Use •contents of selectionÕ to get or change information in a document. """
|
||||
which = 'pcnt'
|
||||
want = '****'
|
||||
|
||||
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue