diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-01-08 23:56:31 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-01-08 23:56:31 (GMT) |
commit | 1a240fb9f038839f0e6f157ce4c7fcbcbf777ebc (patch) | |
tree | f60ab4380cf7de758fda0994eb9c0071e489f041 /Lib/distutils/dist.py | |
parent | 5b913e31a1cbcea7807fca4cc272079039a3bd67 (diff) | |
download | cpython-1a240fb9f038839f0e6f157ce4c7fcbcbf777ebc.zip cpython-1a240fb9f038839f0e6f157ce4c7fcbcbf777ebc.tar.gz cpython-1a240fb9f038839f0e6f157ce4c7fcbcbf777ebc.tar.bz2 |
fixed #4394 make the storage of the password optional in .pypirc
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r-- | Lib/distutils/dist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index c15ca97..18cc910 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -206,6 +206,7 @@ Common commands: (see '--help-commands' for more) self.extra_path = None self.scripts = None self.data_files = None + self.password = '' # And now initialize bookkeeping stuff that can't be supplied by # the caller at all. 'command_obj' maps command names to |