]> granicus.if.org Git - python/commitdiff
#19970: Fix some comment typos.
authorR David Murray <rdmurray@bitdance.com>
Sat, 14 Dec 2013 01:52:19 +0000 (20:52 -0500)
committerR David Murray <rdmurray@bitdance.com>
Sat, 14 Dec 2013 01:52:19 +0000 (20:52 -0500)
Report and patch by Vajrasky Kok.

Lib/test/test_signal.py
Modules/faulthandler.c
Modules/posixmodule.c

index 9b4ba5016ee400e4f087215b55ff997889a08afc..191d4cf691474597c53d34aed27e5b2ee8f9f153 100644 (file)
@@ -825,7 +825,7 @@ class PendingSignalsTests(unittest.TestCase):
 
         # Unblock SIGUSR1
         try:
-            # unblock the pending signal calls immediatly the signal handler
+            # unblock the pending signal calls immediately the signal handler
             signal.pthread_sigmask(signal.SIG_UNBLOCK, [signum])
         except ZeroDivisionError:
             pass
index c86a27f26e89d9ff15e9379dd5e4cdf38f9ce620..680f630ebdd9053805d20f51a2c14c95f9b87c91 100644 (file)
@@ -301,7 +301,7 @@ faulthandler_fatal_error(int signum)
         return;
     }
 #endif
-    /* call the previous signal handler: it is called immediatly if we use
+    /* call the previous signal handler: it is called immediately if we use
        sigaction() thanks to SA_NODEFER flag, otherwise it is deferred */
     raise(signum);
 }
index f3234a45389ad51e38442674bce2cd5db995d6cd..f97d70beb931ebef55d4cfefa7cfa029901db00b 100644 (file)
@@ -1742,7 +1742,7 @@ win32_xstat_impl(const char *path, struct win32_stat *result,
         /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */
         /* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink.
            Because of this, calls like GetFinalPathNameByHandle will return
-           the symlink path agin and not the actual final path. */
+           the symlink path again and not the actual final path. */
         FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS|
             FILE_FLAG_OPEN_REPARSE_POINT,
         NULL);
@@ -1838,7 +1838,7 @@ win32_xstat_impl_w(const wchar_t *path, struct win32_stat *result,
         /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */
         /* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink.
            Because of this, calls like GetFinalPathNameByHandle will return
-           the symlink path agin and not the actual final path. */
+           the symlink path again and not the actual final path. */
         FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS|
             FILE_FLAG_OPEN_REPARSE_POINT,
         NULL);