https://github.com/python/cpython/commit/8dcf4fbbad27d3a217851ce95a8474a7d0e6ec76
commit: 8dcf4fbbad27d3a217851ce95a8474a7d0e6ec76
branch: 3.12
author: Miss Islington (bot) <[email protected]>
committer: serhiy-storchaka <[email protected]>
date: 2024-02-01T22:35:43+02:00
summary:

[3.12] gh-89891: Refer SharedMemory implementation as POSIX (GH-104678) 
(GH-114873)

It only uses POSIX API.
(cherry picked from commit 500ede01178a8063bb2a3c664172dffa1b40d7c9)

Co-authored-by: Oleg Iarygin <[email protected]>

files:
M Doc/library/multiprocessing.shared_memory.rst

diff --git a/Doc/library/multiprocessing.shared_memory.rst 
b/Doc/library/multiprocessing.shared_memory.rst
index 47af64578bd529..03b2fcc7c2af7d 100644
--- a/Doc/library/multiprocessing.shared_memory.rst
+++ b/Doc/library/multiprocessing.shared_memory.rst
@@ -23,7 +23,7 @@ processes, a :class:`~multiprocessing.managers.BaseManager` 
subclass,
 :class:`~multiprocessing.managers.SharedMemoryManager`, is also provided in the
 :mod:`multiprocessing.managers` module.
 
-In this module, shared memory refers to "System V style" shared memory blocks
+In this module, shared memory refers to "POSIX style" shared memory blocks
 (though is not necessarily implemented explicitly as such) and does not refer
 to "distributed shared memory".  This style of shared memory permits distinct
 processes to potentially read and write to a common (or shared) region of

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to