We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b57f3d commit 2576390Copy full SHA for 2576390
1 file changed
Objects/stringlib/README.txt
@@ -13,7 +13,8 @@ STRINGLIB_CHAR
13
14
STRINGLIB_EMPTY
15
16
- a PyObject representing the empty string
+ a PyObject representing the empty string, only to be used if
17
+ STRINGLIB_MUTABLE is 0
18
19
Py_ssize_t STRINGLIB_LEN(PyObject*)
20
@@ -31,9 +32,9 @@ STRINGLIB_CHAR* STRINGLIB_STR(PyObject*)
31
32
33
int STRINGLIB_CHECK_EXACT(PyObject *)
34
- returns true if the object is an instance of our type, not a subclass.
35
+ returns true if the object is an instance of our type, not a subclass
36
37
STRINGLIB_MUTABLE
38
- Must be 0 or 1 to tell the cpp macros in stringlib code if the object
39
- being operated on is mutable or not.
+ must be 0 or 1 to tell the cpp macros in stringlib code if the object
40
+ being operated on is mutable or not
0 commit comments