Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Simplify markup. | Georg Brandl | 2009-04-13 | 1 | -6/+3 |
| | |||||
* | Fixed #5607: Distutils test_get_platform was failing fo Mac OS X fat binaries. | Tarek Ziadé | 2009-04-13 | 2 | -1/+33 |
| | |||||
* | Fixed another typos. (email.Utils => email.utils) | Hirokazu Yamamoto | 2009-04-13 | 1 | -2/+2 |
| | |||||
* | Fixed typo. (email.Utils => email.utils) | Hirokazu Yamamoto | 2009-04-13 | 1 | -2/+2 |
| | |||||
* | Adjust test_asyncore to account for intentional asyncore behavior change | R. David Murray | 2009-04-13 | 1 | -4/+1 |
| | | | | introduced by r70934 that was causing a test failure when run under -O. | ||||
* | Fixed incorrect object passed into format_float_internal(). This was ↵ | Eric Smith | 2009-04-13 | 1 | -1/+1 |
| | | | | resulting in a conversion being done twice. | ||||
* | fix missing quote | Benjamin Peterson | 2009-04-12 | 1 | -1/+1 |
| | |||||
* | fix extra parenthesis #5774 | Benjamin Peterson | 2009-04-12 | 1 | -1/+1 |
| | |||||
* | #5719: add short usage example to optparse docstring. | Georg Brandl | 2009-04-12 | 1 | -0/+13 |
| | |||||
* | remove useless import | Benjamin Peterson | 2009-04-12 | 1 | -1/+0 |
| | |||||
* | #5741: dont disallow double percent signs in SafeConfigParser.set() keys. | Georg Brandl | 2009-04-12 | 3 | -4/+11 |
| | |||||
* | removed string usage and added a test for _clean | Tarek Ziadé | 2009-04-12 | 2 | -4/+22 |
| | |||||
* | added a test for finalize_options | Tarek Ziadé | 2009-04-12 | 2 | -7/+21 |
| | |||||
* | added a simple test for search_cpp | Tarek Ziadé | 2009-04-12 | 2 | -5/+15 |
| | |||||
* | pep8-fied the module before adding tests | Tarek Ziadé | 2009-04-12 | 1 | -37/+25 |
| | |||||
* | removed the print statements and added a test | Tarek Ziadé | 2009-04-12 | 2 | -6/+52 |
| | |||||
* | #5704: let python -3 imply -t as well. | Georg Brandl | 2009-04-12 | 2 | -0/+6 |
| | |||||
* | Take credit for my patch for issue 5237. | Eric Smith | 2009-04-12 | 1 | -1/+1 |
| | |||||
* | fix markup | Benjamin Peterson | 2009-04-11 | 1 | -10/+9 |
| | |||||
* | ignore py3_test_grammar when compiling the library | Benjamin Peterson | 2009-04-11 | 1 | -2/+4 |
| | |||||
* | Take credit for a patch of mine. | Georg Brandl | 2009-04-11 | 1 | -2/+2 |
| | |||||
* | Make test_asyncore tests match code changes introduced by the | R. David Murray | 2009-04-11 | 1 | -37/+20 |
| | | | | | fix to Issue1161031, refactoring the test to simplify it in the process. | ||||
* | Re-word | Andrew M. Kuchling | 2009-04-11 | 1 | -3/+3 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2009-04-11 | 1 | -12/+86 |
| | |||||
* | testing a full check case | Tarek Ziadé | 2009-04-11 | 2 | -1/+8 |
| | |||||
* | #5732: added the check command into Distutils | Tarek Ziadé | 2009-04-11 | 6 | -1/+303 |
| | |||||
* | fixed link | Tarek Ziadé | 2009-04-11 | 1 | -1/+1 |
| | |||||
* | Issue 5354: Provide a standardised testing mechanism for doing fresh imports ↵ | Nick Coghlan | 2009-04-11 | 4 | -35/+100 |
| | | | | of modules, including the ability to block extension modules in order to test the pure Python fallbacks | ||||
* | remove unpleasant exec | Chris Withers | 2009-04-11 | 1 | -5/+11 |
| | |||||
* | Add examples. | Raymond Hettinger | 2009-04-10 | 1 | -74/+37 |
| | |||||
* | #5698: Fix casing of !DOCTYPE to conform to W3C specs. | Georg Brandl | 2009-04-10 | 1 | -1/+1 |
| | |||||
* | Let "lambda" point to the correct heading. | Georg Brandl | 2009-04-10 | 1 | -2/+1 |
| | |||||
* | Fix the count of datatypes. | Raymond Hettinger | 2009-04-10 | 1 | -1/+1 |
| | |||||
* | Clarify the table entries for combinatorics. | Raymond Hettinger | 2009-04-10 | 1 | -8/+13 |
| | |||||
* | IE needs the border-left:0 for some reason. | Raymond Hettinger | 2009-04-10 | 1 | -1/+2 |
| | |||||
* | More table clean-up | Raymond Hettinger | 2009-04-10 | 1 | -6/+2 |
| | |||||
* | Center table headings. | Raymond Hettinger | 2009-04-09 | 1 | -0/+4 |
| | |||||
* | More table formatting. | Raymond Hettinger | 2009-04-09 | 1 | -1/+6 |
| | |||||
* | Add note on using keyword arguments with OrderedDict. | Raymond Hettinger | 2009-04-09 | 1 | -0/+4 |
| | |||||
* | Issue #2170: refactored xml.dom.minidom.normalize, increasing both | R. David Murray | 2009-04-09 | 3 | -18/+175 |
| | | | | its clarity and its speed. | ||||
* | Fixed #5731: Distutils bdist_wininst no longer worked on non-Windows platforms | Tarek Ziadé | 2009-04-09 | 3 | -3/+40 |
| | |||||
* | Add a custom stylesheet with better table formatting. | Georg Brandl | 2009-04-09 | 1 | -0/+415 |
| | |||||
* | Issue 5665: add more pickling tests. | Collin Winter | 2009-04-09 | 5 | -21/+428 |
| | | | | | | | | | | | - Add tests for the module-level load() and dump() functions. - Add tests for cPickle's internal data structures, stressing workloads with many gets/puts. - Add tests for the Pickler and Unpickler classes, in particular the memo attribute. - test_xpickle is extended to test backwards compatibility with Python 2.4, 2.5 and 2.6 by round-tripping pickled objects through a worker process. This is guarded with a regrtest -u xpickle resource. | ||||
* | Typo fixes | Andrew M. Kuchling | 2009-04-09 | 2 | -7/+7 |
| | |||||
* | Add items | Andrew M. Kuchling | 2009-04-09 | 1 | -5/+72 |
| | |||||
* | Update ignore file for suspicious builder. | Georg Brandl | 2009-04-08 | 1 | -0/+2 |
| | |||||
* | Remove redundant backtick. | Georg Brandl | 2009-04-08 | 1 | -1/+1 |
| | |||||
* | fix syntax | Benjamin Peterson | 2009-04-08 | 1 | -1/+1 |
| | |||||
* | these must be installed to correctly run tests | Benjamin Peterson | 2009-04-08 | 1 | -1/+2 |
| | |||||
* | Minor factoring. | Raymond Hettinger | 2009-04-08 | 1 | -1/+1 |
| |