Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1644,7 +1644,10 @@ inherited by child processes.
Note that *lock* is a keyword only argument.

Note that an array of :data:`ctypes.c_char` has *value* and *raw*
attributes which allow one to use it to store and retrieve strings.
attributes which can both be used to store and retrieve byte strings.
While *raw* allows interaction with a :class:`bytes` object the full size of
the array, reading *value* will terminate after a null byte, like most
programming languages handle strings.


The :mod:`multiprocessing.sharedctypes` module
Expand Down
Loading