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

sort by:
Revision Author Date Message Commit Date
c7ddece Copy from the trunk, for the buildbot. 12 March 2006, 06:49:18 UTC
8d51d55 Copy from the trunk, for the buildbot. 12 March 2006, 06:48:57 UTC
82e8f38 Merge rev 42904 from the trunk. _hotshot hotshot_profiler(): If write_header() returned an error code, this let `self` leak. This is a disaster on Windows, since `self` already points to a newly-opened file object, and it was impossible for Python code to close the thing since the only reference to it was in a blob of leaked C memory. test_hotshot test_bad_sys_path(): This new test provoked the C bug above. This test passed, but left an open "@test" file behind, which caused a massive cascade of bogus test failures in later, unrelated tests on Windows. Changed the test code to remove the @test file it leaves behind, which relies on the change above to close that file first. 11 March 2006, 04:55:45 UTC
fea70fe Backport of 42551 (EXTRATESTOPTS). 10 March 2006, 22:56:20 UTC
eed78ef Backport of 42960, to support the options buildbot uses. 10 March 2006, 22:15:48 UTC
ea901a1 Bug #1445901: os.path.realpath() is available on Win/Mac too. (backport from rev. 42923) 08 March 2006, 20:59:12 UTC
865ddfb Fix pydoc.synopsis() so that it doesn't error out with an unreadable module. (backport from rev. 42912) 08 March 2006, 09:34:57 UTC
360641c Backport fixes reported by Coverity. 08 March 2006, 06:39:50 UTC
5f2ad0b Typo fix 07 March 2006, 16:17:09 UTC
361cd4b Backport r42894: SF #1444030 Fix several potential defects found by Coverity. 07 March 2006, 15:59:09 UTC
82735da Backport trunk's r42890 (thomas.wouters): Coverity found bug: test result of PyTuple_New() against NULL before use. and r42891 (thomas.wouters): Fix gcc 4.0.x warning about use of uninitialized value. 07 March 2006, 14:16:02 UTC
d704935 Backport trunk's r42888 (thomas.wouters): Coverity found refleak: need to free 'v' after calling Tkinter_Error(). 07 March 2006, 14:06:31 UTC
4fbad67 Backport trunk's r42885 (thomas.wouters): Coverity-found bug: don't use temp->next *before* checking it for NULL. Also return rather than use it again. 07 March 2006, 13:39:26 UTC
e34fc70 Backport trunk's r42878 (neal.norwitz): Thanks to Coverity, these were all reported by their Prevent tool. and r42881 (thomas.wouters): Don't DECREF a borrowed reference. 07 March 2006, 12:08:42 UTC
a4b4dc3 Backport revision 42872: If size is specified, try to read at least size characters. This is a alternative version of patch #1379332. 06 March 2006, 22:44:03 UTC
39be806 Skip codecs tests on Python 2.3. 06 March 2006, 00:55:25 UTC
a10a09d Backport: SF #1442767, docs for os.statvfs miss f_bsize parameter. 03 March 2006, 23:13:19 UTC
518f2a5 Backport of memory leak fixes. 01 March 2006, 21:36:32 UTC
68e4cbb Return value off PyErr_Warn() for raising string exceptions was not being checked. Problem when 'warnings' was set to "error" and thus would re-raise a new exception. 27 February 2006, 23:15:56 UTC
9e777e5 do_mkvalue(): Squash compiler warnings about mixing signed and unsigned types in comparison. 27 February 2006, 17:49:41 UTC
91e742f Merge rev 42607 from the trunk. Patch 1413181, by Gabriel Becedillas. PyThreadState_Delete(): if the auto-GIL-state machinery knows about the thread state, forget it (since the thread state is being deleted, continuing to remember it can't help, but can hurt if another thread happens to get created with the same thread id). 27 February 2006, 17:47:02 UTC
05b9254 Trimmed trailing whitespace. 27 February 2006, 17:22:16 UTC
aefbf72 backport 25 February 2006, 21:04:03 UTC
5f5124e Backport 41753: Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. Also bug #1435487 (dup). 21 February 2006, 09:19:45 UTC
e8cebba Bug #947571: By default, urllib.urlopen() does not raise IOErrors on server error codes. Make this clear. 20 February 2006, 21:26:29 UTC
fea6059 Bug #1210377: close bsddb cursor correctly after NotFoundError. 20 February 2006, 20:29:56 UTC
e5db6b2 Patch #931938: prevent setting sys.prefix to "" 20 February 2006, 17:37:39 UTC
f1a408d Bug #1102649: add a note to pickle docs that pickle files should be opened in binary mode. 20 February 2006, 13:12:07 UTC
9c65202 Bug #1323369: document possible values of sys.getwindowsversion() platform field 20 February 2006, 12:15:26 UTC
f07e42c Bug #1101233: fix test_fcntl on netbsd2 platform. 20 February 2006, 10:32:05 UTC
0b61a45 Backported from r41842. 20 February 2006, 10:21:14 UTC
2fc63f7 Bug #854823: socketmodule now builds on Sun platforms even when INET_ADDRSTRLEN is not defined. 20 February 2006, 09:42:37 UTC
fc10228 Make clear that patch #1336582 wasn't a new feature. 19 February 2006, 13:22:58 UTC
044d2ce Patch #1337756: fileinput now accepts Unicode filenames. 19 February 2006, 09:51:33 UTC
4655481 Patch #1352711: make zipimport raise a complete IOError 19 February 2006, 09:39:02 UTC
394e4af Bug #801349: document that start/stop/step slice arguments can be None 19 February 2006, 00:12:46 UTC
2aaf918 Patch #1415507: clarify docs on reference stealing 18 February 2006, 22:56:02 UTC
dc2a854 Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, offset>=0. 18 February 2006, 21:57:28 UTC
f3cba11 Backport: This should get test_timeout to pass when running on any python.org host. 18 February 2006, 21:25:56 UTC
b02be7e Patch #1373643: The chunk module can now read chunks larger than two gigabytes. 18 February 2006, 21:10:59 UTC
f1fadcc Remove soundex from "undocumented modules". 17 February 2006, 11:51:20 UTC
a957e8f Bug #1430298: It is now possible to send a mail with an empty return address using smtplib. 17 February 2006, 09:53:00 UTC
d057c91 Bug #1432260: better handle lambda functions' names in pydoc 17 February 2006, 09:47:47 UTC
fbf5ff3 Patch #1432345: Make python compile on DragonFly. 17 February 2006, 08:39:55 UTC
df7d408 Cast assignments to ``unsigned char *`` from PyString_AS_STRING() calls to silence compiler warnings on gcc 4.0.1 . 16 February 2006, 07:01:45 UTC
222a704 use correct function in example (backport of trunk revision 42377) 15 February 2006, 06:56:35 UTC
d577b6d Send failures to python-checkins, cc/me. 15 February 2006, 05:02:00 UTC
24f65ac Add build.sh to 2.4 so we can build the docs (and only the docs). 14 February 2006, 08:16:01 UTC
8ef3475 Try to improve name based on discussion on python-checkins with Jim Jewett 13 February 2006, 00:37:09 UTC
3273cb5 Backport r42314 which fixed Windows breakage when checking that socket descriptors fit in fd_set. Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE. Proposed by Tim Peters implemented by Martin von Loewis. 12 February 2006, 21:07:17 UTC
6fc1da1 Even more copyright locations! 11 February 2006, 18:21:44 UTC
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
back to top