| Commit message (Expand) | Author | Age | Files | Lines |
* | typo | Skip Montanaro | 2004-09-28 | 1 | -1/+1 |
|
|
* | Replaced a test with an assertion. | Raymond Hettinger | 2004-09-28 | 1 | -3/+1 |
|
|
* | A number of list examples used 66.6, but I doubt there's any box on which | Tim Peters | 2004-09-28 | 1 | -9/+9 |
|
|
* | Reverted the addition of a NORMALIZE_NUMBERS option, per Tim Peter's | Edward Loper | 2004-09-28 | 3 | -199/+2 |
|
|
* | * Increase test coverage. | Raymond Hettinger | 2004-09-28 | 2 | -5/+38 |
|
|
* | Added a new NORMALIZE_NUMBERS option, which causes number literals in | Edward Loper | 2004-09-28 | 3 | -2/+199 |
|
|
* | Add note about inclusion of DarwinPorts directories in setup.py on darwin. | Brett Cannon | 2004-09-28 | 1 | -0/+4 |
|
|
* | Add the directories where DarwinPorts installs library and include files to | Brett Cannon | 2004-09-28 | 1 | -2/+5 |
|
|
* | Fixed minor typo in interactive example (extra '.'s in '...' prompts) | Edward Loper | 2004-09-28 | 1 | -2/+2 |
|
|
* | Fixed minor typo in interactive example (extra blank line) | Edward Loper | 2004-09-28 | 1 | -1/+0 |
|
|
* | SF bug #1033038: Misleading error message in random.choice | Raymond Hettinger | 2004-09-28 | 1 | -0/+1 |
|
|
* | Fixed minor typo in interactive example | Edward Loper | 2004-09-28 | 1 | -1/+1 |
|
|
* | Fixed minor typo in interactive example (backslash shouldn't be doubled) | Edward Loper | 2004-09-28 | 1 | -1/+1 |
|
|
* | Updated interactive examples in the "Examples" session to reflect the | Edward Loper | 2004-09-28 | 1 | -7/+10 |
|
|
* | Silence a compiler warning by supplying the correct argument type to | Raymond Hettinger | 2004-09-28 | 1 | -2/+2 |
|
|
* | Use Py_CLEAR(). Add unrelated test. | Raymond Hettinger | 2004-09-28 | 2 | -1/+4 |
|
|
* | Major overhaul to reflect Optik 1.5. Section references currently broken. | Greg Ward | 2004-09-28 | 1 | -1192/+904 |
|
|
* | Plug a leak and beef-up test coverage. | Raymond Hettinger | 2004-09-28 | 2 | -4/+161 |
|
|
* | Rename test for comparision errors. | Raymond Hettinger | 2004-09-27 | 1 | -1/+1 |
|
|
* | Beef-up tests for greater coverage and refcount checking. | Raymond Hettinger | 2004-09-27 | 1 | -1/+59 |
|
|
* | Patch #1009075, bug #952953: allow execve with empty 2nd argument | Armin Rigo | 2004-09-27 | 2 | -14/+2 |
|
|
* | Patch #1011240: SystemError generated by struct.pack('P', 'foo'). | Armin Rigo | 2004-09-27 | 2 | -7/+10 |
|
|
* | Trivial bug fix: deque == [] is not a good way to check if a deque is empty. | Armin Rigo | 2004-09-27 | 1 | -1/+1 |
|
|
* | Use floor division operator. | Raymond Hettinger | 2004-09-27 | 7 | -8/+8 |
|
|
* | Use floor division operator. | Raymond Hettinger | 2004-09-27 | 1 | -3/+3 |
|
|
* | - Added a "parser" option to testfile() and DocFileTest(). | Edward Loper | 2004-09-27 | 1 | -1/+10 |
|
|
* | - Added a "parser" option to testfile() and DocFileTest(). | Edward Loper | 2004-09-27 | 1 | -5/+12 |
|
|
* | - Fixed typo in multi-line exception example | Edward Loper | 2004-09-27 | 1 | -6/+6 |
|
|
* | Give a saner example for script_from_examples(); also mention an intended | Tim Peters | 2004-09-26 | 1 | -11/+25 |
|
|
* | Made most module references "clickable". | Tim Peters | 2004-09-26 | 1 | -71/+70 |
|
|
* | Docs for run_docstring_examples(). | Tim Peters | 2004-09-26 | 1 | -0/+30 |
|
|
* | Checkin Tim's fix to an error discussed on python-dev. | Raymond Hettinger | 2004-09-26 | 2 | -10/+25 |
|
|
* | Make the regex pattern easier to read, understand, and modify | Raymond Hettinger | 2004-09-26 | 1 | -4/+6 |
|
|
* | Replace -soname with -h for Solaris compatibility. Fixes #1034496. | Martin v. Löwis | 2004-09-26 | 1 | -1/+1 |
|
|
* | Updated doctest doc news. | Tim Peters | 2004-09-26 | 1 | -1/+4 |
|
|
* | Added a lot of new stuff to the debugging section. | Tim Peters | 2004-09-26 | 1 | -29/+159 |
|
|
* | Removed debug_script from the public API: no docs, not public. I'm in | Tim Peters | 2004-09-26 | 1 | -1/+0 |
|
|
* | register_optionflag(): Moved from the Debugging section to the section | Tim Peters | 2004-09-26 | 1 | -12/+19 |
|
|
* | Document set_unittest_reportflags(). | Tim Peters | 2004-09-26 | 1 | -2/+59 |
|
|
* | Add set_unittest_reportflags() to the public API. Docs will follow | Tim Peters | 2004-09-26 | 1 | -0/+1 |
|
|
* | Removed two undocumented unittest support classes, and one undocumented | Tim Peters | 2004-09-26 | 1 | -3/+0 |
|
|
* | Fix double word error. | Raymond Hettinger | 2004-09-25 | 1 | -1/+1 |
|
|
* | Assorted minor changes, plus a lot more soap. | Tim Peters | 2004-09-25 | 1 | -33/+39 |
|
|
* | Explain the motivation for the unittest functions, and beef up the | Tim Peters | 2004-09-25 | 1 | -51/+49 |
|
|
* | Removed most of the module docstring. There's too much to explain now, | Tim Peters | 2004-09-25 | 1 | -124/+2 |
|
|
* | Repaired mistakes in the descriptions of testmod()/testfile(), and | Tim Peters | 2004-09-25 | 1 | -45/+16 |
|
|
* | Add warning notation about using 'bomb' setting. | Brett Cannon | 2004-09-25 | 1 | -1/+3 |
|
|
* | Remove 'extern' declaration for _Py_SwappedOp. | Brett Cannon | 2004-09-25 | 1 | -1/+1 |
|
|
* | Since the doctest warnings section was reduced to one bullet point, | Tim Peters | 2004-09-25 | 1 | -10/+6 |
|
|
* | In the "doctest warnings" section, removed obsolete info, and noted that | Tim Peters | 2004-09-25 | 1 | -32/+16 |
|
|