| Commit message (Expand) | Author | Age | Files | Lines |
* | Now in find, rfind, index, and rindex, you can use None as defaults, | Facundo Batista | 2007-11-16 | 1 | -0/+28 |
|
|
* | add the certificate for the Python SVN repository for testing SSL | Bill Janssen | 2007-11-15 | 1 | -0/+31 |
|
|
* | Accept Issac Morland's suggestion for __replace__ to allow multiple replacements | Raymond Hettinger | 2007-11-15 | 1 | -1/+1 |
|
|
* | Add test for __fields__ being read-only | Raymond Hettinger | 2007-11-14 | 1 | -0/+8 |
|
|
* | Merge from py3k branch: | Amaury Forgeot d'Arc | 2007-11-13 | 1 | -2/+47 |
|
|
* | Add the test from issue 1704621 (the issue itself is already fixed here). | Guido van Rossum | 2007-11-12 | 1 | -0/+7 |
|
|
* | Issue 1416. Add getter, setter, deleter methods to properties that can be | Guido van Rossum | 2007-11-10 | 1 | -0/+65 |
|
|
* | Correct a comment about testing methods - nowadays most | Georg Brandl | 2007-11-09 | 1 | -4/+3 |
|
|
* | Add set.isdisjoint() | Raymond Hettinger | 2007-11-08 | 1 | -2/+47 |
|
|
* | Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset ... | Raymond Hettinger | 2007-11-07 | 1 | -0/+4 |
|
|
* | Fix marshal's incorrect handling of subclasses of builtin types (backport can... | Raymond Hettinger | 2007-11-07 | 1 | -0/+11 |
|
|
* | Fixes Issue 1385: The hmac module now computes the correct hmac when using | Gregory P. Smith | 2007-11-06 | 1 | -5/+159 |
|
|
* | Add a missing quotation mark. | Brett Cannon | 2007-11-03 | 1 | -1/+1 |
|
|
* | Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport c... | Nick Coghlan | 2007-11-02 | 1 | -0/+17 |
|
|
* | Removed non ASCII text from test as requested by Guido. Sorry :/ | Christian Heimes | 2007-11-01 | 1 | -20/+2 |
|
|
* | Backport of import tests for bug http://bugs.python.org/issue1293 and bug htt... | Christian Heimes | 2007-11-01 | 1 | -2/+43 |
|
|
* | Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet) | Hye-Shik Chang | 2007-10-28 | 3 | -2/+3 |
|
|
* | Shorter name for namedtuple() | Raymond Hettinger | 2007-10-23 | 1 | -17/+17 |
|
|
* | Add phuang patch from Issue 708374 which adds offset parameter to mmap module. | Travis E. Oliphant | 2007-10-23 | 1 | -0/+44 |
|
|
* | Remove duplicate crasher. | Georg Brandl | 2007-10-21 | 1 | -8/+0 |
|
|
* | Add a crasher for the long-standing issue with closing a file | Armin Rigo | 2007-10-21 | 1 | -0/+14 |
|
|
* | The constructor from tuple was way too permissive: it allowed bad | Facundo Batista | 2007-10-19 | 1 | -0/+27 |
|
|
* | Issue #1580738. When HTTPConnection reads the whole stream with read(), | Facundo Batista | 2007-10-18 | 1 | -2/+13 |
|
|
* | Fix the overflow checking of list_repeat. | Armin Rigo | 2007-10-17 | 1 | -0/+9 |
|
|
* | More docs, error messages, and tests | Raymond Hettinger | 2007-10-16 | 1 | -6/+11 |
|
|
* | test_bigbits was not testing what it seemed to. | Armin Rigo | 2007-10-15 | 1 | -4/+8 |
|
|
* | Let the O/S supply a port if none of the default ports can be used. | Neal Norwitz | 2007-10-14 | 1 | -4/+12 |
|
|
* | Fix test of count.__repr__() to ignore the 'L' if the count is a long | Raymond Hettinger | 2007-10-12 | 1 | -1/+4 |
|
|
* | Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbo... | Raymond Hettinger | 2007-10-10 | 1 | -1/+18 |
|
|
* | Eliminate camelcase function name | Raymond Hettinger | 2007-10-08 | 1 | -12/+14 |
|
|
* | Add comments to NamedTuple code. | Raymond Hettinger | 2007-10-08 | 1 | -0/+5 |
|
|
* | Ensure that this test will pass even if another test left an unwritable TESTFN. | Neal Norwitz | 2007-10-06 | 1 | -5/+4 |
|
|
* | Use the host the author likely meant in the first place. pop.gmail.com is | Gregory P. Smith | 2007-10-06 | 1 | -4/+1 |
|
|
* | Add __asdict__() to NamedTuple and refine the docs. | Raymond Hettinger | 2007-10-05 | 2 | -26/+66 |
|
|
* | itertools.count() no longer limited to sys.maxint. | Raymond Hettinger | 2007-10-04 | 1 | -1/+6 |
|
|
* | Made the various is_* operations return booleans. This was discussed | Facundo Batista | 2007-10-02 | 2 | -13/+2145 |
|
|
* | Patch # 188 by Philip Jenvey. | Guido van Rossum | 2007-09-22 | 1 | -0/+7 |
|
|
* | Issue #1772851. Optimization of __hash__ to behave better for big big | Facundo Batista | 2007-09-19 | 1 | -0/+32 |
|
|
* | Fix obvious typo in threaded test. | Thomas Wouters | 2007-09-19 | 1 | -1/+1 |
|
|
* | Issue #1772851. Alters long.__hash__ from being *almost* completely | Facundo Batista | 2007-09-19 | 1 | -0/+11 |
|
|
* | Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people c... | Raymond Hettinger | 2007-09-18 | 1 | -0/+6 |
|
|
* | The methods always return Decimal classes, even if they're | Facundo Batista | 2007-09-17 | 1 | -0/+15 |
|
|
* | Sync-up named tuples with the latest version of the ASPN recipe. | Raymond Hettinger | 2007-09-17 | 1 | -0/+7 |
|
|
* | use binary mode when reading files for testAsyncore to make Windows happy | Bill Janssen | 2007-09-16 | 1 | -1/+1 |
|
|
* | Add support for asyncore server-side SSL support. This requires | Bill Janssen | 2007-09-16 | 2 | -105/+271 |
|
|
* | Merged the decimal-branch (revisions 54886 to 58140). Decimal is now | Facundo Batista | 2007-09-13 | 148 | -2335/+57695 |
|
|
* | Bug #1153: repr.repr() now doesn't require set and dictionary items | Georg Brandl | 2007-09-12 | 1 | -0/+10 |
|
|
* | root certificate for https://svn.python.org/, used in test_ssl | Bill Janssen | 2007-09-12 | 1 | -0/+26 |
|
|
* | Generators had their throw() method allowing string exceptions. That's a | Brett Cannon | 2007-09-11 | 1 | -1/+1 |
|
|
* | Always use the -E flag when spawning subprocesses in test_cmd_line (Issue 1056) | Nick Coghlan | 2007-09-11 | 1 | -5/+2 |
|
|