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
8 changes: 8 additions & 0 deletions mypyc/doc/librt_strings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ low-level string and bytes utilities.
Classes
-------

Thread safety
^^^^^^^^^^^^^

``BytesWriter`` and ``StringWriter`` objects are unsafe to access from another
thread if they are concurrently modified (on free-threaded Python builds). They are optimized
for maximal performance, and they aren't fully synchronized. Read-only access from multiple
threads is safe.

BytesWriter
^^^^^^^^^^^

Expand Down
Loading