summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/IDE/PyBrowser.py
diff options
context:
space:
mode:
authorJust van Rossum <just@lettererror.com>1999-02-02 22:31:05 (GMT)
committerJust van Rossum <just@lettererror.com>1999-02-02 22:31:05 (GMT)
commitedab93939efcd4145b55bf11c3f2d2e1372cd050 (patch)
tree5c558bf7da1a07762d71113f0162d663414da495 /Mac/Tools/IDE/PyBrowser.py
parentb8bf163dde525a951b8f1fbc14b9cb69f1454531 (diff)
downloadcpython-edab93939efcd4145b55bf11c3f2d2e1372cd050.zip
cpython-edab93939efcd4145b55bf11c3f2d2e1372cd050.tar.gz
cpython-edab93939efcd4145b55bf11c3f2d2e1372cd050.tar.bz2
re-checkin with "ISO-8859 translation" turned on.
Diffstat (limited to 'Mac/Tools/IDE/PyBrowser.py')
-rw-r--r--Mac/Tools/IDE/PyBrowser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Tools/IDE/PyBrowser.py b/Mac/Tools/IDE/PyBrowser.py
index d62d256..31e6c86 100644
--- a/Mac/Tools/IDE/PyBrowser.py
+++ b/Mac/Tools/IDE/PyBrowser.py
@@ -36,7 +36,7 @@ def double_repr(key, value, truncvalue = 0,
value = _repr(value)
'' + value # test to see if it is a string, in case a __repr__ method is buggy
except:
- value = '¥¥¥ exception in repr()'
+ value = '€€€ exception in repr()'
if truncvalue:
return key + '\t' + value[:255]
return key + '\t' + value
@@ -358,7 +358,7 @@ INDEXING_TYPES = (
def unpack_object(object, indent = 0):
tp = type(object)
if tp in SIMPLE_TYPES and tp is not types.NoneType:
- raise TypeError, 'canÕt browse simple type: %s' % tp.__name__
+ raise TypeError, 'can¹t browse simple type: %s' % tp.__name__
elif tp == types.DictionaryType:
return unpack_dict(object, indent)
elif tp in (types.TupleType, types.ListType):