summaryrefslogtreecommitdiffstats
path: root/Mac/Lib/lib-scripting/Metrowerks_Shell_Suite.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-05-17 12:45:13 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-05-17 12:45:13 (GMT)
commit6f84ed5afc0d1d43e01f2728207b6fb2cdafc5b5 (patch)
tree68fa306974cc05de44d5c5c07ba62a739db3aa72 /Mac/Lib/lib-scripting/Metrowerks_Shell_Suite.py
parentdfebe90c4c04a7a36e4542907118ddce97085868 (diff)
downloadcpython-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/Metrowerks_Shell_Suite.py')
-rw-r--r--Mac/Lib/lib-scripting/Metrowerks_Shell_Suite.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/Mac/Lib/lib-scripting/Metrowerks_Shell_Suite.py b/Mac/Lib/lib-scripting/Metrowerks_Shell_Suite.py
index 93a8930..7012f99 100644
--- a/Mac/Lib/lib-scripting/Metrowerks_Shell_Suite.py
+++ b/Mac/Lib/lib-scripting/Metrowerks_Shell_Suite.py
@@ -791,7 +791,7 @@ class Metrowerks_Shell_Suite:
class Access_Paths(aetools.ComponentItem):
- """Access Paths - Contains the definitions of a project¹s access (search) paths."""
+ """Access Paths - Contains the definitions of a projectÕs access (search) paths."""
want = 'PATH'
class User_Paths(aetools.NProperty):
"""User Paths - To add an access path for the source files."""
@@ -814,7 +814,7 @@ class Flash_delay(aetools.NProperty):
which = 'ED01'
want = 'long'
class Dynamic_scroll(aetools.NProperty):
- """Dynamic scroll - Display a window¹s contents as you move the scroll box."""
+ """Dynamic scroll - Display a windowÕs contents as you move the scroll box."""
which = 'ED02'
want = 'bool'
class Balance(aetools.NProperty):
@@ -1111,14 +1111,14 @@ class filetype(aetools.NProperty):
"""filetype - What kind of file is this ?"""
which = 'SrcT'
want = 'SrcT'
-# repeated property name The file¹s name
-# repeated property disk_file The file¹s location on disk
+# repeated property name The fileÕs name
+# repeated property disk_file The fileÕs location on disk
class codesize(aetools.NProperty):
- """codesize - The size of this file¹s code."""
+ """codesize - The size of this fileÕs code."""
which = 'CSiz'
want = 'long'
class datasize(aetools.NProperty):
- """datasize - The size of this file¹s data."""
+ """datasize - The size of this fileÕs data."""
which = 'DSiz'
want = 'long'
class up_to_date(aetools.NProperty):
@@ -1172,7 +1172,7 @@ class system_heap(aetools.NProperty):
want = 'bool'
class Target_Settings(aetools.ComponentItem):
- """Target Settings - Contains the definitions of a project¹s target."""
+ """Target Settings - Contains the definitions of a projectÕs target."""
want = 'TARG'
class Linker(aetools.NProperty):
"""Linker - The name of the current linker."""
@@ -1624,8 +1624,8 @@ _Enum_SrcT = {
_Enum_PPrm = {
'absolute' : 'Abso', # An absolute path name, including volume name.
- 'project_relative' : 'PRel', # A path relative to the current project¹s folder.
- 'shell_relative' : 'SRel', # A path relative to the CodeWarrior folder.
+ 'project_relative' : 'PRel', # A path relative to the current projectÕs folder.
+ 'shell_relative' : 'SRel', # A path relative to the CodeWarriorŽ folder.
'system_relative' : 'YRel', # A path relative to the system folder
}