summaryrefslogtreecommitdiff
path: root/Include/classobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-07-26 17:58:29 +0000
committerGuido van Rossum <guido@python.org>1995-07-26 17:58:29 +0000
commitbebdc376c3aa584bfb9825758d5cf8d5c09c8692 (patch)
tree3d1b6a3fab65ed5907155bc2f557efd375c27e17 /Include/classobject.h
parent454674d5dbbaf11364f947065cfbef98043c710d (diff)
downloadcpython-git-bebdc376c3aa584bfb9825758d5cf8d5c09c8692.tar.gz
changes for keyword args to built-in functions and classes
Diffstat (limited to 'Include/classobject.h')
-rw-r--r--Include/classobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/classobject.h b/Include/classobject.h
index f87d02e872..807dff7bc5 100644
--- a/Include/classobject.h
+++ b/Include/classobject.h
@@ -62,7 +62,7 @@ extern DL_IMPORT(PyTypeObject) PyClass_Type, PyInstance_Type, PyMethod_Type;
#define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
extern PyObject *PyClass_New Py_PROTO((PyObject *, PyObject *, PyObject *));
-extern PyObject *PyInstance_New Py_PROTO((PyObject *, PyObject *));
+extern PyObject *PyInstance_New Py_PROTO((PyObject *, PyObject *, PyObject *));
extern PyObject *PyMethod_New Py_PROTO((PyObject *, PyObject *, PyObject *));
extern PyObject *PyMethod_Function Py_PROTO((PyObject *));