mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Fix merge breakage.
This commit is contained in:
parent
9f2e346911
commit
5d7428b8ce
9 changed files with 26 additions and 26 deletions
|
@ -85,7 +85,7 @@ PyAPI_FUNC(void) _Py_ReleaseInternedStrings(void);
|
|||
|
||||
/* Macro, trading safety for speed */
|
||||
#define PyString_AS_STRING(op) (assert(PyString_Check(op)),(((PyStringObject *)(op))->ob_sval))
|
||||
#define PyString_GET_SIZE(op) (assert(PyString_Check(op)),(((PyStringObject *)(op))->ob_size))
|
||||
#define PyString_GET_SIZE(op) (assert(PyString_Check(op)),Py_Size(op))
|
||||
|
||||
/* _PyString_Join(sep, x) is like sep.join(x). sep must be PyStringObject*,
|
||||
x must be an iterable object. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue