summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Checkin the test of patch #1400181.Georg Brandl2006-01-201-0/+14
|
* Bug #1407902: Added support for sftp:// URIs to urlparse.Georg Brandl2006-01-201-11/+11
|
* Readd bug report note.Georg Brandl2006-01-201-0/+6
|
* Bug #1371247: Update Windows LCIDs in locale.py.Georg Brandl2006-01-201-32/+179
|
* Add a more informative error message for test_float_parsing so the failingBrett Cannon2006-01-191-2/+4
| | | | locale can be known.
* SF bug #1347874; FeedParser does not comply with RFC2822.Barry Warsaw2006-01-172-2/+11
| | | | | Change headerRE as suggested in the bug report, so that single character headers are accepted. Test case added too. Will backport to Python 2.4.
* Ported 42075 from release23-maint branch.Barry Warsaw2006-01-174-5/+51
| | | | | | | | | | | SF bug #1403349 solution for email 3.0; some MUAs use the 'file' parameter name in the Content-Distribution header, so Message.get_filename() should fall back to using that. Will port to the Python 2.5 trunk. Also, bump the email package version to 3.0.1 for eventual release. Of course, add a test case too. XXX Need to update the documentation.
* Refactoring for fileConfig. Contributed by Shane Hathaway.Vinay Sajip2006-01-161-125/+142
|
* Changes due to added test for fileConfig contributed by Shane Hathaway.Vinay Sajip2006-01-161-0/+6
|
* Added test for fileConfig. Contributed by Shane Hathaway.Vinay Sajip2006-01-161-1/+101
|
* Exceptions raised during renaming in rotating file handlers are now passed ↵Vinay Sajip2006-01-161-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 Sajip2006-01-161-2/+12
| | | | to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised).
* TimedRotatingFileHandler now calculates next rollover from previous rollover ↵Vinay Sajip2006-01-161-1/+1
| | | | rather than current time.
* Fixed bug in time-to-midnight calculation.Vinay Sajip2006-01-161-3/+6
|
* collected my segfaulting Python examples from the SF trackersArmin Rigo2006-01-148-0/+99
| | | | (is the purpose of the crashers directory to scare people? :-)
* Bug #1394565: SimpleHTTPServer now doesn't choke on query paramtersGeorg Brandl2006-01-131-0/+3
| | | | any more.
* Bug #1403410: The warnings module now doesn't get confusedGeorg Brandl2006-01-131-1/+1
| | | | when it can't find out the module name it generates a warning for.
* Whitespace normalization.Tim Peters2006-01-133-100/+99
|
* Test curses.setupterm() before initscr().Georg Brandl2006-01-121-2/+3
|
* Fix SF bug #1402308, segfault when using mmap(-1, ...)Neal Norwitz2006-01-112-0/+9
| | | | | | | 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 WoutersNeal Norwitz2006-01-111-0/+10
|
* Remove outstanding_crashes again.Georg Brandl2006-01-101-38/+0
|
* Add outstanding_crashes.py with tests for crashes.Georg Brandl2006-01-102-0/+41
|
* As I threatened on python-dev, add a directory which contains all knownNeal Norwitz2006-01-104-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 workNeal Norwitz2006-01-101-1/+7
| | | | | | Fix signatures to conform to doc (also fixed ungetmouse()). Will backport.
* Correct test_builtin locale handling.Georg Brandl2006-01-091-1/+1
|
* Bug #1400115, Fix segfault when calling curses.panel.userptr()Neal Norwitz2006-01-091-0/+11
| | | | | | without prior setting of the userptr. Will backport.
* Add a test file (which isn't run by regrtest) for bugs whichGeorg Brandl2006-01-081-0/+24
| | | | | | aren't fixed yet. Includes a first test (for compiler).
* Patch #1299675: Pass metadata in upload.Martin v. Löwis2006-01-081-9/+33
|
* Patch #1177307: UTF-8-Sig codec.Martin v. Löwis2006-01-082-0/+85
|
* Revert revision 41940: the test causes -uall toTim Peters2006-01-071-4/+1
| | | | fail everywhere.
* Add compiler test regarding optional arguments.Georg Brandl2006-01-061-1/+4
|
* initscr() will exit if there's an error. Try to catch the obvious failureNeal Norwitz2006-01-061-4/+7
| | | | | | | | | | | | | cases if TERM isn't set or is unknown (perhaps we should only check if unset or empty?) Skip the test if TERM isn't set. This seems to occur when running under buildbot and presumably cron. For some more info check here: http://mail.python.org/pipermail/python-checkins/2006-January/048704.html Will backport if it works.
* Generalize buildno to be a sequence of non-commaMartin v. Löwis2006-01-061-1/+1
| | | | characters.
* If the audio file does not exist, the test should be skipped. Will backport.Neal Norwitz2006-01-052-2/+2
|
* Skip test_curses if stdin is not a tty (like when run from cron or ↵Neal Norwitz2006-01-051-1/+3
| | | | buildbot). Will backport.
* test_main(): Restore the original root logger level after runningTim Peters2005-12-301-0/+9
| | | | | | | | | | the tests. This stops the confusing/annoying: No handlers could be found for logger "cookielib" message we got whenever some test running after test_logging happened to use cookielib.py (when not using regrtest's -r, this happened during test_urllib2; when using -r, it varied).
* Whitespace normalization.Tim Peters2005-12-301-1/+1
|
* Work around test_locale failing on Solaris.Martin v. Löwis2005-12-301-3/+8
| | | | Will backport to 2.4.
* Fix a delimiter detection problem in sniffer. Sniffing "a|b|c\r\n" wasSkip Montanaro2005-12-302-3/+17
| | | | | | | | returning 'a' as the delimiter. It now returns '|', but not because I understood better what the code was supposed to do. Would someone that understands the idea behind _guess_delimiter() (see its doc string) look to see if my fallback choice is better than before or if it's just serendipity that I picked the proper delimiter?
* SF#1391872Fredrik Lundh2005-12-291-0/+12
| | | | | Floating point literals don't work in non-US locale in 2.5. Patch and new locale tests by Hye-Shik Chang.
* SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro".Armin Rigo2005-12-291-0/+31
| | | | | A patch by mwh to check that user-defined mro's are reasonable enough.
* adding in-place operators to the operator module.Armin Rigo2005-12-291-0/+47
|
* SF patch #1390657:Armin Rigo2005-12-292-0/+112
| | | | | | | | | | | | | | | | | * set sq_repeat and sq_concat to NULL for user-defined new-style classes, as a way to fix a number of related problems. See test_descr.notimplemented()). One of these problems was fixed in r25556 and r25557 but many more existed; this is a general fix and thus reverts r25556-r25557. * to avoid having PySequence_Repeat()/PySequence_Concat() failing on user-defined classes, they now fall back to nb_add/nb_mul if sq_concat/sq_repeat are not defined and the arguments appear to be sequences. * added tests. Backport candidate.
* Fix for problem with Sniffer class. If your delimiter is whitespace and theSkip Montanaro2005-12-282-2/+5
| | | | | | last field was empty it would strip the delimiter and incorrectly guess that "" was the delimiter. Reported in c.l.py by Laurent Laporte. Will backport.
* Bug #649974: make docstrings for url2pathname consistentGeorg Brandl2005-12-264-21/+25
|
* Whitespace normalization.Tim Peters2005-12-2575-33209/+33162
|
* test_bug_1333982(): This one must fail under -O.Tim Peters2005-12-251-1/+4
| | | | All the --all test pass using -O on WinXP now.
* SF patch #1157027, cookielib mis-handles RFC 2109 cookies in Netscape modeNeal Norwitz2005-12-232-5/+55
|
* Fix SF #1117398, cookielib LWPCookieJar and MozillaCookieJar exceptionsNeal Norwitz2005-12-234-10/+36
| | | | | | cookielib.LWPCookieJar and .MozillaCookieJar are documented to raise cookielib.LoadError on attempt to load an invalid cookies file, but raise IOError instead. Compromise by having LoadError subclass IOError.