Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changes due to added test for fileConfig contributed by Shane Hathaway. | Vinay Sajip | 2006-01-16 | 1 | -0/+6 |
| | |||||
* | Added test for fileConfig. Contributed by Shane Hathaway. | Vinay Sajip | 2006-01-16 | 1 | -1/+101 |
| | |||||
* | Exceptions raised during renaming in rotating file handlers are now passed ↵ | Vinay Sajip | 2006-01-16 | 1 | -2/+2 |
| | | | | to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised). | ||||
* | Exceptions raised during renaming in rotating file handlers are now passed ↵ | Vinay Sajip | 2006-01-16 | 1 | -2/+12 |
| | | | | to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised). | ||||
* | TimedRotatingFileHandler now calculates next rollover from previous rollover ↵ | Vinay Sajip | 2006-01-16 | 1 | -1/+1 |
| | | | | rather than current time. | ||||
* | Fixed bug in time-to-midnight calculation. | Vinay Sajip | 2006-01-16 | 1 | -3/+6 |
| | |||||
* | refresh every 12 hours for crazy people like me that keep the page up | Neal Norwitz | 2006-01-16 | 1 | -1/+5 |
| | |||||
* | Get socketmodule to build after adding netlink support. | Neal Norwitz | 2006-01-16 | 2 | -0/+5 |
| | |||||
* | Add recent item | Andrew M. Kuchling | 2006-01-15 | 1 | -0/+8 |
| | |||||
* | the implementation uses ZipImportError, not ZipImporterError... | Fredrik Lundh | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | the implementation uses ZipImportError, not ZipImporterError... | Fredrik Lundh | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | typo | Fredrik Lundh | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | Remove buildno. | Martin v. Löwis | 2006-01-15 | 2 | -177/+0 |
| | |||||
* | Patch #1396093: Further .vcproj cleanups | Martin v. Löwis | 2006-01-15 | 2 | -2838/+9 |
| | |||||
* | Remove dots in \version{changed,added} argument and | Georg Brandl | 2006-01-15 | 7 | -12/+12 |
| | | | | correct argument order. | ||||
* | Change build format of netlink addresses. | Martin v. Löwis | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | Remove extra period at end. | Neal Norwitz | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | Alphabetize some names and remove a dupe | Neal Norwitz | 2006-01-14 | 1 | -16/+15 |
| | |||||
* | Patch #1103116: AF_NETLINK sockets basic support. | Martin v. Löwis | 2006-01-14 | 8 | -6/+160 |
| | |||||
* | added kjohnson to the ACKS list | Fredrik Lundh | 2006-01-14 | 1 | -0/+1 |
| | |||||
* | collected my segfaulting Python examples from the SF trackers | Armin Rigo | 2006-01-14 | 8 | -0/+99 |
| | | | | (is the purpose of the crashers directory to scare people? :-) | ||||
* | Fix typo | Neal Norwitz | 2006-01-14 | 1 | -1/+1 |
| | |||||
* | Bug #1394565: SimpleHTTPServer now doesn't choke on query paramters | Georg Brandl | 2006-01-13 | 2 | -0/+6 |
| | | | | any more. | ||||
* | Bug #1403410: The warnings module now doesn't get confused | Georg Brandl | 2006-01-13 | 2 | -1/+4 |
| | | | | when it can't find out the module name it generates a warning for. | ||||
* | Whitespace normalization. | Tim Peters | 2006-01-13 | 3 | -100/+99 |
| | |||||
* | Test curses.setupterm() before initscr(). | Georg Brandl | 2006-01-12 | 1 | -2/+3 |
| | |||||
* | Fix SF bug #1402308, segfault when using mmap(-1, ...) | Neal Norwitz | 2006-01-11 | 5 | -0/+13 |
| | | | | | | | This didn't crash on Linux, but valgrind complained. I'm not sure if this test is valid on Windows. Will backport. | ||||
* | add another crash reported by Thomas Wouters | Neal Norwitz | 2006-01-11 | 1 | -0/+10 |
| | |||||
* | added a missing +\versionadded{2.2} tag | Fredrik Lundh | 2006-01-11 | 1 | -0/+1 |
| | |||||
* | added a few missing \versionadded{2.3} tags | Fredrik Lundh | 2006-01-11 | 3 | -0/+6 |
| | |||||
* | Bug #1397205: doc typo | Georg Brandl | 2006-01-10 | 1 | -1/+1 |
| | |||||
* | Remove outstanding_crashes again. | Georg Brandl | 2006-01-10 | 1 | -38/+0 |
| | |||||
* | Add outstanding_crashes.py with tests for crashes. | Georg Brandl | 2006-01-10 | 2 | -0/+41 |
| | |||||
* | As I threatened on python-dev, add a directory which contains all known | Neal Norwitz | 2006-01-10 | 4 | -0/+97 |
| | | | | | | bugs which cause the interpreter to crash. I'm sure we can find a few more. Many missing bugs deal with variations on unchecked infinite recursion (like coerce.py). | ||||
* | SF bug #1400822, Extended version of _curses over{lay,write} does not work | Neal Norwitz | 2006-01-10 | 4 | -4/+15 |
| | | | | | | Fix signatures to conform to doc (also fixed ungetmouse()). Will backport. | ||||
* | - Patch #1400181, fix unicode string formatting to not use the locale. | Neal Norwitz | 2006-01-10 | 2 | -16/+25 |
| | | | | | | | | | | | | | | | | This is how string objects work. u'%f' could use , instead of . for the decimal point. Now both strings and unicode always use periods. This is the code that would break: import locale locale.setlocale(locale.LC_NUMERIC, 'de_DE') u'%.1f' % 1.0 assert '1.0' == u'%.1f' % 1.0 I couldn't create a test case which fails, but this fixes the problem. Will backport. | ||||
* | added a couple of missing periods. | Fredrik Lundh | 2006-01-09 | 1 | -4/+4 |
| | |||||
* | Correct test_builtin locale handling. | Georg Brandl | 2006-01-09 | 1 | -1/+1 |
| | |||||
* | fixed broken sentence | Fredrik Lundh | 2006-01-09 | 1 | -3/+3 |
| | |||||
* | typo | Fredrik Lundh | 2006-01-09 | 1 | -1/+1 |
| | |||||
* | Fix typos. | Walter Dörwald | 2006-01-09 | 1 | -3/+3 |
| | |||||
* | Add some notes about a recurring problem with OpenBSD | Neal Norwitz | 2006-01-09 | 1 | -0/+38 |
| | |||||
* | Fix bugs #1244610, #1392915, fix build problem on OpenBSD 3.7 and 3.8. | Neal Norwitz | 2006-01-09 | 3 | -5/+8 |
| | | | | | | configure would break checking curses.h. Will backport. | ||||
* | Bug #1400115, Fix segfault when calling curses.panel.userptr() | Neal Norwitz | 2006-01-09 | 3 | -0/+19 |
| | | | | | | without prior setting of the userptr. Will backport. | ||||
* | Add myself. | Georg Brandl | 2006-01-08 | 1 | -0/+1 |
| | |||||
* | Add a test file (which isn't run by regrtest) for bugs which | Georg Brandl | 2006-01-08 | 1 | -0/+24 |
| | | | | | | aren't fixed yet. Includes a first test (for compiler). | ||||
* | Patch #1299675: Pass metadata in upload. | Martin v. Löwis | 2006-01-08 | 1 | -9/+33 |
| | |||||
* | Patch #1177307: UTF-8-Sig codec. | Martin v. Löwis | 2006-01-08 | 4 | -1/+212 |
| | |||||
* | Patch #881820: look for openpty and forkpty also in libbsd. | Martin v. Löwis | 2006-01-08 | 3 | -3/+163 |
| | | | | Will backport. | ||||
* | Remove some shadowed variables | Neal Norwitz | 2006-01-08 | 3 | -4/+4 |
| |