summaryrefslogtreecommitdiffstats
path: root/Include/stringobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-04 19:06:22 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-04 19:06:22 (GMT)
commit5799b520086129ed8aaadeb3b941b3000a42576a (patch)
treee94f50fbb81224744449a078991c315c18ad2ac9 /Include/stringobject.h
parentaf5b83ec4afa74b3bd1b0750f14fc24bf111c059 (diff)
downloadcpython-5799b520086129ed8aaadeb3b941b3000a42576a.zip
cpython-5799b520086129ed8aaadeb3b941b3000a42576a.tar.gz
cpython-5799b520086129ed8aaadeb3b941b3000a42576a.tar.bz2
Added 1995 copyright.
object.h: made sizes and refcnts signed ints. stringobject.h: make getstrsize() signed int. methodobject.h: add METH_VARARGS and METH_FREENAME flag bit definitions.
Diffstat (limited to 'Include/stringobject.h')
-rw-r--r--Include/stringobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/stringobject.h b/Include/stringobject.h
index b6ec1c8..67bb57b 100644
--- a/Include/stringobject.h
+++ b/Include/stringobject.h
@@ -5,8 +5,8 @@ extern "C" {
#endif
/***********************************************************
-Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
-Amsterdam, The Netherlands.
+Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
+The Netherlands.
All Rights Reserved
@@ -63,7 +63,7 @@ extern DL_IMPORT typeobject Stringtype;
extern object *newsizedstringobject PROTO((char *, int));
extern object *newstringobject PROTO((char *));
-extern unsigned int getstringsize PROTO((object *));
+extern int getstringsize PROTO((object *));
extern char *getstringvalue PROTO((object *));
extern void joinstring PROTO((object **, object *));
extern void joinstring_decref PROTO((object **, object *));