diff options
author | Christian Heimes <christian@python.org> | 2022-03-07 12:36:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-07 12:36:47 (GMT) |
commit | ca9689f8dac01d27e041e1dbbdae146746d48ab3 (patch) | |
tree | c6dcb89cc77ea1faf55abf4d664349669808eb31 /Modules | |
parent | 3b3be05a164da43f201e35b6dafbc840993a4d18 (diff) | |
download | cpython-ca9689f8dac01d27e041e1dbbdae146746d48ab3.zip cpython-ca9689f8dac01d27e041e1dbbdae146746d48ab3.tar.gz cpython-ca9689f8dac01d27e041e1dbbdae146746d48ab3.tar.bz2 |
bpo-46933: Make pwd module optional (GH-31700)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Setup.bootstrap.in (renamed from Modules/Setup.bootstrap) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup.bootstrap b/Modules/Setup.bootstrap.in index f23da60..ec72497 100644 --- a/Modules/Setup.bootstrap +++ b/Modules/Setup.bootstrap.in @@ -32,4 +32,4 @@ _stat _stat.c _symtable symtablemodule.c # for systems without $HOME env, used by site._getuserbase() -pwd pwdmodule.c +@MODULE_PWD_TRUE@pwd pwdmodule.c |