Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove NEWS entry of reverted checkin. | Georg Brandl | 2006-01-20 | 1 | -2/+0 |
| | |||||
* | Document supported schemes. | Georg Brandl | 2006-01-20 | 1 | -3/+8 |
| | |||||
* | Revert feature checkin. | Georg Brandl | 2006-01-20 | 1 | -11/+11 |
| | |||||
* | Reverse checkin. This is definitely a new feature. | Georg Brandl | 2006-01-20 | 1 | -13/+13 |
| | |||||
* | Patch #1388073: Make unittest.TestCase easier to subclass | Georg Brandl | 2006-01-20 | 1 | -13/+13 |
| | |||||
* | Add markup to a "Python Standard Library" doc reference I added for bug 839585. | Georg Brandl | 2006-01-20 | 1 | -2/+3 |
| | |||||
* | Checkin the test of patch #1400181. | Georg Brandl | 2006-01-20 | 1 | -0/+14 |
| | |||||
* | Bug #1407902: Added support for sftp:// URIs to urlparse. | Georg Brandl | 2006-01-20 | 2 | -11/+13 |
| | |||||
* | Readd bug report note. | Georg Brandl | 2006-01-20 | 1 | -0/+6 |
| | |||||
* | Bug #1402224: Add warning to dl docs about crashes. | Georg Brandl | 2006-01-20 | 2 | -0/+6 |
| | |||||
* | Bug #1396471: Document that Windows' ftell() can return invalid | Georg Brandl | 2006-01-20 | 2 | -1/+8 |
| | | | | values for text files with UNIX-style line endings. | ||||
* | Bug #1371247: Update Windows LCIDs in locale.py. | Georg Brandl | 2006-01-20 | 2 | -34/+183 |
| | |||||
* | add missing version identification | Fred Drake | 2006-01-20 | 1 | -0/+2 |
| | |||||
* | SF bug #1347874; FeedParser does not comply with RFC2822. | Barry Warsaw | 2006-01-17 | 2 | -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 Warsaw | 2006-01-17 | 1 | -4/+5 |
| | |||||
* | SF Bug #1407069, Remove extra semi-colon if there is no long long | Neal Norwitz | 2006-01-17 | 1 | -1/+1 |
| | |||||
* | Ported 42076 from the trunk. | Barry Warsaw | 2006-01-17 | 4 | -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 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 |
| | |||||
* | Remove dots in \version{added,changed} arguments. | Georg Brandl | 2006-01-15 | 6 | -10/+10 |
| | |||||
* | Fix typo | Neal Norwitz | 2006-01-14 | 1 | -1/+1 |
| | |||||
* | Backport: | Neal Norwitz | 2006-01-14 | 5 | -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 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. | ||||
* | Test curses.setupterm() before initscr(). | Georg Brandl | 2006-01-12 | 1 | -2/+3 |
| | |||||
* | Bug #1397205: doc typo | Georg Brandl | 2006-01-10 | 1 | -1/+1 |
| | |||||
* | Backport: | Neal Norwitz | 2006-01-10 | 4 | -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 Norwitz | 2006-01-10 | 2 | -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 Norwitz | 2006-01-09 | 3 | -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 Norwitz | 2006-01-09 | 3 | -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öwis | 2006-01-08 | 3 | -3/+163 |
| | |||||
* | Skip this test on Darwin. It's skipped on the trunk and is listed as | Skip Montanaro | 2006-01-07 | 1 | -0/+6 |
| | | | | an expected skip in regrtest.py. Make it so. | ||||
* | Ignore pyo files | Neal Norwitz | 2006-01-06 | 0 | -0/+0 |
| | |||||
* | Backport: | Neal Norwitz | 2006-01-06 | 1 | -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.3 | Skip Montanaro | 2006-01-05 | 1 | -0/+4 |
| | |||||
* | Backport 38951: | Neal Norwitz | 2006-01-05 | 2 | -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 Norwitz | 2006-01-05 | 2 | -2/+2 |
| | |||||
* | Backport: Skip test_curses if stdin is not a tty (like when run from cron or ↵ | Neal Norwitz | 2006-01-05 | 1 | -1/+3 |
| | | | | buildbot). | ||||
* | Backport: Fix errors on 64-bit platforms. (There are still some test problems | Neal Norwitz | 2006-01-05 | 2 | -4/+6 |
| | |||||
* | Bug #139571: wrong LaTeX label | Georg Brandl | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | Ignore .svn instead of CVS now. | Martin v. Löwis | 2006-01-03 | 1 | -3/+3 |
| | |||||
* | bug #1395597: doc typo | Georg Brandl | 2006-01-02 | 1 | -2/+2 |
| | |||||
* | merge revision 41866 from trunk: | Fred Drake | 2006-01-02 | 3 | -272/+8 |
| | | | | update to reflect move to Subversion | ||||
* | Bug #1394868: doc typos | Georg Brandl | 2006-01-01 | 3 | -5/+5 |
| | |||||
* | Patch by Ori Avtalion to fix a minor display glitch in the RightArrow. | Barry Warsaw | 2006-01-01 | 2 | -2/+7 |
| | | | | I will port forward to 2.5. | ||||
* | Work around test_locale failing on Solaris 10. | Martin v. Löwis | 2005-12-30 | 1 | -3/+8 |
| | |||||
* | Use -xcode=pic32 for SunPro. | Martin v. Löwis | 2005-12-30 | 3 | -1/+5 |
| | |||||
* | backport Sniffer class fix (rev 41838) | Skip Montanaro | 2005-12-28 | 2 | -1/+5 |
| | |||||
* | Bug #999767: make setup.py obey Setup.local wrt shared modules | Georg Brandl | 2005-12-27 | 1 | -10/+11 |
| |