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
ff7ffdd7
Commit
ff7ffdd7
authored
Nov 09, 2010
by
Ask Solem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #8028: multiprocessing: Documented that ``Process.terminate``
is only intented for use by the parent process.
parent
518eaa8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
Doc/library/multiprocessing.rst
Doc/library/multiprocessing.rst
+3
-3
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/multiprocessing.rst
View file @
ff7ffdd7
...
...
@@ -422,9 +422,9 @@ The :mod:`multiprocessing` package mostly replicates the API of the
acquired a lock or semaphore etc. then terminating it is liable to
cause other processes to deadlock.
Note that the :meth:`start`, :meth:`join`, :meth:`is_alive`
and
:
attr:`exit_code` methods should only be called by the process that created
the process object.
Note that the :meth:`start`, :meth:`join`, :meth:`is_alive`
,
:
meth:`terminate` and :attr:`exit_code` methods should only be called by
the process
that created the process
object.
Example usage of some of the methods of :class:`Process`:
...
...
Misc/NEWS
View file @
ff7ffdd7
...
...
@@ -2879,6 +2879,9 @@ Build
Documentation
-------------
- Issue #8028: ``terminate()`` was missing from the list of
``multiprocessing.Process`` methods only intended for use by the parent.
- Issue #7707: Document that ``multiprocessing.Queue`` operations during import
can lead to deadlocks.
...
...
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