Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
fc06999e
Commit
fc06999e
authored
Dec 13, 2013
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#19970: Fix some comment typos.
Report and patch by Vajrasky Kok.
parent
98620d87
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Lib/test/test_signal.py
Lib/test/test_signal.py
+1
-1
Modules/faulthandler.c
Modules/faulthandler.c
+1
-1
Modules/posixmodule.c
Modules/posixmodule.c
+2
-2
No files found.
Lib/test/test_signal.py
View file @
fc06999e
...
@@ -825,7 +825,7 @@ class PendingSignalsTests(unittest.TestCase):
...
@@ -825,7 +825,7 @@ class PendingSignalsTests(unittest.TestCase):
# Unblock SIGUSR1
# Unblock SIGUSR1
try:
try:
# unblock the pending signal calls immediatly the signal handler
# unblock the pending signal calls immediat
e
ly the signal handler
signal.pthread_sigmask(signal.SIG_UNBLOCK, [signum])
signal.pthread_sigmask(signal.SIG_UNBLOCK, [signum])
except ZeroDivisionError:
except ZeroDivisionError:
pass
pass
...
...
Modules/faulthandler.c
View file @
fc06999e
...
@@ -301,7 +301,7 @@ faulthandler_fatal_error(int signum)
...
@@ -301,7 +301,7 @@ faulthandler_fatal_error(int signum)
return
;
return
;
}
}
#endif
#endif
/* call the previous signal handler: it is called immediatly if we use
/* call the previous signal handler: it is called immediat
e
ly if we use
sigaction() thanks to SA_NODEFER flag, otherwise it is deferred */
sigaction() thanks to SA_NODEFER flag, otherwise it is deferred */
raise
(
signum
);
raise
(
signum
);
}
}
...
...
Modules/posixmodule.c
View file @
fc06999e
...
@@ -1742,7 +1742,7 @@ win32_xstat_impl(const char *path, struct win32_stat *result,
...
@@ -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_BACKUP_SEMANTICS is required to open a directory */
/* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink.
/* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink.
Because of this, calls like GetFinalPathNameByHandle will return
Because of this, calls like GetFinalPathNameByHandle will return
the symlink path agin and not the actual final path. */
the symlink path ag
a
in and not the actual final path. */
FILE_ATTRIBUTE_NORMAL
|
FILE_FLAG_BACKUP_SEMANTICS
|
FILE_ATTRIBUTE_NORMAL
|
FILE_FLAG_BACKUP_SEMANTICS
|
FILE_FLAG_OPEN_REPARSE_POINT
,
FILE_FLAG_OPEN_REPARSE_POINT
,
NULL
);
NULL
);
...
@@ -1838,7 +1838,7 @@ win32_xstat_impl_w(const wchar_t *path, struct win32_stat *result,
...
@@ -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_BACKUP_SEMANTICS is required to open a directory */
/* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink.
/* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink.
Because of this, calls like GetFinalPathNameByHandle will return
Because of this, calls like GetFinalPathNameByHandle will return
the symlink path agin and not the actual final path. */
the symlink path ag
a
in and not the actual final path. */
FILE_ATTRIBUTE_NORMAL
|
FILE_FLAG_BACKUP_SEMANTICS
|
FILE_ATTRIBUTE_NORMAL
|
FILE_FLAG_BACKUP_SEMANTICS
|
FILE_FLAG_OPEN_REPARSE_POINT
,
FILE_FLAG_OPEN_REPARSE_POINT
,
NULL
);
NULL
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment