Skip to content

Commit 26105b0

Browse files
[3.13] InternalDocs: Correct struct path for latin1 singletons in string_interning.md (GH-148358) (#148491)
(cherry picked from commit 0274d83) Co-authored-by: Stan Ulbrych <stan@python.org>
1 parent f35859b commit 26105b0

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
@@ -15,8 +15,8 @@ dynamic interning.
1515

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

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

0 commit comments

Comments
 (0)