| Commit message (Expand) | Author | Age | Files | Lines |
| * | Updated to pysqlite 2.4.1. Documentation additions will come later. | Gerhard Häring | 2008-02-29 | 1 | -3/+3 |
|
|
| * | Handle the repeat keyword argument for itertools.product(). | Raymond Hettinger | 2008-02-29 | 1 | -0/+3 |
|
|
| * | Add __format__ method to Decimal, to support PEP 3101 | Mark Dickinson | 2008-02-29 | 1 | -0/+93 |
|
|
| * | Add alternate constructor for itertools.chain(). | Raymond Hettinger | 2008-02-28 | 1 | -0/+7 |
|
|
| * | Have itertools.chain() consume its inputs lazily instead of building a tuple ... | Raymond Hettinger | 2008-02-28 | 1 | -2/+2 |
|
|
| * | Windows fix for signal test - skip it earlier | Christian Heimes | 2008-02-28 | 1 | -5/+6 |
|
|
| * | Prevent SocketServer.ForkingMixIn from waiting on child processes that it | Jeffrey Yasskin | 2008-02-28 | 1 | -10/+26 |
|
|
| * | Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and make | Jeffrey Yasskin | 2008-02-28 | 1 | -109/+108 |
|
|
| * | Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, | Jeffrey Yasskin | 2008-02-28 | 1 | -0/+1 |
|
|
| * | Larger test range | Raymond Hettinger | 2008-02-27 | 1 | -1/+1 |
|
|
| * | Add itertools.combinations(). | Raymond Hettinger | 2008-02-26 | 1 | -0/+24 |
|
|
| * | Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i... | Christian Heimes | 2008-02-26 | 1 | -1/+50 |
|
|
| * | Speed up this test by about 99%. Remove sleeps and replace with events. | Neal Norwitz | 2008-02-26 | 1 | -65/+42 |
|
|
| * | Don't use a hard coded port. This test could hang/fail if the port is in use. | Neal Norwitz | 2008-02-26 | 1 | -4/+25 |
|
|
| * | Make sure the itertools filter functions give the same performance for func=b... | Raymond Hettinger | 2008-02-25 | 1 | -0/+2 |
|
|
| * | Move .setupterm() output so that we don't try to call endwin() if it fails | Andrew M. Kuchling | 2008-02-25 | 1 | -4/+3 |
|
|
| * | Fix a minor typo in a docstring. | Brett Cannon | 2008-02-25 | 1 | -1/+1 |
|
|
| * | Create a db_home directory with a unique name so multiple users can | Neal Norwitz | 2008-02-24 | 2 | -1/+21 |
|
|
| * | Issue 1742669. Now %d accepts very big float numbers. | Facundo Batista | 2008-02-24 | 2 | -3/+30 |
|
|
| * | #1627: httplib now ignores negative Content-Length headers. | Georg Brandl | 2008-02-24 | 1 | -0/+7 |
|
|
| * | #900744: If an invalid chunked-encoding header is sent by a server, | Georg Brandl | 2008-02-24 | 1 | -0/+29 |
|
|
| * | #1506171: added operator.methodcaller(). | Georg Brandl | 2008-02-23 | 1 | -0/+18 |
|
|
| * | #1826: allow dotted attribute paths in operator.attrgetter. | Georg Brandl | 2008-02-23 | 1 | -0/+20 |
|
|
| * | Added simple test case. Thanks Benjamin Peterson. | Facundo Batista | 2008-02-23 | 1 | -0/+33 |
|
|
| * | In test_heapq and test_bisect, test both the Python and the C implementation. | Georg Brandl | 2008-02-23 | 2 | -159/+234 |
|
|
| * | Followup to r61011: Also avoid the reference cycle when the Thread's target | Jeffrey Yasskin | 2008-02-23 | 1 | -3/+11 |
|
|
| * | Prevent classes like: | Jeffrey Yasskin | 2008-02-23 | 1 | -0/+20 |
|
|
| * | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 79 | -97/+37 |
|
|
| * | #1433694: minidom's .normalize() failed to set .nextSibling for last element. | Andrew M. Kuchling | 2008-02-23 | 1 | -0/+8 |
|
|
| * | #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. | Andrew M. Kuchling | 2008-02-23 | 1 | -47/+8 |
|
|
| * | #2067: file.__exit__() now calls subclasses' close() method. | Georg Brandl | 2008-02-23 | 1 | -1/+17 |
|
|
| * | Issue 1089358. Adds the siginterrupt() function, that is just a | Facundo Batista | 2008-02-23 | 1 | -2/+46 |
|
|
| * | #2165: fix test_logging failure on some machines. | Georg Brandl | 2008-02-23 | 1 | -23/+13 |
|
|
| * | Patch #1759: Backport of PEP 3129 class decorators | Christian Heimes | 2008-02-23 | 3 | -1/+47 |
|
|
| * | Issue 1781. Now ConfigParser.add_section does not let you add a | Facundo Batista | 2008-02-23 | 1 | -0/+8 |
|
|
| * | Issue 1776581. Minor corrections to smtplib, and two small tests. | Facundo Batista | 2008-02-23 | 1 | -2/+3 |
|
|
| * | Issue 1881. Increased the stack limit from 500 to 1500. Also added | Facundo Batista | 2008-02-23 | 1 | -0/+17 |
|
|
| * | Added future_builtins, which contains PEP 3127 compatible versions of hex() a... | Eric Smith | 2008-02-23 | 1 | -0/+27 |
|
|
| * | Improve the implementation of itertools.product() | Raymond Hettinger | 2008-02-23 | 1 | -0/+3 |
|
|
| * | Tests for bin() builtin. These need to get merged into py3k, which has no te... | Eric Smith | 2008-02-22 | 1 | -0/+9 |
|
|
| * | First draft for itertools.product(). Docs and other updates forthcoming. | Raymond Hettinger | 2008-02-22 | 1 | -0/+28 |
|
|
| * | Moved test_format into the correct TestCase. | Eric Smith | 2008-02-21 | 1 | -39/+39 |
|
|
| * | Trim leading zeros from a floating point exponent, per C99. See issue 1600. ... | Eric Smith | 2008-02-20 | 1 | -7/+31 |
|
|
| * | Added code to correct combining str and unicode in ''.format(). Added test c... | Eric Smith | 2008-02-18 | 1 | -0/+9 |
|
|
| * | Temporarily removed float tests. See issue 1600. | Eric Smith | 2008-02-18 | 1 | -6/+7 |
|
|
| * | Issue 1224. Now we support again the double slash in the URL. | Facundo Batista | 2008-02-18 | 1 | -0/+41 |
|
|
| * | Issue #1916. Added isgenerator() and isgeneratorfunction() to | Facundo Batista | 2008-02-18 | 1 | -8/+20 |
|
|
| * | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 7 | -0/+1029 |
|
|
| * | Issue 2112. mmap does not raises EnvironmentError no more, but | Facundo Batista | 2008-02-17 | 1 | -0/+5 |
|
|
| * | Move test_logging over to doctest. | Brett Cannon | 2008-02-17 | 2 | -971/+2005 |
|
|