summaryrefslogtreecommitdiff
path: root/Lib/binhex.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2000-06-28 14:48:01 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2000-06-28 14:48:01 +0000
commita05e293a219f0fbaf4301fa7a292b9578a523675 (patch)
treef5ed23b622ef5ba098ca41b890f95aa8caeb43ca /Lib/binhex.py
parent7c014684c27ad646107b9f17882f43e7bd96f252 (diff)
downloadcpython-git-a05e293a219f0fbaf4301fa7a292b9578a523675.tar.gz
typos fixed by Rob Hooft
Diffstat (limited to 'Lib/binhex.py')
-rw-r--r--Lib/binhex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/binhex.py b/Lib/binhex.py
index db6a7ef9f5..0a288593b9 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():