summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove NEWS entry of reverted checkin.Georg Brandl2006-01-201-2/+0
|
* Document supported schemes.Georg Brandl2006-01-201-3/+8
|
* Revert feature checkin.Georg Brandl2006-01-201-11/+11
|
* Reverse checkin. This is definitely a new feature.Georg Brandl2006-01-201-13/+13
|
* Patch #1388073: Make unittest.TestCase easier to subclassGeorg Brandl2006-01-201-13/+13
|
* Add markup to a "Python Standard Library" doc reference I added for bug 839585.Georg Brandl2006-01-201-2/+3
|
* Checkin the test of patch #1400181.Georg Brandl2006-01-201-0/+14
|
* Bug #1407902: Added support for sftp:// URIs to urlparse.Georg Brandl2006-01-202-11/+13
|
* Readd bug report note.Georg Brandl2006-01-201-0/+6
|
* Bug #1402224: Add warning to dl docs about crashes.Georg Brandl2006-01-202-0/+6
|
* Bug #1396471: Document that Windows' ftell() can return invalidGeorg Brandl2006-01-202-1/+8
| | | | values for text files with UNIX-style line endings.
* Bug #1371247: Update Windows LCIDs in locale.py.Georg Brandl2006-01-202-34/+183
|
* add missing version identificationFred Drake2006-01-201-0/+2
|
* 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. Backported from the trunk.
* Update documentation for email.Message.get_filename().Barry Warsaw2006-01-171-4/+5
|
* SF Bug #1407069, Remove extra semi-colon if there is no long longNeal Norwitz2006-01-171-1/+1
|
* Ported 42076 from the trunk.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. 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.
* 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
|
* Remove dots in \version{added,changed} arguments.Georg Brandl2006-01-156-10/+10
|
* Fix typoNeal Norwitz2006-01-141-1/+1
|
* Backport:Neal Norwitz2006-01-145-0/+13
| | | | | | | Fix SF bug #1402308, segfault when using mmap(-1, ...) This didn't crash on Linux, but valgrind complained. I'm not sure if this test is valid on Windows.
* Bug #1394565: SimpleHTTPServer now doesn't choke on query paramtersGeorg Brandl2006-01-132-0/+6
| | | | any more.
* Bug #1403410: The warnings module now doesn't get confusedGeorg Brandl2006-01-132-1/+4
| | | | when it can't find out the module name it generates a warning for.
* Test curses.setupterm() before initscr().Georg Brandl2006-01-121-2/+3
|
* Bug #1397205: doc typoGeorg Brandl2006-01-101-1/+1
|
* Backport:Neal Norwitz2006-01-104-4/+15
| | | | | | SF bug #1400822, Extended version of _curses over{lay,write} does not work Fix signatures to conform to doc (also fixed ungetmouse()).
* Backport:Neal Norwitz2006-01-102-16/+25
| | | | | | | | | | | | | | | | - Patch #1400181, fix unicode string formatting to not use the locale. 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. (tested in interpreter and reported fixed by others)
* Backport:Neal Norwitz2006-01-093-5/+8
| | | | | | | Fix bugs #1244610, #1392915, fix build problem on OpenBSD 3.7 and 3.8. configure would break checking curses.h. Also fix whitespace consistency which I forgot to mention in the head checkin.
* Backport:Neal Norwitz2006-01-093-0/+19
| | | | | Bug #1400115, Fix segfault when calling curses.panel.userptr() without prior setting of the userptr.
* Patch #881820: look for openpty and forkpty also in libbsd.Martin v. Löwis2006-01-083-3/+163
|
* Skip this test on Darwin. It's skipped on the trunk and is listed asSkip Montanaro2006-01-071-0/+6
| | | | an expected skip in regrtest.py. Make it so.
* Ignore pyo filesNeal Norwitz2006-01-060-0/+0
|
* Backport:Neal Norwitz2006-01-061-4/+7
| | | | | | | | | | | | initscr() will exit if there's an error. Try to catch the obvious failure 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
* backport: squash compiler warning on Mac OSX 10.3Skip Montanaro2006-01-051-0/+4
|
* Backport 38951:Neal Norwitz2006-01-052-5/+6
| | | | | fixes pybsddb SF bug id 1215432. DB.associate() would crash when a DBError was supposed to be raised.
* Backport: If the audio file does not exist, the test should be skipped.Neal Norwitz2006-01-052-2/+2
|
* Backport: Skip test_curses if stdin is not a tty (like when run from cron or ↵Neal Norwitz2006-01-051-1/+3
| | | | buildbot).
* Backport: Fix errors on 64-bit platforms. (There are still some test problemsNeal Norwitz2006-01-052-4/+6
|
* Bug #139571: wrong LaTeX labelGeorg Brandl2006-01-041-1/+1
|
* Ignore .svn instead of CVS now.Martin v. Löwis2006-01-031-3/+3
|
* bug #1395597: doc typoGeorg Brandl2006-01-021-2/+2
|
* merge revision 41866 from trunk:Fred Drake2006-01-023-272/+8
| | | | update to reflect move to Subversion
* Bug #1394868: doc typosGeorg Brandl2006-01-013-5/+5
|
* Patch by Ori Avtalion to fix a minor display glitch in the RightArrow.Barry Warsaw2006-01-012-2/+7
| | | | I will port forward to 2.5.
* Work around test_locale failing on Solaris 10.Martin v. Löwis2005-12-301-3/+8
|
* Use -xcode=pic32 for SunPro.Martin v. Löwis2005-12-303-1/+5
|
* backport Sniffer class fix (rev 41838)Skip Montanaro2005-12-282-1/+5
|
* Bug #999767: make setup.py obey Setup.local wrt shared modulesGeorg Brandl2005-12-271-10/+11
|