diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-12-13 20:53:26 -0500 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-12-13 20:53:26 -0500 |
commit | 3d87442bf2dcc1c17fca838097ec6affb39f6a6d (patch) | |
tree | 54c845ee3b1d34d131360a28da2296bd79292788 /Modules | |
parent | 44bb67ca6ac3e29f63727472c59155509e9964a9 (diff) | |
parent | 71af1bb2c0c981484b757dae35818682616cf058 (diff) | |
download | cpython-3d87442bf2dcc1c17fca838097ec6affb39f6a6d.tar.gz |
Merge: #19970: Fix some comment typos.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/faulthandler.c | 2 | ||||
-rw-r--r-- | Modules/posixmodule.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c index 27b1d54c60..fff960fa96 100644 --- a/Modules/faulthandler.c +++ b/Modules/faulthandler.c @@ -303,7 +303,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); } diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index d0fbf5aa1a..a64285e955 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1666,7 +1666,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); @@ -1762,7 +1762,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); |