summaryrefslogtreecommitdiffstats
path: root/Include/moduleobject.h
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-09-13 05:38:56 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-09-13 05:38:56 (GMT)
commit59c9a645e2f44b0b546225678d704787d9eae35d (patch)
tree56179a5250e747d330a93b4f5fe66eeb65859329 /Include/moduleobject.h
parent93a696f49171c0593b23817bbf56ab44269a9587 (diff)
downloadcpython-59c9a645e2f44b0b546225678d704787d9eae35d.zip
cpython-59c9a645e2f44b0b546225678d704787d9eae35d.tar.gz
cpython-59c9a645e2f44b0b546225678d704787d9eae35d.tar.bz2
SF bug [#460467] file objects should be subclassable.
Preliminary support. What's here works, but needs fine-tuning.
Diffstat (limited to 'Include/moduleobject.h')
-rw-r--r--Include/moduleobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h
index 8c3ba61..533567c 100644
--- a/Include/moduleobject.h
+++ b/Include/moduleobject.h
@@ -10,6 +10,7 @@ extern "C" {
extern DL_IMPORT(PyTypeObject) PyModule_Type;
#define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
+#define PyModule_CheckExact(op) ((op)->ob_type == &PyModule_Type)
extern DL_IMPORT(PyObject *) PyModule_New(char *);
extern DL_IMPORT(PyObject *) PyModule_GetDict(PyObject *);