diff options
author | Guido van Rossum <guido@python.org> | 1993-11-23 17:53:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-11-23 17:53:17 (GMT) |
commit | b376a4ad1848d1319245f440c85ef265e1fef401 (patch) | |
tree | dc431ee0a195eb95dacec0edd25fdc1f1b7edd8e /Include | |
parent | 83eb962528e61dadd75cfc38e0aa6469d91d1a66 (diff) | |
download | cpython-b376a4ad1848d1319245f440c85ef265e1fef401.zip cpython-b376a4ad1848d1319245f440c85ef265e1fef401.tar.gz cpython-b376a4ad1848d1319245f440c85ef265e1fef401.tar.bz2 |
* timemodule.c: Add hack for Solaris 2.
* posixmodule.c: don't prototype getcwd() -- it's not portable...
* mappingobject.c: double-check validity of last_name_char in
dict{lookup,insert,remove}.
* arraymodule.c: need memmove only for non-STDC Suns.
* Makefile: comment out HTML_LIBS and XT_USE by default
* pythonmain.c: don't prototype getopt() -- it's not standardized
* socketmodule.c: cast flags arg to {get,set}sockopt() and addrbuf arg to
recvfrom() to (ANY*).
* pythonrun.c (initsigs): fix prototype, make it static
* intobject.c (LONG_BIT): only #define it if not already defined
* classobject.[ch]: remove all references to unused instance_convert()
* mappingobject.c (getmappingsize): Don't return NULL in int function.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/classobject.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/classobject.h b/Include/classobject.h index aa1cb6b..a244ef8 100644 --- a/Include/classobject.h +++ b/Include/classobject.h @@ -59,8 +59,6 @@ extern object *instancemethodgetfunc PROTO((object *)); extern object *instancemethodgetself PROTO((object *)); extern object *instancemethodgetclass PROTO((object *)); -extern object *instance_convert PROTO((object *, char *)); - extern int issubclass PROTO((object *, object *)); #ifdef __cplusplus |