Skip to content

Commit 0274d83

Browse files
InternalDocs: Correct struct path for latin1 singletons in string_interning.md (GH-148358)
1 parent 8fc66ae commit 0274d83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

InternalDocs/string_interning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dynamic interning.
1616

1717
The 256 possible one-character latin-1 strings, which can be retrieved with
1818
`_Py_LATIN1_CHR(c)`, are stored in statically allocated arrays,
19-
`_PyRuntime.static_objects.strings.ascii` and
20-
`_PyRuntime.static_objects.strings.latin1`.
19+
`_PyRuntime.static_objects.singletons.strings.ascii` and
20+
`_PyRuntime.static_objects.singletons.strings.latin1`.
2121

2222
Longer singleton strings are marked in C source with `_Py_ID` (if the string
2323
is a valid C identifier fragment) or `_Py_STR` (if it needs a separate

0 commit comments

Comments
 (0)