| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add REPORT_NDIFF option to o test that was hard to debug recently. | Guido van Rossum | 2007-09-08 | 1 | -0/+1 |
|
|
* | Restore caching of unicode hash value. This apparently was broken | Neil Schemenauer | 2007-09-07 | 1 | -5/+12 |
|
|
* | Finish the first pass of the language reference update. | Georg Brandl | 2007-09-07 | 5 | -281/+271 |
|
|
* | Forgot to run the tests after making the places and msg argument keyword-only. | Jeffrey Yasskin | 2007-09-07 | 3 | -9/+9 |
|
|
* | Check in some documentation tweaks for PEP 3141, add some tests, and implement | Jeffrey Yasskin | 2007-09-07 | 5 | -33/+68 |
|
|
* | Add a test for fail*AlmostEqual, including the new support for complex numbers. | Jeffrey Yasskin | 2007-09-07 | 2 | -3/+24 |
|
|
* | Continue going through the language reference, bringing it up-to-date. | Georg Brandl | 2007-09-07 | 7 | -280/+296 |
|
|
* | Make IDLE's file decode more robust. | Kurt B. Kaiser | 2007-09-07 | 1 | -45/+76 |
|
|
* | Fix docstring for getfullargspec(). | Brett Cannon | 2007-09-07 | 1 | -2/+2 |
|
|
* | merge r58023 to fix issue1112 on windows. make this test more robust | Gregory P. Smith | 2007-09-06 | 1 | -10/+22 |
|
|
* | Extend unittest's fail*AlmostEqual methods to work on complex numbers. | Jeffrey Yasskin | 2007-09-06 | 1 | -2/+2 |
|
|
* | I think we can just dump the else clause, per the comment I just deleted. | Skip Montanaro | 2007-09-06 | 1 | -3/+0 |
|
|
* | #1116: reference to old filename fixed. | Georg Brandl | 2007-09-06 | 1 | -1/+1 |
|
|
* | In response to issue 1101, place vastly more emphasis on the new print() | Guido van Rossum | 2007-09-06 | 1 | -17/+42 |
|
|
* | hashlib operates on bytes, not strings. | Georg Brandl | 2007-09-06 | 1 | -26/+33 |
|
|
* | New exception catching syntax. | Georg Brandl | 2007-09-06 | 1 | -9/+8 |
|
|
* | 1. Fail gracefully if the file fails to decode when loaded. | Kurt B. Kaiser | 2007-09-06 | 2 | -44/+31 |
|
|
* | Use an event variable to wait for the server to be ready, not time.sleep(). | Guido van Rossum | 2007-09-06 | 1 | -3/+5 |
|
|
* | Cast away const qualifier to silence a compiler warning about it. | Brett Cannon | 2007-09-05 | 1 | -1/+1 |
|
|
* | Bug #1684991: explain __special__ lookup semantics. | Georg Brandl | 2007-09-05 | 1 | -0/+14 |
|
|
* | Proof read/editing of abc. Added table of collections.Hashable etc. to | Mark Summerfield | 2007-09-05 | 2 | -22/+95 |
|
|
* | Fix doctest failure introduced by r57949. | Guido van Rossum | 2007-09-05 | 1 | -1/+1 |
|
|
* | Simplified recursion logic. Modified variable name to match string.Formatter. | Eric Smith | 2007-09-05 | 1 | -12/+10 |
|
|
* | Changed some ValueError's to KeyError and IndexError. | Eric Smith | 2007-09-04 | 3 | -25/+31 |
|
|
* | fix typo | Fred Drake | 2007-09-04 | 1 | -1/+1 |
|
|
* | Add a dict view usage example. | Georg Brandl | 2007-09-04 | 1 | -0/+30 |
|
|
* | Change docs for builtins that now return iterators. | Georg Brandl | 2007-09-04 | 1 | -33/+39 |
|
|
* | Docs on dictviews. | Georg Brandl | 2007-09-04 | 1 | -44/+91 |
|
|
* | remove/update many of the references to dict.iter*() | Fred Drake | 2007-09-04 | 5 | -44/+28 |
|
|
* | Correction an issue reported by Mark Summerfeld. | Guido van Rossum | 2007-09-04 | 1 | -2/+2 |
|
|
* | More abc docs. | Georg Brandl | 2007-09-04 | 2 | -40/+56 |
|
|
* | Make the _wrap_close type (which is returned by os.popen) iterable. | Thomas Heller | 2007-09-04 | 1 | -0/+2 |
|
|
* | Convert code from sys.stdin.encoding to UTF-8 in | Martin v. Löwis | 2007-09-04 | 7 | -16/+70 |
|
|
* | Update ref docs on slicing. | Thomas Wouters | 2007-09-04 | 1 | -30/+13 |
|
|
* | Initial documentation for the `abc` module. | Georg Brandl | 2007-09-04 | 2 | -0/+143 |
|
|
* | Fix the string formatting docs for now; if the feature is changed again, the ... | Georg Brandl | 2007-09-04 | 1 | -2/+1 |
|
|
* | Fix up the types module docs. | Georg Brandl | 2007-09-04 | 1 | -57/+17 |
|
|
* | Convert all print statements in the docs. | Georg Brandl | 2007-09-04 | 71 | -388/+351 |
|
|
* | Add "print" command to pdb, "print s" previously invoked the print statement. | Georg Brandl | 2007-09-04 | 2 | -10/+7 |
|
|
* | Doc update for __xslice__ removal. | Georg Brandl | 2007-09-04 | 4 | -147/+57 |
|
|
* | Decode input() with stdin.encoding. Fixes #1097. | Martin v. Löwis | 2007-09-04 | 1 | -2/+17 |
|
|
* | CVS -> Subversion | Skip Montanaro | 2007-09-04 | 1 | -1/+1 |
|
|
* | I always think of the language when I see "ABC". Emphasize the meaning of | Skip Montanaro | 2007-09-04 | 1 | -1/+1 |
|
|
* | Fix sinple typo. | Guido van Rossum | 2007-09-04 | 1 | -1/+1 |
|
|
* | - Add support for linking the bsddb module against BerkeleyDB 4.6.x. | Matthias Klose | 2007-09-03 | 1 | -3/+3 |
|
|
* | fix test, use bytes not unicode and let the test raise its internal exception | Gregory P. Smith | 2007-09-03 | 1 | -5/+5 |
|
|
* | regenerated | Gregory P. Smith | 2007-09-03 | 1 | -2/+3 |
|
|
* | test for strlcpy (so i can use it in _bsddb.c) | Gregory P. Smith | 2007-09-03 | 2 | -1/+4 |
|
|
* | Fix segfault discovered by Ron Adam. Not checking for terminating right brac... | Eric Smith | 2007-09-03 | 2 | -4/+12 |
|
|
* | Patch #1076: Use wide API for registry functions. | Martin v. Löwis | 2007-09-03 | 2 | -182/+128 |
|
|