From: Guido van Rossum Date: Tue, 16 Apr 1991 08:39:39 +0000 (+0000) Subject: Added pwd and grp modules X-Git-Tag: v0.9.8~979 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac029489d06907aeb85ae243db84b6834e9d82aa;p=thirdparty%2FPython%2Fcpython.git Added pwd and grp modules --- diff --git a/Modules/config.c.in b/Modules/config.c.in index 40facc271fd7..543672309d22 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -126,6 +126,8 @@ extern void inittime(); extern void initmath(); extern void initregexp(); extern void initposix(); +extern void initpwd(); +extern void initgrp(); #ifdef USE_AUDIO extern void initaudio(); #endif @@ -156,6 +158,8 @@ struct { {"math", initmath}, {"regexp", initregexp}, {"posix", initposix}, + {"pwd", initpwd}, + {"grp", initgrp}, /* Optional modules */