summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/check.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix setup.py register failure with invalid rst in description (#13614).Éric Araujo2012-12-091-0/+3
| | | | Original patch by Julien Courteau and Pierre Paul Lefebvre.
* Fix distutils’ check and register Unicode handling (#13114).Éric Araujo2011-10-091-0/+3
| | | | | | | | | The check command was fixed by Kirill Kuzminykh. The register command was using StringIO.getvalue, which uses “''.join” and thus coerces to str using the default encoding (ASCII), so I changed the code to use one extra intermediary list and correctly encode to UTF-8.
* Use standard comma punctuation; reword some sentences in the docsAndrew M. Kuchling2009-10-051-1/+1
|
* DistutilsSetupError was not raised when one single warning occuredTarek Ziadé2009-04-171-1/+1
|
* testing a full check caseTarek Ziadé2009-04-111-1/+1
|
* #5732: added the check command into DistutilsTarek Ziadé2009-04-111-0/+143