Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
string_interning.md
1 parent 8fc66ae commit 0274d83Copy full SHA for 0274d83
1 file changed
InternalDocs/string_interning.md
@@ -16,8 +16,8 @@ dynamic interning.
16
17
The 256 possible one-character latin-1 strings, which can be retrieved with
18
`_Py_LATIN1_CHR(c)`, are stored in statically allocated arrays,
19
-`_PyRuntime.static_objects.strings.ascii` and
20
-`_PyRuntime.static_objects.strings.latin1`.
+`_PyRuntime.static_objects.singletons.strings.ascii` and
+`_PyRuntime.static_objects.singletons.strings.latin1`.
21
22
Longer singleton strings are marked in C source with `_Py_ID` (if the string
23
is a valid C identifier fragment) or `_Py_STR` (if it needs a separate
0 commit comments