Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
bdba3b6 Patch #428494: Prefer linking against ncursesw over ncurses library 11 February 2006, 15:55:22 UTC
2fec8b9 Update general copyright year to 2006. 11 February 2006, 15:30:59 UTC
261058c Port of r42279 to email 3.0, but without the Python 2.1 backward compatible nonsense. Resolve SF bug 1409403: email.Message should supress warning from uu.decode. 09 February 2006, 04:10:03 UTC
8413eab Port of r42271 from the trunk -- relevant patches for SF 1409455 for email 3.0/Python 2.4. 08 February 2006, 14:58:55 UTC
90f1db3 Backport: Bug #876637, prevent stack corruption when socket descriptor is larger than FD_SETSIZE. This can only be acheived with ulimit -n SOME_NUMBER_BIGGER_THAN_FD_SETSIZE which is typically only available to root. Since this wouldn't normally be run in a test (ie, run as root), it doesn't seem too worthwhile to add a normal test. The bug report has one version of a test. I've written another. Not sure what the best thing to do is. Do the check before calling internal_select() because we can't set an error in between Py_BEGIN_ALLOW_THREADS and Py_END_ALLOW_THREADS. This seemed the clearest solution. 07 February 2006, 07:17:37 UTC
b5abd16 Backport: Patch #1407135, bug #1424041: mmap.mmap(-1, size, ...) can return anonymous memory again on Unix. 05 February 2006, 06:00:54 UTC
98a3292 Resolves SF bug #1423972. 04 February 2006, 23:45:12 UTC
ada0d18 SF bug 1415455, fix typo in module name 04 February 2006, 22:59:56 UTC
71a92a8 Fix typo 04 February 2006, 03:29:52 UTC
9c7c84d Port r42228 from the trunk. 03 February 2006, 05:41:33 UTC
cb65c7e Work around a Solaris peculiarity that caused test_pty to sometimes fail: a tty opened by os.openpty() isn't always a tty according to os.isatty(), when it's tested inside the process that opened it. Doesn't affect actual functionality, as using a tty this way is rarely, if ever, useful. Ignoring the failure allows the test for actual functionality to continue. 28 January 2006, 12:08:39 UTC
f5eccd0 Fix PyGC_Collect() to be exported from the built DLL on Windows. (Fix given by Matt Messier). 26 January 2006, 18:49:57 UTC
cd8a8c3 Backport 42173: get bsddb test_associate to pass with BSDDB 4.1 26 January 2006, 05:19:56 UTC
4f702c4 Find bdb4 correctly on gentoo systems (this matches head) 25 January 2006, 08:18:43 UTC
4cf52a2 Remove file even if non-existant 25 January 2006, 07:58:22 UTC
efd8e78 Remove generated test db files 25 January 2006, 07:22:01 UTC
b9ab834 Backport: mwh pointed out _Filemodule.c is generated. So to fix the memory leak this file (the source) must be fixed. 25 January 2006, 05:43:53 UTC
ebf1dca Backport: Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env. 25 January 2006, 05:29:17 UTC
88f669a backport of commit 42169 adds support for compiling against BerkeleyDB 4.4.x 24 January 2006, 10:02:02 UTC
a3b5e99 Fix SF #1412837, compile failed with Watcom compiler 24 January 2006, 06:08:23 UTC
29beb16 Correct misspellings. 23 January 2006, 22:00:32 UTC
8b41b08 Backport typo fixes. 23 January 2006, 21:34:21 UTC
c280d94 Backport: This should fix a mem leak on the Mac. Brett tested it. 23 January 2006, 07:37:28 UTC
1eb6bb6 Another typo. 22 January 2006, 20:47:30 UTC
ea3aa8f typo 22 January 2006, 19:38:07 UTC
b52ba9d Correct several typos in libos.tex. Bug #1412227. 22 January 2006, 19:35:04 UTC
85ced98 Typo 22 January 2006, 16:11:04 UTC
5105cb8 Backport winreg documentation quirk fix. 22 January 2006, 13:52:08 UTC
7626cd9 Remove reference to Grail and Netscape 2.0 from cgi docs. 22 January 2006, 13:49:24 UTC
13a334e Bug #1378679: backport bugfix of #974757. 20 January 2006, 22:00:43 UTC
e446337 Patch #1410783: add documentation links for static/classmethod 20 January 2006, 21:34:01 UTC
fcfad71 Remove NEWS entry of reverted checkin. 20 January 2006, 21:19:52 UTC
03c5a89 Document supported schemes. 20 January 2006, 21:16:54 UTC
7e8a71f Revert feature checkin. 20 January 2006, 21:09:55 UTC
b88c0ff Reverse checkin. This is definitely a new feature. 20 January 2006, 21:08:54 UTC
15a7b49 Patch #1388073: Make unittest.TestCase easier to subclass 20 January 2006, 17:55:02 UTC
e9b72e2 Add markup to a "Python Standard Library" doc reference I added for bug 839585. 20 January 2006, 17:51:40 UTC
6c0a2fd Checkin the test of patch #1400181. 20 January 2006, 17:48:57 UTC
d910e55 Bug #1407902: Added support for sftp:// URIs to urlparse. 20 January 2006, 17:24:34 UTC
950697c Readd bug report note. 20 January 2006, 13:38:41 UTC
3b3e481 Bug #1402224: Add warning to dl docs about crashes. 20 January 2006, 09:35:04 UTC
90394a5 Bug #1396471: Document that Windows' ftell() can return invalid values for text files with UNIX-style line endings. 20 January 2006, 09:14:41 UTC
f75d9df Bug #1371247: Update Windows LCIDs in locale.py. 20 January 2006, 09:07:55 UTC
543511c add missing version identification 20 January 2006, 03:31:17 UTC
aad2234 SF bug #1347874; FeedParser does not comply with RFC2822. Change headerRE as suggested in the bug report, so that single character headers are accepted. Test case added too. Backported from the trunk. 17 January 2006, 05:59:18 UTC
e87ccea Update documentation for email.Message.get_filename(). 17 January 2006, 05:29:56 UTC
8308749 SF Bug #1407069, Remove extra semi-colon if there is no long long 17 January 2006, 05:28:07 UTC
74bb106 Ported 42076 from the trunk. 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. 17 January 2006, 05:09:19 UTC
ae654d7 Exceptions raised during renaming in rotating file handlers are now passed to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised). 16 January 2006, 09:28:59 UTC
e97f029 TimedRotatingFileHandler now calculates next rollover from previous rollover rather than current time. 16 January 2006, 09:14:47 UTC
f52cba1 Fixed bug in time-to-midnight calculation. 16 January 2006, 09:10:05 UTC
22df553 Remove dots in \version{added,changed} arguments. 15 January 2006, 07:55:42 UTC
387bffd Fix typo 14 January 2006, 07:03:44 UTC
63fd4f4 Backport: 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. 14 January 2006, 07:02:53 UTC
d901f75 Bug #1394565: SimpleHTTPServer now doesn't choke on query paramters any more. 13 January 2006, 17:06:02 UTC
f2f9c40 Bug #1403410: The warnings module now doesn't get confused when it can't find out the module name it generates a warning for. 13 January 2006, 16:59:54 UTC
c046e80 Test curses.setupterm() before initscr(). 12 January 2006, 15:41:15 UTC
8a82fe8 Bug #1397205: doc typo 10 January 2006, 21:37:44 UTC
44d52e2 Backport: SF bug #1400822, Extended version of _curses over{lay,write} does not work Fix signatures to conform to doc (also fixed ungetmouse()). 10 January 2006, 07:08:06 UTC
7fb3aa7 Backport: - 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) 10 January 2006, 06:05:57 UTC
5ce8a89 Backport: 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. 09 January 2006, 07:10:56 UTC
964ab82 Backport: Bug #1400115, Fix segfault when calling curses.panel.userptr() without prior setting of the userptr. 09 January 2006, 06:29:16 UTC
95e3ec0 Patch #881820: look for openpty and forkpty also in libbsd. 08 January 2006, 10:07:57 UTC
52f3d18 Skip this test on Darwin. It's skipped on the trunk and is listed as an expected skip in regrtest.py. Make it so. 07 January 2006, 19:08:55 UTC
5fc14c5 Ignore pyo files 06 January 2006, 05:25:01 UTC
b81832c Backport: 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 06 January 2006, 04:40:20 UTC
805aaf1 backport: squash compiler warning on Mac OSX 10.3 05 January 2006, 10:51:18 UTC
7cd31a5 Backport 38951: fixes pybsddb SF bug id 1215432. DB.associate() would crash when a DBError was supposed to be raised. 05 January 2006, 08:00:55 UTC
bd2bd89 Backport: If the audio file does not exist, the test should be skipped. 05 January 2006, 07:17:35 UTC
586ad55 Backport: Skip test_curses if stdin is not a tty (like when run from cron or buildbot). 05 January 2006, 06:10:16 UTC
4e90d91 Backport: Fix errors on 64-bit platforms. (There are still some test problems 05 January 2006, 05:45:12 UTC
a58cbd5 Bug #139571: wrong LaTeX label 04 January 2006, 21:04:24 UTC
5bf0a55 Ignore .svn instead of CVS now. 03 January 2006, 06:30:40 UTC
3951b1c bug #1395597: doc typo 02 January 2006, 22:07:25 UTC
3dd5317 merge revision 41866 from trunk: update to reflect move to Subversion 02 January 2006, 07:25:08 UTC
967828c Bug #1394868: doc typos 01 January 2006, 21:35:41 UTC
b6050f7 Patch by Ori Avtalion to fix a minor display glitch in the RightArrow. I will port forward to 2.5. 01 January 2006, 21:33:50 UTC
9842167 Work around test_locale failing on Solaris 10. 30 December 2005, 12:52:13 UTC
ddbcbe8 Use -xcode=pic32 for SunPro. 30 December 2005, 12:32:48 UTC
cac7b9d backport Sniffer class fix (rev 41838) 28 December 2005, 15:43:50 UTC
2043472 Bug #999767: make setup.py obey Setup.local wrt shared modules 27 December 2005, 18:24:30 UTC
27a2fab [ 959576 ] Can't build Python on POSIX w/o $HOME (backport) 27 December 2005, 17:37:16 UTC
f48e424 Revert checkin for bug #1386675. 27 December 2005, 17:26:16 UTC
8d2dc47 Bug #1375599: Correct grammar error in tutorial 27 December 2005, 00:06:18 UTC
31ecece Bug #1386675: winreg raises WindowsErrors (backport) 27 December 2005, 00:03:19 UTC
19d245d Bug #1389673: document correct return value of set methods (backport) 26 December 2005, 23:56:08 UTC
109e6d4 Bug #954981: urllib2 example wont work w/o ssl (backport) 26 December 2005, 23:36:49 UTC
6638b86 Bug #839075 (backport): document that highly recursive data cannot be pickled 26 December 2005, 23:27:50 UTC
26c221f Bug #839585: mention % string operator in language ref (backport) 26 December 2005, 23:15:50 UTC
b9ae3e3 Bug #756104 (backport): document that bufsize in socket.recv() should be small 26 December 2005, 23:07:52 UTC
2d377b1 Bug #649974 (backport): make docstrings for url2pathname consistent 26 December 2005, 22:54:01 UTC
b8a9b8c Backport: Patch #1117398: fix cookielib LoadError 23 December 2005, 21:32:06 UTC
2108d55 Typo fix 22 December 2005, 19:31:45 UTC
08a34f9 Typo fix 22 December 2005, 18:56:09 UTC
ddaf065 [ 1388141 ] Minor error in md5 docs (backport) 22 December 2005, 16:15:08 UTC
3758868 Bug #1373197: note that os.makedirs does not work with '..' 17 December 2005, 17:47:43 UTC
03f93a0 Bug #1343671: clarify docs for os.removedirs 17 December 2005, 17:31:07 UTC
e46a1de Bug #1106572: clarify os.makedirs docs wrt umask 17 December 2005, 17:14:24 UTC
cb92b45 Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' just like string codecs. 17 December 2005, 04:38:31 UTC
a35865f Patch #1360443: Make SimpleHTTPServer display unencoded directory names. 16 December 2005, 19:36:24 UTC
back to top