]> granicus.if.org Git - python/commitdiff
typos fixed by Rob Hooft
authorJeremy Hylton <jeremy@alum.mit.edu>
Wed, 28 Jun 2000 14:48:01 +0000 (14:48 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Wed, 28 Jun 2000 14:48:01 +0000 (14:48 +0000)
32 files changed:
Demo/pdist/rcslib.py
Demo/sgi/video/Vcopy.py
Demo/sgi/video/Vtime.py
Lib/Queue.py
Lib/binhex.py
Lib/calendar.py
Lib/distutils/cmd.py
Lib/distutils/command/build_ext.py
Lib/distutils/util.py
Lib/distutils/version.py
Lib/dos-8x3/posixpat.py
Lib/dos-8x3/queue.py
Lib/dos-8x3/test_win.py
Lib/fnmatch.py
Lib/locale.py
Lib/plat-irix5/CL_old.py
Lib/plat-irix5/flp.py
Lib/plat-irix5/panel.py
Lib/plat-irix6/flp.py
Lib/plat-irix6/panel.py
Lib/posixpath.py
Lib/sgmllib.py
Lib/site.py
Lib/test/test_al.py
Lib/test/test_b1.py
Lib/test/test_cd.py
Lib/test/test_cl.py
Lib/test/test_pwd.py
Lib/test/test_winreg.py
Lib/test/test_zlib.py
Lib/urllib2.py
Lib/xmllib.py

index 223ddca98e3c14a524e5a3875ace357dfa64ab9c..5e79247cb3670fba707b2601c61f2d62ff531b4a 100755 (executable)
@@ -296,7 +296,7 @@ class RCS:
     def _system(self, cmd):
         """INTERNAL: run COMMAND in a subshell.
 
-        Standard input for the command is taken fron /dev/null.
+        Standard input for the command is taken from /dev/null.
 
         Raise IOError when the exit status is not zero.
 
index 0861457980842f2377a787a79537405f11135eb8..ef4647a16610508cda227e55763006c5da3c7307 100755 (executable)
@@ -8,7 +8,7 @@
 # - Manipulate the time base:
 #   = resample at a fixed rate
 #   = divide the time codes by a speed factor (to make it go faster/slower)
-#   = drop frames that are less than n msec apart (to accomodate slow players)
+#   = drop frames that are less than n msec apart (to accommodate slow players)
 # - Convert to a different format
 # - Magnify (scale) the image
 
index 34b3b44aa5722d18c65bdb1e45441d208b2a49b5..651deee00d3b66e6745863adb01df38ca2443f6c 100755 (executable)
@@ -7,7 +7,7 @@
 #
 # - resample at a fixed rate
 # - divide the time codes by a speed factor (to make it go faster/slower)
-# - drop frames that are less than n msec apart (to accomodate slow players)
+# - drop frames that are less than n msec apart (to accommodate slow players)
 
 
 # Usage:
index cb04006f11d2dc32cc2ab24744e922a681c7cace..9d5f79980cff0a5fd9f59296f484e5bdf80631bd 100644 (file)
@@ -119,7 +119,7 @@ class Queue:
     def _qsize(self):
         return len(self.queue)
 
-    # Check wheter the queue is empty
+    # Check whether the queue is empty
     def _empty(self):
         return not self.queue
 
index db6a7ef9f54598e4a293e56bbdec09f2fe5f406e..0a288593b9ba77155434ad5cad88c0a395f118bf 100644 (file)
@@ -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():
index fa96278cb441142abc2f85e2bb1efd50d74104aa..d3fe07294a22eb8c9c4455fd776651e4244847bf 100644 (file)
@@ -1,6 +1,6 @@
 """Calendar printing functions"""
 
-# Revision 2: uses funtions from built-in time module
+# Revision 2: uses functions from built-in time module
 
 # Import functions and variables from time module
 from time import localtime, mktime
index c9b5624f8a231a467a54ea684474e40508fce597..d450ad320c7af60732546f12c403546d6c1909ac 100644 (file)
@@ -323,7 +323,7 @@ class Command:
         should be disabled by the "dry run" flag, and should announce
         themselves if the current verbosity level is high enough.  This
         method takes care of all that bureaucracy for you; all you have to
-        do is supply the funtion to call and an argument tuple for it (to
+        do is supply the function to call and an argument tuple for it (to
         embody the "external action" being performed), a message to print
         if the verbosity level is high enough, and an optional verbosity
         threshold.
index adf85d32871cb1017f5b1c97ee5c12884306f321..54d48467bcd604e381fa4add7bf8e75a96c2145e 100644 (file)
@@ -1,7 +1,7 @@
 """distutils.command.build_ext
 
 Implements the Distutils 'build_ext' command, for building extension
-modules (currently limited to C extensions, should accomodate C++
+modules (currently limited to C extensions, should accommodate C++
 extensions ASAP)."""
 
 # created 1999/08/09, Greg Ward
@@ -385,7 +385,7 @@ class build_ext (Command):
             # Next, compile the source code to object files.
 
             # XXX not honouring 'define_macros' or 'undef_macros' -- the
-            # CCompiler API needs to change to accomodate this, and I
+            # CCompiler API needs to change to accommodate this, and I
             # want to do one thing at a time!
 
             # Two possible sources for extra compiler arguments:
index 5c1de789971992b5a10d4b959c9dc083b1a2d33f..ebfdf0abf5a69a5e120781ba60e6a3785000b65c 100644 (file)
@@ -28,7 +28,7 @@ else:
         return os.path.normpath(path)
 
 
-# More backwards compatability hacks
+# More backwards compatibility hacks
 def extend (list, new_list):
     """Appends the list 'new_list' to 'list', just like the 'extend()'
        list method does in Python 1.5.2 -- but this works on earlier
index 918a1ded43beeaae1d0ed051a95959cfd3a50a04..8b9ef1067030b8d1841267e6203e82f1106a282a 100644 (file)
@@ -207,7 +207,7 @@ class StrictVersion (Version):
 # provides enough benefit to be worth using, and will submit their
 # version numbering scheme to its domination.  The free-thinking
 # anarchists in the lot will never give in, though, and something needs
-# to be done to accomodate them.
+# to be done to accommodate them.
 # 
 # Perhaps a "moderately strict" version class could be implemented that
 # lets almost anything slide (syntactically), and makes some heuristic
index a603e9ea99dc3ee8c59449249f5d7b2de98b9c7b..14b9270fba37abf07592dd5d0787453ac1c77565 100755 (executable)
@@ -24,7 +24,7 @@ def normcase(s):
     return s
 
 
-# Return wheter a path is absolute.
+# Return whether a path is absolute.
 # Trivial in Posix, harder on the Mac or MS-DOS.
 
 def isabs(s):
@@ -304,7 +304,7 @@ do nothing"""
 
 # Expand paths containing shell variable substitutions.
 # This expands the forms $variable and ${variable} only.
-# Non-existant variables are left unchanged.
+# Non-existent variables are left unchanged.
 
 _varprog = None
 
index cb04006f11d2dc32cc2ab24744e922a681c7cace..9d5f79980cff0a5fd9f59296f484e5bdf80631bd 100755 (executable)
@@ -119,7 +119,7 @@ class Queue:
     def _qsize(self):
         return len(self.queue)
 
-    # Check wheter the queue is empty
+    # Check whether the queue is empty
     def _empty(self):
         return not self.queue
 
index 1af095abef21d76b657b7c199dc56faab7c11148..5eb29865dbe869fb61447801a79ce03ec5c2043b 100644 (file)
@@ -115,7 +115,7 @@ def DeleteTestData(root_key):
     # Opening should now fail!
     try:
         key = OpenKey(root_key, test_key_name)
-        assert 0, "Could open the non-existant key"
+        assert 0, "Could open the non-existent key"
     except WindowsError: # Use this error name this time
         pass
 
index ed815945e2d9659ba9d1b4524ee8aa5b688f941a..75d2d6eb43b49514f739eb8e74353bb7f5400ed3 100644 (file)
@@ -36,7 +36,7 @@ def fnmatch(name, pat):
        return fnmatchcase(name, pat)
 
 def fnmatchcase(name, pat):
-       """Test wheter FILENAME matches PATTERN, including case.
+       """Test whether FILENAME matches PATTERN, including case.
        
        This is a version of fnmatch() which doesn't case-normalize
        its arguments.
index a4e1e44e80823364a58b5a1d04de3216808ad1f0..437755e5435b3fcc8ed830189a3fbd35b6e66af4 100644 (file)
@@ -220,7 +220,7 @@ def _parse_localename(localename):
 
         The language code corresponds to RFC 1766.  code and encoding
         can be None in case the values cannot be determined or are
-        unkown to this implementation.
+        unknown to this implementation.
 
     """
     code = normalize(localename)
@@ -229,7 +229,7 @@ def _parse_localename(localename):
     elif code == 'C':
         return None, None
     else:
-        raise ValueError,'unkown locale: %s' % localename
+        raise ValueError,'unknown locale: %s' % localename
     return l
 
 def _build_localename(localetuple):
index 41c56e0cca73459dbe1b8d19fc590ff6162c0243..d9a4100248ba19ec6fd4b8e9092dd6d8ae7107b9 100755 (executable)
@@ -200,7 +200,7 @@ TOP_DOWN = 0
 BOTTOM_UP = 1
 
 #
-# SGI Proprietaty Algorithm Header Start Code
+# SGI Proprietary Algorithm Header Start Code
 #
 HEADER_START_CODE = 0xc1C0DEC
 
index 484c8ffd00a785513bca0cbf9d446b58e6f96f04..9f1957f93e680d04f06dda5f768fe4490314ee32 100755 (executable)
@@ -203,7 +203,7 @@ def _parse_fd_header(file):
     return datum[1]
 #
 # Internal: parse fd form, or skip if name doesn't match.
-# the special value None means 'allways parse it'.
+# the special value None means 'always parse it'.
 #
 def _parse_fd_form(file, name):
     datum = _parse_1_line(file)
@@ -222,7 +222,7 @@ def _parse_fd_form(file, name):
     return None
 
 #
-# Internal class: a convient place to store object info fields
+# Internal class: a convenient place to store object info fields
 #
 class _newobj:
     def add(self, name, value):
index 2c0365c6ce213b34590449d38ac175c91fdfe3d5..629bee513001b6ab4b378420b4e1239da63b62e4 100755 (executable)
@@ -2,7 +2,7 @@
 #
 # Support for the Panel library.
 # Uses built-in module 'pnl'.
-# Applciations should use 'panel.function' instead of 'pnl.function';
+# Applications should use 'panel.function' instead of 'pnl.function';
 # most 'pnl' functions are transparently exported by 'panel',
 # but dopanel() is overridden and you have to use this version
 # if you want to use callbacks.
@@ -137,7 +137,7 @@ def assign_members(target, attrlist, exclist, prefix):
                                        print 'assign failed:', stmt
 
 
-# Build a real actuator from an actuator descriptior.
+# Build a real actuator from an actuator description.
 # Return a pair (actuator, name).
 #
 def build_actuator(descr):
index 484c8ffd00a785513bca0cbf9d446b58e6f96f04..9f1957f93e680d04f06dda5f768fe4490314ee32 100644 (file)
@@ -203,7 +203,7 @@ def _parse_fd_header(file):
     return datum[1]
 #
 # Internal: parse fd form, or skip if name doesn't match.
-# the special value None means 'allways parse it'.
+# the special value None means 'always parse it'.
 #
 def _parse_fd_form(file, name):
     datum = _parse_1_line(file)
@@ -222,7 +222,7 @@ def _parse_fd_form(file, name):
     return None
 
 #
-# Internal class: a convient place to store object info fields
+# Internal class: a convenient place to store object info fields
 #
 class _newobj:
     def add(self, name, value):
index 2c0365c6ce213b34590449d38ac175c91fdfe3d5..629bee513001b6ab4b378420b4e1239da63b62e4 100644 (file)
@@ -2,7 +2,7 @@
 #
 # Support for the Panel library.
 # Uses built-in module 'pnl'.
-# Applciations should use 'panel.function' instead of 'pnl.function';
+# Applications should use 'panel.function' instead of 'pnl.function';
 # most 'pnl' functions are transparently exported by 'panel',
 # but dopanel() is overridden and you have to use this version
 # if you want to use callbacks.
@@ -137,7 +137,7 @@ def assign_members(target, attrlist, exclist, prefix):
                                        print 'assign failed:', stmt
 
 
-# Build a real actuator from an actuator descriptior.
+# Build a real actuator from an actuator description.
 # Return a pair (actuator, name).
 #
 def build_actuator(descr):
index a603e9ea99dc3ee8c59449249f5d7b2de98b9c7b..14b9270fba37abf07592dd5d0787453ac1c77565 100644 (file)
@@ -24,7 +24,7 @@ def normcase(s):
     return s
 
 
-# Return wheter a path is absolute.
+# Return whether a path is absolute.
 # Trivial in Posix, harder on the Mac or MS-DOS.
 
 def isabs(s):
@@ -304,7 +304,7 @@ do nothing"""
 
 # Expand paths containing shell variable substitutions.
 # This expands the forms $variable and ${variable} only.
-# Non-existant variables are left unchanged.
+# Non-existent variables are left unchanged.
 
 _varprog = None
 
index a620a7deb59fe5a1cc6967e5c6a6b76fa62248e9..8be7d55bf6cb172e54dedfa11da37420c99eec8c 100644 (file)
@@ -47,7 +47,7 @@ attrfind = re.compile(
 # <foo> and </foo>, respectively, or do_foo to handle <foo> by itself.
 # (Tags are converted to lower case for this purpose.)  The data
 # between tags is passed to the parser by calling self.handle_data()
-# with some data as argument (the data may be split up in arbutrary
+# with some data as argument (the data may be split up in arbitrary
 # chunks).  Entity references are passed by calling
 # self.handle_entityref() with the entity reference as argument.
 
index dabd364ab59c2f57219412c87b0f991c251c4659..70284e17223d0a078982a434c9178f9ecd701691 100644 (file)
@@ -122,7 +122,7 @@ del exit
 #
 # Set the string encoding used by the Unicode implementation to the
 # encoding used by the default locale of this system. If the default
-# encoding cannot be determined or is unkown, it defaults to 'ascii'.
+# encoding cannot be determined or is unknown, it defaults to 'ascii'.
 #
 def locale_aware_defaultencoding():
     import locale
index 587bf1f353e70ec722a849d5c208a68e34a69c47..d7b5ec47c0986082153df9cfea6693e2a37da042 100755 (executable)
@@ -8,7 +8,7 @@ from test_support import verbose
 alattrs = ['__doc__', '__name__', 'getdefault', 'getminmax', 'getname', 'getparams',
            'newconfig', 'openport', 'queryparams', 'setparams']
 
-# This is a very inobstrusive test for the existance of the al module and all it's
+# This is a very unobtrusive test for the existence of the al module and all it's
 # attributes.  More comprehensive examples can be found in Demo/al
 
 def main():
index b063e5aa7187c19f04652d888dd0b5d44b0b9eba..639a01776dc4c3113ba38e98f3cf729f5c15a71c 100644 (file)
@@ -270,7 +270,7 @@ if int(-3.5) <> -3: raise TestFailed, 'int(-3.5)'
 # Different base:
 if int("10",16) <> 16L: raise TestFailed, 'int("10",16)'
 if int(u"10",16) <> 16L: raise TestFailed, 'int(u"10",16)'
-# Test conversion fron strings and various anomalies
+# Test conversion from strings and various anomalies
 L = [
         ('0', 0),
         ('1', 1),
index 4d5615842c0d1c55ed59dadf9d6692d2883c2af7..9a45a7d3a7d2b380e9b3ca94ed3a072a59446887 100755 (executable)
@@ -10,7 +10,7 @@ cdattrs = ['BLOCKSIZE', 'CDROM', 'DATASIZE', 'ERROR', 'NODISC', 'PAUSED', 'PLAYI
            'ident', 'index', 'msftoframe', 'open', 'pnum', 'ptime']
 
 
-# This is a very inobstrusive test for the existance of the cd module and all it's
+# This is a very inobtrusive test for the existence of the cd module and all it's
 # attributes.  More comprehensive examples can be found in Demo/cd and
 # require that you have a CD and a CD ROM drive
 
index 60fbc4353bad519114d1144289e1b5a9232ac113..26c5146863f1b39b053f1cd3f45df87401a3078d 100755 (executable)
@@ -63,7 +63,7 @@ clattrs = ['ADDED_ALGORITHM_ERROR', 'ALAW', 'ALGORITHM_ID',
 'YUV422DC', 'YUV422HC', '__doc__', '__name__', 'cvt_type', 'error']
 
 
-# This is a very inobstrusive test for the existance of the cl
+# This is a very inobtrusive test for the existence of the cl
 # module and all it's attributes.
 
 def main():
index 79bf866994c11ad4078e972232cd7e9003294482..edd40f4bc1f2dd2a62ec7f1d229260d01841a4f2 100644 (file)
@@ -59,7 +59,7 @@ except KeyError:
 else:
     print 'fakename', fakename, 'did not except pwd.getpwnam()'
 
-# Choose a non-existant uid.
+# Choose a non-existent uid.
 fakeuid = 4127
 while byuids.has_key(fakeuid):
     fakeuid = (fakeuid * 3) % 0x10000
index 1af095abef21d76b657b7c199dc56faab7c11148..5eb29865dbe869fb61447801a79ce03ec5c2043b 100644 (file)
@@ -115,7 +115,7 @@ def DeleteTestData(root_key):
     # Opening should now fail!
     try:
         key = OpenKey(root_key, test_key_name)
-        assert 0, "Could open the non-existant key"
+        assert 0, "Could open the non-existent key"
     except WindowsError: # Use this error name this time
         pass
 
index ccfbc7d780cc949da042a384a8ff51892335c324..d22a2ccdf0462d3fdffbc4ba14a5d3977f527aec 100644 (file)
@@ -11,7 +11,7 @@ except ImportError:
 buf = file.read() * 8
 file.close()
 
-# test the chucksums (hex so the test doesn't break on 64-bit machines)
+# test the checksums (hex so the test doesn't break on 64-bit machines)
 print hex(zlib.crc32('penguin')), hex(zlib.crc32('penguin', 1))
 print hex(zlib.adler32('penguin')), hex(zlib.adler32('penguin', 1))
 
index c147560e752cfd4253a56b0abba8f8a6027d25c7..c4e5348e46364f4059bd1be53902354fa915cdf3 100644 (file)
@@ -141,7 +141,7 @@ def install_opener(opener):
     _opener = opener
 
 # do these error classes make sense?
-# make sure all of the IOError stuff is overriden.  we just want to be 
+# make sure all of the IOError stuff is overridden.  we just want to be 
  # subtypes.
 
 class URLError(IOError):
index 4c6594be3ee580d3428e030fc9df4860ca7a561d..37f3f91528d4922da82dccafa5912c7c24f80c81 100644 (file)
@@ -79,7 +79,7 @@ xmlns = re.compile('xmlns(?::(?P<ncname>'+_NCName+'))?$')
 # special names to handle tags: start_foo and end_foo to handle <foo>
 # and </foo>, respectively.  The data between tags is passed to the
 # parser by calling self.handle_data() with some data as argument (the
-# data may be split up in arbutrary chunks).
+# data may be split up in arbitrary chunks).
 
 class XMLParser:
     attributes = {}                     # default, to be overridden