]> granicus.if.org Git - python/commitdiff
fix typos, mostly in comments
authorFred Drake <fdrake@acm.org>
Fri, 28 Oct 2005 14:39:47 +0000 (14:39 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 28 Oct 2005 14:39:47 +0000 (14:39 +0000)
Lib/pydoc.py
Lib/test/test_dircache.py
Lib/test/test_threadsignals.py
Lib/trace.py
Mac/Tools/IDE/Wsocket.py
Misc/cheatsheet
Objects/unicodeobject.c
PC/os2emx/dlfcn.c
PC/os2emx/dlfcn.h
Tools/msi/uisample.py

index 5d16fa5c7c7fbe87ffcb4d8fca7038ee813aef60..5bc92494a711fc4df778ea8a612a061d0c5cb41d 100755 (executable)
@@ -273,7 +273,7 @@ def safeimport(path, forceload=0, cache={}):
         # Did the error occur before or after the module was found?
         (exc, value, tb) = info = sys.exc_info()
         if path in sys.modules:
-            # An error occured while executing the imported module.
+            # An error occurred while executing the imported module.
             raise ErrorDuringImport(sys.modules[path].__file__, info)
         elif exc is SyntaxError:
             # A SyntaxError occurred before we could execute the module.
index 3f10872caf52fb89a89c3c0ce55527faf08589a2..68f6fc28b6c49292fa0db2a418efcbc17b070ec2 100644 (file)
@@ -46,7 +46,7 @@ class DircacheTests(unittest.TestCase):
 
         if sys.platform[:3] not in ('win', 'os2'):
             # Sadly, dircache has the same granularity as stat.mtime, and so
-            # can't notice any changes that occured within 1 sec of the last
+            # can't notice any changes that occurred within 1 sec of the last
             # time it examined a directory.
             time.sleep(1)
             self.writeTemp("test1")
index fcae312480cfd5fb2c6588633e573b159835cdcd..51e3d97f49543ceef2fa1c2fe953aa341627f06a 100644 (file)
@@ -21,7 +21,7 @@ def registerSignals((for_usr1, for_usr2, for_alrm)):
     return usr1, usr2, alrm
 
 
-# The signal handler. Just note that the signal occured and
+# The signal handler. Just note that the signal occurred and
 # from who.
 def handle_signals(sig,frame):
     signal_blackboard[sig]['tripped'] += 1
index f167fcfad80e29e51a6630ec9ec3b0a816b806e4..799c30280840bf527e9992360bcb02f1b6e415e4 100644 (file)
@@ -133,7 +133,7 @@ class Ignore:
             # the ignore list
             n = len(mod)
             # (will not overflow since if the first n characters are the
-            # same and the name has not already occured, then the size
+            # same and the name has not already occurred, then the size
             # of "name" is greater than that of "mod")
             if mod == modulename[:n] and modulename[n] == '.':
                 self._ignore[modulename] = 1
index eb5936d41decd94b263ed73b3f6025b357bd642c..82f4df54dfbfc1f2f0a6221a9426991218f2b9d0 100644 (file)
@@ -163,7 +163,7 @@ class ConnectionUI:
             def settotal(int total): gets called when the connection knows the data size
             def setcurrent(int current): gets called when some new data has arrived
             def done(): gets called when the transaction is complete
-            def error(type, value, tb): gets called wheneven an error occured
+            def error(type, value, tb): gets called wheneven an error occurred
     """
 
     def __init__(self, settotal_func, setcurrent_func, done_func, error_func):
index 718c77bf2b9d1d7f8ac1af518ffabdceac7e799d..d50ed2e65687d37c2c02870aa210e6846ce4b253 100644 (file)
@@ -1308,7 +1308,7 @@ Special informative state attributes for some types:
         tb_next (frame/None, R/O): next level in stack trace (toward the frame where
                                   the exception occurred)
         tb_frame (frame, R/O): execution frame of the current level
-        tb_lineno (int, R/O): line number where the exception occured
+        tb_lineno (int, R/O): line number where the exception occurred
         tb_lasti (int, R/O): precise instruction (index into bytecode)
 
     Slices:
@@ -1597,7 +1597,7 @@ whitespace[,       the string <sep> as a separator.
 maxsplit=0]])
 join(words[, sep=' Concatenate a list or tuple of words with
 '])                interveningseparators; inverse of split.
-replace(s, old,    Returns a copy of string <s> with all occurences of
+replace(s, old,    Returns a copy of string <s> with all occurrences of
 new[, maxsplit=0]  substring<old> replaced by <new>. Limits to <maxsplit>
                    firstsubstitutions if specified.
 strip(s)           Return a string that is (a copy of) <s> without leadingand
@@ -1620,7 +1620,7 @@ litteralize backslashes.
 $          matches end of the string (of every line in MULTILINE mode)
 *          0 or more of preceding regular expression (as many as possible)
 +          1 or more of preceding regular expression (as many as possible)
-?          0 or 1 occurence of preceding regular expression
+?          0 or 1 occurrence of preceding regular expression
 *?, +?, ?? Same as *, + and ? but matches as few characters as possible
 {m,n}      matches from m to n repetitions of preceding RE
 {m,n}?     idem, attempting to match as few repetitions as possible
index db2a6900cb46161dd571d28e98c3d41f47c63de7..cac6a2d0ae6cab72ec232bb348edacf03fb59219 100644 (file)
@@ -734,7 +734,7 @@ int PyUnicode_SetDefaultEncoding(const char *encoding)
 
 /* error handling callback helper:
    build arguments, call the callback and check the arguments,
-   if no exception occured, copy the replacement to the output
+   if no exception occurred, copy the replacement to the output
    and adjust various state variables.
    return 0 on success, -1 on error
 */
@@ -2987,7 +2987,7 @@ PyObject *PyUnicode_DecodeCharmap(const char *s,
 
 /* Lookup the character ch in the mapping. If the character
    can't be found, Py_None is returned (or NULL, if another
-   error occured). */
+   error occurred). */
 static PyObject *charmapencode_lookup(Py_UNICODE c, PyObject *mapping)
 {
     PyObject *w = PyInt_FromLong((long)c);
index c9307da0fd83c2a3f0d48e5026b78e0247dc9c0b..9e88d5e7387eee0d2ca932bb18111bfbc251b9af 100644 (file)
@@ -216,7 +216,7 @@ inv_handle:
        }
 }
 
-/* return a string describing last occured dl error */
+/* return a string describing last occurred dl error */
 char *dlerror()
 {
        return dlerr;
index c42983403e3a03632c0b773e3178de82fcffa85e..49abecfbb537615221cb60e67596503585dfccd2 100644 (file)
@@ -45,7 +45,7 @@ void *dlsym(void *handle, char *symbol);
 /* free dynamicaly-linked library */
 int dlclose(void *handle);
 
-/* return a string describing last occured dl error */
+/* return a string describing last occurred dl error */
 char *dlerror(void);
 
 #endif /* !_DLFCN_H */
index d66c3cd63438afdaf903304e4a2c767a90fcdba9..2bdf59e1024f5e2dd130468f8248308daa66fd68 100644 (file)
@@ -1,3 +1,4 @@
+
 import msilib,os;dirname=os.path.dirname(__file__)
 AdminExecuteSequence = [
 (u'InstallValidate', None, 1400),
@@ -1393,7 +1394,7 @@ Error = [
 (1932, u'The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}'),
 (1933, u'The Windows Installer service cannot update one or more protected Windows files. {{SFP Error: [2].  List of protected files:\\r\\n[3]}}'),
 (1934, u'User installations are disabled via policy on the machine.'),
-(1935, u'An error occured during the installation of assembly component [2]. HRESULT: [3]. {{assembly interface: [4], function: [5], assembly name: [6]}}'),
+(1935, u'An error occurred during the installation of assembly component [2]. HRESULT: [3]. {{assembly interface: [4], function: [5], assembly name: [6]}}'),
 ]
 
 tables=['AdminExecuteSequence', 'AdminUISequence', 'AdvtExecuteSequence', 'BBControl', 'Billboard', 'Binary', 'CheckBox', 'Property', 'ComboBox', 'Control', 'ListBox', 'ActionText', 'ControlCondition', 'ControlEvent', 'Dialog', 'EventMapping', 'InstallExecuteSequence', 'InstallUISequence', 'ListView', 'RadioButton', 'TextStyle', 'UIText', '_Validation', 'Error']