summaryrefslogtreecommitdiffstats
path: root/Include/stringobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-17 16:01:01 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-17 16:01:01 (GMT)
commit938178283c29cdc2c8f5004d58dff110ac907883 (patch)
tree7d38251f32f2bb35f58e40aed465785f6f7039f4 /Include/stringobject.h
parent8e8a525f229ef6a9e1b881e9b71eda72dabd5007 (diff)
downloadcpython-938178283c29cdc2c8f5004d58dff110ac907883.zip
cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.gz
cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.bz2
new names for lots of new functions
Diffstat (limited to 'Include/stringobject.h')
-rw-r--r--Include/stringobject.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Include/stringobject.h b/Include/stringobject.h
index 1dac98e..d3b6ce4 100644
--- a/Include/stringobject.h
+++ b/Include/stringobject.h
@@ -31,8 +31,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* String object interface */
/*
-123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
-
Type PyStringObject represents a character string. An extra zero byte is
reserved at the end to ensure it is zero-terminated, but a size is
present so strings with null bytes in them can be represented. This
@@ -66,7 +64,7 @@ extern PyObject *PyString_FromString Py_PROTO((char *));
extern int PyString_Size Py_PROTO((PyObject *));
extern char *PyString_AsString Py_PROTO((PyObject *));
extern void PyString_Concat Py_PROTO((PyObject **, PyObject *));
-extern void joinstring_decref Py_PROTO((PyObject **, PyObject *));
+extern void PyString_ConcatAndDel Py_PROTO((PyObject **, PyObject *));
extern int _PyString_Resize Py_PROTO((PyObject **, int));
extern PyObject *PyString_Format Py_PROTO((PyObject *, PyObject *));