Skip to content

Commit

Permalink
Update Doc/library/multiprocessing.shared_memory.rst
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Pitrou <[email protected]>
  • Loading branch information
pan324 and pitrou authored Oct 19, 2023
1 parent 9ef1ff3 commit e5fe674
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Doc/library/multiprocessing.shared_memory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ copying of data.
.. method:: unlink()

Deletes the underlying shared memory block. This should be called only
once per shared memory block regardless of the number of handles to it.
once per shared memory block regardless of the number of handles to it,
even in other processes.
:meth:`unlink()` and :meth:`close()` can be called in any order, but
trying to access data inside a shared memory block after :meth:`unlink()`
may result in memory access errors, depending on platform.
Expand Down

0 comments on commit e5fe674

Please sign in to comment.