summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_cell.h
Commit message (Collapse)AuthorAgeFilesLines
* gh-117323: Make `cell` thread-safe in free-threaded builds (#117330)Sam Gross2024-03-291-0/+48
Use critical sections to lock around accesses to cell contents. The critical sections are no-ops in the default (with GIL) build.