summaryrefslogtreecommitdiff
path: root/Include/moduleobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-10-26 15:00:11 +0000
committerGuido van Rossum <guido@python.org>1990-10-26 15:00:11 +0000
commit0558a205a37a2570cba43acebbe94d50643024d1 (patch)
tree66ea321c3baf9e9e1689ffc07d098a448a3ea838 /Include/moduleobject.h
parent738d4ddf813d88de6d1c3c1c225857215fe7c13d (diff)
downloadcpython-git-0558a205a37a2570cba43acebbe94d50643024d1.tar.gz
Added getmodulename() public interface.
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 442ca11302..99d3d52f40 100644
--- a/Include/moduleobject.h
+++ b/Include/moduleobject.h
@@ -7,3 +7,4 @@ extern typeobject Moduletype;
extern object *newmoduleobject PROTO((char *));
extern object *getmoduledict PROTO((object *));
extern int setmoduledict PROTO((object *, object *));
+extern char *getmodulename PROTO((object *));