summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/upload.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed import of configparser in the distutils module.Alexandre Vassalotti2008-05-161-1/+6
| | | | | | If configparser is unavailable, try to import configparser using its old name. This is required for backward-compatibility with older Python versions.
* Revert distutils changes done in r63248.Alexandre Vassalotti2008-05-151-1/+1
| | | | | | As explained by Marc-Andre Lemburg, distutils needs to stay backward-compatible. Therefore, it should use the old ConfigParser module name.
* Updated import statements to use the new `configparser` module name.Alexandre Vassalotti2008-05-141-1/+1
| | | | | | | | Updated the documentation to use the new name. Revert addition of the stub entry for the old name. Georg, I am reverting your changes since this commit should propagate to py3k.
* #1858: re-apply patch for this, adding the missing filesAndrew M. Kuchling2008-05-111-28/+13
|
* Revert r62998 as it broke the build (seems distutils.config is missing).Brett Cannon2008-05-101-13/+28
|
* #1858 from Tarek Ziade:Andrew M. Kuchling2008-05-101-28/+13
| | | | | | | | | Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI for discussion. The patch is slightly revised from Tarek's last patch: I've simplified the PyPIRCCommand.finalize_options() method to not look at sys.argv. Tests still pass.
* Removed uses of dict.has_key() from distutils, and uses ofGuido van Rossum2008-02-211-1/+1
| | | | | | callable() from copy_reg.py, so the interpreter now starts up without warnings when '-3' is given. More work like this needs to be done in the rest of the stdlib.
* Change location of the package index to pypi.python.org/pypiMartin v. Löwis2007-07-251-1/+1
|
* Fix SF#1457312: bad socket error handling in distutils "upload" command.Phillip J. Eby2006-07-101-1/+1
|
* In stdlib, use hashlib instead of deprecated md5 and sha modules.Georg Brandl2006-04-301-1/+1
|
* Implementation for patch request #1457316: support --identity optionPhillip J. Eby2006-03-301-1/+10
| | | | for setup.py "upload" command.
* Patch #1299675: Pass metadata in upload.Martin v. Löwis2006-01-081-9/+33
|
* Fix "upload" command garbling and truncating files on Windows. If it's aPhillip J. Eby2005-07-071-1/+1
| | | | binary file, use 'rb'!
* Whitespace normalization.Tim Peters2005-03-281-5/+4
|
* Add missing socket importMartin v. Löwis2005-03-241-0/+1
|
* Make dist_files a triple, with the Python target version included,Martin v. Löwis2005-03-231-7/+4
| | | | so that bdist_wininst can specify 'any'.
* Make the signature detached.Martin v. Löwis2005-03-221-1/+1
|
* Don't set the Python version for sdist uploads.Martin v. Löwis2005-03-221-0/+2
|
* Upload GPG signature.Martin v. Löwis2005-03-221-3/+16
|
* Actually add the implementation of the command.Martin v. Löwis2005-03-211-0/+150
|
* Add the upload command. Make all dist commands register theirMartin v. Löwis2005-03-211-0/+4
outputs with the distribution object.