Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #10510: make distuitls upload/register use HTML standards compliant CRLF. | R David Murray | 2014-09-27 | 1 | -5/+4 |
| | | | | Patch by Ian Cordasco, approved by Éric Araujo. | ||||
* | Issue #21722: The distutils "upload" command now exits with a non-zero ↵ | Antoine Pitrou | 2014-06-19 | 1 | -4/+5 |
| | | | | | | return code when uploading fails. Patch by Martin Dengler. | ||||
* | Issue #12853: Correct NameError in distutils upload command. | Jason R. Coombs | 2013-11-16 | 1 | -1/+1 |
| | |||||
* | Fix for issue10367, courtesy of Daniel Tavares. | Phillip J. Eby | 2010-12-03 | 1 | -3/+3 |
| | |||||
* | Merged revisions 86223-86224,86226,86234 via svnmerge from | Éric Araujo | 2010-11-06 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86223 | eric.araujo | 2010-11-06 00:51:56 +0100 (sam., 06 nov. 2010) | 2 lines Always close files in distutils code and tests (#10252). ........ r86224 | eric.araujo | 2010-11-06 00:58:34 +0100 (sam., 06 nov. 2010) | 2 lines Add missing entry for r86223. ........ r86226 | eric.araujo | 2010-11-06 00:59:32 +0100 (sam., 06 nov. 2010) | 2 lines Of course, I forgot one file in r86223. ........ r86234 | eric.araujo | 2010-11-06 03:10:32 +0100 (sam., 06 nov. 2010) | 2 lines Also close file descriptors from os.popen and subprocess.Popen ........ | ||||
* | Merged revisions 84614 via svnmerge from | Éric Araujo | 2010-09-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84614 | eric.araujo | 2010-09-08 02:00:45 +0200 (mer., 08 sept. 2010) | 5 lines Follow-up to #9199: Fix str.join use, add newlines. Thanks to Konrad Delong for writing a test for upload_docs --show-response in distutils2, letting me catch my mistake. ........ | ||||
* | Merged revisions 84611 via svnmerge from | Éric Araujo | 2010-09-07 | 1 | -1/+2 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84611 | eric.araujo | 2010-09-08 01:08:57 +0200 (mer., 08 sept. 2010) | 2 lines Fix incorrect use of Command.announce (#9199) ........ | ||||
* | Fixed #7748: now upload and register commands don't need to force the ↵ | Tarek Ziadé | 2010-01-24 | 1 | -1/+1 |
| | | | | encoding anymore : DistributionMetada returns utf8 strings | ||||
* | massive import cleaning in Distutils | Tarek Ziadé | 2009-12-21 | 1 | -3/+1 |
| | |||||
* | Fixed #7552: fixed distutils.command.upload failure on very long passwords | Tarek Ziadé | 2009-12-20 | 1 | -3/+3 |
| | |||||
* | Issue #6286: distutils upload command now uses urllib2 | Tarek Ziadé | 2009-06-15 | 1 | -28/+28 |
| | |||||
* | code cleanup | Tarek Ziadé | 2009-06-15 | 1 | -13/+9 |
| | |||||
* | more tests for the upload command | Tarek Ziadé | 2009-03-31 | 1 | -1/+1 |
| | |||||
* | Issue #5052: make Distutils compatible with 2.3 again. | Tarek Ziadé | 2009-02-27 | 1 | -1/+6 |
| | |||||
* | fixed #4394 make the storage of the password optional in .pypirc | Tarek Ziadé | 2009-01-08 | 1 | -0/+5 |
| | |||||
* | ConfigParser renaming reversal part 3: move module into place and adapt imports. | Georg Brandl | 2008-05-25 | 1 | -5/+1 |
| | |||||
* | Fixed import of configparser in the distutils module. | Alexandre Vassalotti | 2008-05-16 | 1 | -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 Vassalotti | 2008-05-15 | 1 | -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 Vassalotti | 2008-05-14 | 1 | -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 files | Andrew M. Kuchling | 2008-05-11 | 1 | -28/+13 |
| | |||||
* | Revert r62998 as it broke the build (seems distutils.config is missing). | Brett Cannon | 2008-05-10 | 1 | -13/+28 |
| | |||||
* | #1858 from Tarek Ziade: | Andrew M. Kuchling | 2008-05-10 | 1 | -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 of | Guido van Rossum | 2008-02-21 | 1 | -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/pypi | Martin v. Löwis | 2007-07-25 | 1 | -1/+1 |
| | |||||
* | Fix SF#1457312: bad socket error handling in distutils "upload" command. | Phillip J. Eby | 2006-07-10 | 1 | -1/+1 |
| | |||||
* | In stdlib, use hashlib instead of deprecated md5 and sha modules. | Georg Brandl | 2006-04-30 | 1 | -1/+1 |
| | |||||
* | Implementation for patch request #1457316: support --identity option | Phillip J. Eby | 2006-03-30 | 1 | -1/+10 |
| | | | | for setup.py "upload" command. | ||||
* | Patch #1299675: Pass metadata in upload. | Martin v. Löwis | 2006-01-08 | 1 | -9/+33 |
| | |||||
* | Fix "upload" command garbling and truncating files on Windows. If it's a | Phillip J. Eby | 2005-07-07 | 1 | -1/+1 |
| | | | | binary file, use 'rb'! | ||||
* | Whitespace normalization. | Tim Peters | 2005-03-28 | 1 | -5/+4 |
| | |||||
* | Add missing socket import | Martin v. Löwis | 2005-03-24 | 1 | -0/+1 |
| | |||||
* | Make dist_files a triple, with the Python target version included, | Martin v. Löwis | 2005-03-23 | 1 | -7/+4 |
| | | | | so that bdist_wininst can specify 'any'. | ||||
* | Make the signature detached. | Martin v. Löwis | 2005-03-22 | 1 | -1/+1 |
| | |||||
* | Don't set the Python version for sdist uploads. | Martin v. Löwis | 2005-03-22 | 1 | -0/+2 |
| | |||||
* | Upload GPG signature. | Martin v. Löwis | 2005-03-22 | 1 | -3/+16 |
| | |||||
* | Actually add the implementation of the command. | Martin v. Löwis | 2005-03-21 | 1 | -0/+150 |
| | |||||
* | Add the upload command. Make all dist commands register their | Martin v. Löwis | 2005-03-21 | 1 | -0/+4 |
outputs with the distribution object. |