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

sort by:
Revision Author Date Message Commit Date
3c8d12d Issue #10801: Remove a debug print() from test_zipfile 22 May 2011, 20:12:27 UTC
46ab96a Issue 12126: removing incorrect claim about return value of select 22 May 2011, 03:56:15 UTC
2340986 this should actually be an IOError 20 May 2011, 16:49:06 UTC
249b508 add example for not using access 20 May 2011, 16:41:13 UTC
261d855 #12072: add missing parenthesis in the doc. Patch by Sandro Tosi. 20 May 2011, 12:04:38 UTC
4925cde Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore to be able to unload the module. 19 May 2011, 22:16:09 UTC
ae8856f Ooops, add the missing file of the backport of commit 33543b4e0e5d from Python 3.2 (#10801: In zipfile, support different encodings for the header and the filenames. Patch by MvL, test by Eli Bendersky.) 18 May 2011, 11:48:41 UTC
ff1d2f4 Backport commit 33543b4e0e5d from Python 3.2: #10801: In zipfile, support different encodings for the header and the filenames. Patch by MvL, test by Eli Bendersky. 18 May 2011, 11:43:23 UTC
02a67ac Fix #10154 and #10090: locale normalizes the UTF-8 encoding to "UTF-8" instead of "UTF8" On MacOSX and OpenBSD (and possibly other BSDs) "en_US.UTF-8" is a valid locale while "en_US.UTF8" is not. As the former works on Linux as well it is better to normalize to that value. 17 May 2011, 10:44:54 UTC
e98f177 Issue #11614: Fix test_linecache, cjkencodings_test.py doesn't exist anymore 16 May 2011, 15:18:51 UTC
272e243 Issue #11614: Fix importlib tests for the new __hello__ module 16 May 2011, 14:57:18 UTC
033a543 Issue #12057: Convert CJK encoding testcase BLOB into multiple text files 16 May 2011, 14:43:38 UTC
c77b931 Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas Stührk. 16 May 2011, 14:29:35 UTC
d0e11ec Issue #10756: atexit normalizes the exception before displaying it. Patch by Andreas Stührk. Backport a fix already applied to Python 3.2+ (4a82be47a948 + 5060a92a8597). 15 May 2011, 16:57:44 UTC
2ec6b17 Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. Patch written by Charles-François Natali. 15 May 2011, 08:21:59 UTC
0b2489e Closes #6498: fix several misspellings of "SystemExit" as "SystemError". 15 May 2011, 06:49:12 UTC
1161a9c Fix copy-paste mistake in new zlib test. 14 May 2011, 22:48:24 UTC
0c3d96a Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. Raise an OverflowError if the input data is too large, instead of silently truncating the input and returning an incorrect result. 14 May 2011, 22:19:50 UTC
84aacf8 Merge heads 14 May 2011, 21:30:58 UTC
dfbe159 Issue #6378: Further adjust idle.bat to start associated Python 14 May 2011, 21:20:09 UTC
4ad78ab pprint usage example rethought. 14 May 2011, 20:43:44 UTC
1b8a417 Issue #8650: Backport 64-bit safety fixes for compress() and decompress(). 14 May 2011, 20:26:55 UTC
7619e88 Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail attribute when called without a max_length argument. 14 May 2011, 12:05:20 UTC
eda1990 #11979: improve wording and markup in sockets howto. Patch by Xavier Morel. 14 May 2011, 06:17:52 UTC
fc778fd #7960: fix docstrings for captured_output and captured_stdout. 14 May 2011, 05:22:47 UTC
3c0d8a1 #5723: Improve json tests to be executed with and without accelerations. 14 May 2011, 03:38:03 UTC
fec3ad1 Change import_fresh_module to work with packages. 14 May 2011, 03:02:25 UTC
7c40489 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence on a file opened in read+write mode (namely: reading, seeking a bit forward, writing, then seeking before the previous write but still within buffered data, and writing again). 12 May 2011, 22:13:33 UTC
0a42982 Issue #11896: Save on Close failed despite selecting "Yes" in dialog. _tkinter.c is returning <class '_tkinter.Tcl_Obj'> sometimes. Don't use tkinter.messagebox.Message - use the helper functions which convert to str. 12 May 2011, 19:25:24 UTC
e147806 Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. With Tk < 8.5 _tkinter.c:PythonCmd() raised UnicodeDecodeError, caused IDLE to exit. Converted to valid Unicode null in PythonCmd(). 11 May 2011, 16:24:17 UTC
ba9c664 Issue #10419: Fix build_scripts command of distutils to handle correctly non-ASCII scripts. Open and write the script in binary mode, but ensure that the shebang is decodable from UTF-8 and from the encoding of the script. 10 May 2011, 22:57:29 UTC
1367265 #12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations. 10 May 2011, 22:02:56 UTC
ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter! 09 May 2011, 22:38:00 UTC
4755ab0 Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, clear the end-of-file indicator after CTRL+d. 09 May 2011, 22:19:53 UTC
f9756c2 Some more tests were incorrectly marked as C specific. 09 May 2011, 15:36:53 UTC
2f48d89 Stop trying to use _xmlplus in the xml module. Closes #11164. Patch by Arfrever Frehtes Taifersar Arahesis. 09 May 2011, 06:05:43 UTC
8269a44 #11910: Fix test_heapq to skip the C tests when _heapq is missing. 09 May 2011, 04:15:04 UTC
199e085 #11910: change import_fresh_module to return None when one of the "fresh" modules can not be imported. 09 May 2011, 03:41:55 UTC
0ed8c68 Add a note to the str.find doc to suggest the use of the "in" operator. 09 May 2011, 00:54:30 UTC
262c582 put import_fresh_module in __all__ 08 May 2011, 20:32:46 UTC
1c3fd58 Add back Misc/NEWS entry that got lost during merge, and fix a couple of other things. 08 May 2011, 16:58:08 UTC
4d1cd0a Merge 07 May 2011, 17:45:34 UTC
c1d5206 Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by Kasun Herath. 07 May 2011, 17:39:37 UTC
fde86ff merge 07 May 2011, 17:35:36 UTC
0b5c21f #12002 - ftplib's abort() method raises TypeError 07 May 2011, 17:03:47 UTC
63e4230 #5421: add tests. 07 May 2011, 16:47:48 UTC
362b951 #12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations. 07 May 2011, 14:58:09 UTC
7420b70 Fix potential resource leak in test_mmap. 07 May 2011, 12:35:05 UTC
909f6d2 Issue #11277: Fix tests - crash will not trigger if the file is closed and reopened. 07 May 2011, 12:14:53 UTC
ced1056 Issue #11277: Add tests for mmap crash when using large sparse files on OS X. Also, reduce code duplication in LargeMmapTests. Original patch by Steffen Daode Nurpmeso. 07 May 2011, 11:01:50 UTC
caed7fe #11999: sync based on comparing mtimes, not mtime to system clock 07 May 2011, 02:07:19 UTC
f51738b Fix for issue 10684: Folders get deleted when trying to change case with shutil.move (case insensitive file systems only) 06 May 2011, 08:23:04 UTC
d92ab08 #11997: fix typo in init.rst. 05 May 2011, 11:19:48 UTC
fc5ed80 #8158: add missing 'description' description to optparse docstring. 05 May 2011, 01:06:57 UTC
f16898b #11985: update docstring of platform.python_implementation. 04 May 2011, 15:37:50 UTC
308053e Fix #11834. Correct site-packages paths. Patch by Bryce Verdier. 04 May 2011, 02:57:00 UTC
b351bcc #11985: document the return value of platform.python_implementation for PyPy. 03 May 2011, 17:41:48 UTC
cd6756d Branch merge 02 May 2011, 11:10:36 UTC
b79c234 Add missing colon 02 May 2011, 11:10:18 UTC
9b2fd32 Fix spelling. 02 May 2011, 01:14:49 UTC
a6cd0cf Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso. 01 May 2011, 23:05:37 UTC
10116d4 note abcs of int and float (closes #11977) 01 May 2011, 22:38:17 UTC
13aaef5 Issue #9756: credit the author, Andreas Stührk (Trundle) 01 May 2011, 21:46:48 UTC
3249dec Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type). 01 May 2011, 21:19:15 UTC
9c4f09d #11971: fix man page; it's -OO not -O0 Patch by Lars Michelsen. 01 May 2011, 15:13:56 UTC
3bba57d Fix wording 01 May 2011, 00:14:48 UTC
bb754b5 #11883: fix email examples by adding 'localhost' to SMTP constructor calls 30 April 2011, 21:26:32 UTC
9beb34e #11901: post-commit review fixes per Georg Brandl 30 April 2011, 20:35:29 UTC
4c02088 fix function name in example (closes #11966) 30 April 2011, 18:14:56 UTC
73365dd whitespace... 30 April 2011, 03:18:33 UTC
e6242d7 Fix #11961. Document STARTUPINFO and creation flag options. 30 April 2011, 03:17:51 UTC
f108f82 Wrap the testskip decorator for the proper test to resolve bb failure. 29 April 2011, 22:06:28 UTC
8b8e7f4 Further fix #7838. CREATE_NEW_CONSOLE was exposed, but none of the constants to be used for STARTUPINFO were exposed due to the change. 29 April 2011, 20:48:13 UTC
2ee8835 #11952: Fix typo in multiprocessing doc. 29 April 2011, 04:10:24 UTC
e3bdcf4 skip the extractall test on platforms where os.symlink is not available. 28 April 2011, 09:05:55 UTC
123932f Add tests for tarfile extractall feature when with symlinks 28 April 2011, 07:38:12 UTC
b185a04 #11926: add missing keywords to help("keywords"). 28 April 2011, 04:42:55 UTC
507cbc1 Issue #11940: Update external link. 27 April 2011, 23:32:08 UTC
f95033b #11942: Fix return type of Py_AddPendingCall. Patch by Sandro Tosi. 27 April 2011, 21:48:46 UTC
9a42793 Branch merge 27 April 2011, 14:23:56 UTC
10f3d7a Change markup so it generates a link 27 April 2011, 14:22:32 UTC
935a588 #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are too long. 27 April 2011, 07:17:34 UTC
72387f9 Update News entry for Issue11236 26 April 2011, 13:09:49 UTC
7cfe5f8 Fix for issue11236 getpass.getpass to respond ctrl-c or ctrl-z 26 April 2011, 12:59:46 UTC
ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. 26 April 2011, 03:09:45 UTC
2043f9c #11901: add description of how bitfields are laid out to hexversion docs Patch by Sijin Joseph. 25 April 2011, 20:12:26 UTC
16190c8 Change markup so that it creates a link 25 April 2011, 17:05:53 UTC
8f14bbd pybench prep_times calculation error (closes #11895) 25 April 2011, 01:24:08 UTC
2bad92d Remove obsolete/duplicate docstring 24 April 2011, 15:10:30 UTC
5348b63 Branch merge 24 April 2011, 00:34:11 UTC
2b9388a Fix weird executable name 22 April 2011, 19:27:10 UTC
de579d4 Add a space to make json doc a bit more readable 21 April 2011, 00:37:41 UTC
7365acc merge heads 20 April 2011, 20:38:26 UTC
2fc8b87 Port 5b607cd8c71b (closes #11892) 20 April 2011, 20:26:57 UTC
fc330ae Minor text rearrangement. 20 April 2011, 20:03:49 UTC
c3ab577 merge 20 April 2011, 18:51:09 UTC
e402724 Fix wrong function name. Noticed by Clive Darke. 20 April 2011, 18:29:31 UTC
1d4ae84 Up-port changeset 5cf8f6da8743 (closes #11890) 20 April 2011, 18:24:57 UTC
5c1a0c9 Fix argument name in reST doc to match the code 20 April 2011, 17:11:12 UTC
ad0790e Branch merge 20 April 2011, 16:54:12 UTC
back to top