| Commit message (Expand) | Author | Age | Files | Lines |
| * | Whitespace normalization. | Tim Peters | 2004-09-01 | 1 | -3/+3 |
|
|
| * | Missed some occurrences of test_mpz | Andrew M. Kuchling | 2004-08-31 | 1 | -3/+0 |
|
|
| * | Remove test output for rotor, xreadline | Andrew M. Kuchling | 2004-08-31 | 2 | -9/+0 |
|
|
| * | Remove test for mpz | Andrew M. Kuchling | 2004-08-31 | 1 | -89/+0 |
|
|
| * | Remove tests for mpz, rotor, xreadlines | Andrew M. Kuchling | 2004-08-31 | 3 | -84/+0 |
|
|
| * | Use multi-line import | Andrew M. Kuchling | 2004-08-31 | 1 | -4/+4 |
|
|
| * | SF patch #1007189, multi-line imports, for instance: | Anthony Baxter | 2004-08-31 | 4 | -2/+62 |
|
|
| * | Changed Karatsuba cutoff to match current reality. | Tim Peters | 2004-08-30 | 1 | -1/+1 |
|
|
| * | Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists i... | Johannes Gijsbers | 2004-08-30 | 2 | -0/+12 |
|
|
| * | Teach the random module about os.urandom(). | Raymond Hettinger | 2004-08-30 | 1 | -0/+102 |
|
|
| * | Whitespace normalization. test_difflib passes again. | Tim Peters | 2004-08-29 | 2 | -70/+70 |
|
|
| * | Reverting whitespace normalization. test_difflib fails with it -- the | Tim Peters | 2004-08-29 | 1 | -16/+16 |
|
|
| * | Whitespace normalization. | Tim Peters | 2004-08-29 | 2 | -17/+17 |
|
|
| * | Patch #914575: difflib side by side diff support, diff.py s/b/s HTML option. | Martin v. Löwis | 2004-08-29 | 2 | -2/+652 |
|
|
| * | Patch #934711: Expose platform-specific entropy. | Martin v. Löwis | 2004-08-29 | 1 | -0/+11 |
|
|
| * | SF feature request #992967: array.array objects should support sequences. | Raymond Hettinger | 2004-08-29 | 1 | -3/+35 |
|
|
| * | Whitespace normalization. | Tim Peters | 2004-08-29 | 1 | -2/+2 |
|
|
| * | Added an __iter__ method for test suites. | Jim Fulton | 2004-08-28 | 1 | -0/+31 |
|
|
| * | setUp and tearDown functions are now passed the test object | Jim Fulton | 2004-08-28 | 1 | -2/+2 |
|
|
| * | - setUp and tearDown functions are now passed the test object | Jim Fulton | 2004-08-28 | 1 | -5/+111 |
|
|
| * | Removed old "if 0:" block for leak detection; wouldn't work anymore anyway. | Tim Peters | 2004-08-27 | 1 | -8/+1 |
|
|
| * | Don't really need ellipsis doctests for the syntax errors, because | Tim Peters | 2004-08-27 | 1 | -12/+12 |
|
|
| * | Removed outdated comment | Edward Loper | 2004-08-27 | 1 | -2/+0 |
|
|
| * | Fixed 6 failures due to doctest changes. | Tim Peters | 2004-08-27 | 1 | -16/+16 |
|
|
| * | test_bug1001011(): Verify that | Tim Peters | 2004-08-27 | 1 | -5/+33 |
|
|
| * | - Removed redundant call to expandtabs in DocTestParesr. | Edward Loper | 2004-08-27 | 1 | -51/+114 |
|
|
| * | - Added DocTestParser.parse(), which parses a docstring into Examples | Edward Loper | 2004-08-26 | 1 | -2/+57 |
|
|
| * | Move test_bug1001011() to string_tests.MixinStrUnicodeTest so that | Walter Dörwald | 2004-08-26 | 4 | -24/+23 |
|
|
| * | output_difference(): In fancy-diff cases, the way this split expected & | Tim Peters | 2004-08-26 | 1 | -7/+3 |
|
|
| * | Whitespace normalization. | Tim Peters | 2004-08-26 | 2 | -6/+5 |
|
|
| * | Remove unnecessary line. | Raymond Hettinger | 2004-08-26 | 1 | -1/+0 |
|
|
| * | Added REPORT_ONLY_FIRST_FAILURE flag, which supresses output after the | Edward Loper | 2004-08-26 | 1 | -0/+81 |
|
|
| * | Renamed UNIFIED_DIFF->REPORT_UDIFF; CONTEXT_DIFF->REPORT_CDIFF; and | Edward Loper | 2004-08-26 | 1 | -7/+7 |
|
|
| * | Shortened diff output for unified & context diffs | Edward Loper | 2004-08-26 | 1 | -6/+2 |
|
|
| * | - Changed the output of report_start() and report_unexpected_exception() | Edward Loper | 2004-08-26 | 1 | -22/+40 |
|
|
| * | Patch #1014930. Expose current parse location to XMLParser. | Dave Cole | 2004-08-26 | 1 | -0/+39 |
|
|
| * | Added an "exc_msg" attribute to Example (containing the expected | Edward Loper | 2004-08-26 | 1 | -16/+77 |
|
|
| * | Only recognize the expected output as an exception if it *starts* with | Edward Loper | 2004-08-25 | 1 | -3/+13 |
|
|
| * | PEP 292 classes Template and SafeTemplate are added to the string module. | Barry Warsaw | 2004-08-25 | 1 | -0/+84 |
|
|
| * | Stop producing or using OverflowWarning. PEP 237 thought this would | Tim Peters | 2004-08-25 | 2 | -7/+9 |
|
|
| * | Fix for [ 1010677 ] thread Module Breaks PyGILState_Ensure(), | Mark Hammond | 2004-08-24 | 1 | -0/+4 |
|
|
| * | SF Patch #1013667: Cleanup Peepholer Output | Raymond Hettinger | 2004-08-23 | 2 | -2/+104 |
|
|
| * | SF Patch #1007087: Return new string for single subclass joins (Bug #1001011) | Raymond Hettinger | 2004-08-23 | 1 | -0/+23 |
|
|
| * | test_DocTestFinder(): This test failed when test_doctest was run | Tim Peters | 2004-08-23 | 1 | -2/+5 |
|
|
| * | Moved some test cases from doctest to test_doctest. | Tim Peters | 2004-08-23 | 1 | -2/+126 |
|
|
| * | Flush bz2 data even if nothing had been written so far. Fixes #1013882. | Martin v. Löwis | 2004-08-22 | 1 | -1/+7 |
|
|
| * | Fix repr for negative imaginary part. Fixes #1013908. | Martin v. Löwis | 2004-08-22 | 1 | -0/+1 |
|
|
| * | Added NDIFF_DIFF option. | Tim Peters | 2004-08-22 | 1 | -3/+29 |
|
|
| * | Bugs fixed: | Jim Fulton | 2004-08-22 | 1 | -56/+115 |
|
|
| * | _ellipsis_match(): Removed special-casing of "...\n". The semantics | Tim Peters | 2004-08-22 | 1 | -28/+5 |
|
|