Added pwd and grp modules

This commit is contained in:
Guido van Rossum 1991-04-16 08:39:39 +00:00
parent 0a697f686f
commit ac029489d0
1 changed files with 4 additions and 0 deletions

View File

@ -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 */