diff options
author | Guido van Rossum <guido@python.org> | 1990-10-26 15:00:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-10-26 15:00:11 (GMT) |
commit | 0558a205a37a2570cba43acebbe94d50643024d1 (patch) | |
tree | 66ea321c3baf9e9e1689ffc07d098a448a3ea838 /Include/moduleobject.h | |
parent | 738d4ddf813d88de6d1c3c1c225857215fe7c13d (diff) | |
download | cpython-0558a205a37a2570cba43acebbe94d50643024d1.zip cpython-0558a205a37a2570cba43acebbe94d50643024d1.tar.gz cpython-0558a205a37a2570cba43acebbe94d50643024d1.tar.bz2 |
Added getmodulename() public interface.
Diffstat (limited to 'Include/moduleobject.h')
-rw-r--r-- | Include/moduleobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h index 442ca11..99d3d52 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 *)); |