diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-06-28 14:48:01 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-06-28 14:48:01 (GMT) |
commit | a05e293a219f0fbaf4301fa7a292b9578a523675 (patch) | |
tree | f5ed23b622ef5ba098ca41b890f95aa8caeb43ca /Lib/binhex.py | |
parent | 7c014684c27ad646107b9f17882f43e7bd96f252 (diff) | |
download | cpython-a05e293a219f0fbaf4301fa7a292b9578a523675.zip cpython-a05e293a219f0fbaf4301fa7a292b9578a523675.tar.gz cpython-a05e293a219f0fbaf4301fa7a292b9578a523675.tar.bz2 |
typos fixed by Rob Hooft
Diffstat (limited to 'Lib/binhex.py')
-rw-r--r-- | Lib/binhex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/binhex.py b/Lib/binhex.py index db6a7ef..0a28859 100644 --- a/Lib/binhex.py +++ b/Lib/binhex.py @@ -13,7 +13,7 @@ hexbin(inputfilename, outputfilename) # XXXX Note: currently, textfiles appear in mac-form on all platforms. # We seem to lack a simple character-translate in python. # (we should probably use ISO-Latin-1 on all but the mac platform). -# XXXX The simeple routines are too simple: they expect to hold the complete +# XXXX The simple routines are too simple: they expect to hold the complete # files in-core. Should be fixed. # XXXX It would be nice to handle AppleDouble format on unix # (for servers serving macs). @@ -48,7 +48,7 @@ if os.name == 'mac': try: openrf = MacOS.openrf except AttributeError: - # Backward compatability + # Backward compatibility openrf = open def FInfo(): |