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

sort by:
Revision Author Date Message Commit Date
2c5e28e Issue #12057: Fix .hgeol and test_multibytecodec_support for the conversion of the CJK encoding testcase BLOB into multiple text files. 17 May 2011, 13:49:56 UTC
b13cacf (backport) Fixes #11088: IDLE crashes when using F5 to run a script on OSX with Tk 8.5 Without this patch IDLE will crash reliably on OSX when Tkinter is linked to TkCocoa 8.5.x. To reproduce: * Create a new file (script.py) with the following two lines: x = raw_input('prompt: ') print x * Save the script * Run the script using the F5 keyboard shortcut (running from the menu works fine) The patch is a fairly crude hack, but we haven't found a better workaround for this Tk bug yet. 17 May 2011, 13:13:46 UTC
372954e (backport)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, 11:22:30 UTC
bfbd1a2 #12092: backport rephrasing of a paragraph in the tutorial. 17 May 2011, 02:39:22 UTC
b429c57 #12093: fix typo in struct doc. Patch by Sandro Tosi. 17 May 2011, 02:17:35 UTC
4dd89ce Fix closes issue #12088 - fixes the tarfile.extractall issue when the symlinks/hardlink was broken. It handles now in a graceful manner (No exception is raised, behavior similar GNU tar). 17 May 2011, 02:12:18 UTC
72bb99d Issue #11614: Fix test_linecache, cjkencodings_test.py doesn't exist anymore 16 May 2011, 23:18:33 UTC
73e3e76 Issue #12057: Convert CJK encoding testcase BLOB into multiple text files 16 May 2011, 15:16:18 UTC
53b6a5f NEWS entry for fix of issue #9516 15 May 2011, 14:51:10 UTC
a70286b Issue #9516: avoid errors in sysconfig when MACOSX_DEPLOYMENT_TARGET is set in shell. Without this patch python will fail to start properly when the environment variable MACOSX_DEPLOYMENT_TARGET is set on MacOSX and has a value that is not compatible with the value during Python's build. This is caused by code in sysconfig that was only meant to be used in disutils. 15 May 2011, 14:44:27 UTC
11041f0 Port #6498 fix: fix several misspellings of "SystemExit" as "SystemError". 15 May 2011, 06:50:32 UTC
fb1d60c Fixes Issue #12059: Properly handle missing hash functions even when the expected builtin modules are not present. This includes a unittest for __get_builtin_constructor() in the face of such an error. 14 May 2011, 22:07:53 UTC
0cc4fd9 Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail attribute when called without a max_length argument. 14 May 2011, 12:29:07 UTC
9b323a5 #11979: improve wording and markup in sockets howto. Patch by Xavier Morel. 14 May 2011, 06:17:52 UTC
4dcb7be #7960: fix docstrings for captured_output and captured_stdout. 14 May 2011, 05:19:43 UTC
e3992eb #5723: Improve json tests to be executed with and without accelerations. 14 May 2011, 03:24:53 UTC
720f8de Change import_fresh_module to work with packages. 14 May 2011, 03:02:25 UTC
d82a887 Issue #11896: Save on Close failed despite selecting "Yes" in dialog. Backport 70055:35ed0efd7dd3 13 May 2011, 01:18:47 UTC
ee46a7b Issue #12062: In the `io` module, 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:31:52 UTC
0730706 #12061: remove duplicate glossary entry. 12 May 2011, 05:47:06 UTC
c1ec7b5 #12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations. 10 May 2011, 21:55:35 UTC
47d1d0d Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in order to accept exactly one connection. Patch by Daniel Evers. 10 May 2011, 17:16:03 UTC
3517612 Issue 12047: Expand the style guide. 10 May 2011, 07:39:02 UTC
b1241f9 (Merge 3.1) 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, 23:52:03 UTC
2c585f6 (Merge 3.1) 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:22:59 UTC
b47553a Some more tests were incorrectly marked as C specific. 09 May 2011, 15:32:18 UTC
591c2df Issue 11164: Remove obsolete allnodes test from minidom test. Patch by Arfrever Frehtes Taifersar Arahesis. 09 May 2011, 06:19:13 UTC
5c5d7e2 #11910: Fix test_heapq to skip the C tests when _heapq is missing. 09 May 2011, 03:54:53 UTC
193c34b #11910: change import_fresh_module to return None when one of the "fresh" modules can not be imported. 09 May 2011, 03:28:42 UTC
7055064 Fix deprecation warnings in test_unittest. 09 May 2011, 02:58:17 UTC
87b86c8 Add a note to the str.find doc to suggest the use of the "in" operator. 09 May 2011, 00:54:30 UTC
01c9a16 import_fresh_module ought to be in __all__ 08 May 2011, 20:32:04 UTC
1bd816e Fix cut and paste error. 07 May 2011, 22:19:34 UTC
8dd0624 Some tests were incorrectly marked as C specific. 07 May 2011, 21:16:42 UTC
21ce8f0 Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by Kasun Herath. 07 May 2011, 17:59:33 UTC
0639be6 #10169: Fix argument parsing in socket.sendto() to avoid error masking. 07 May 2011, 16:21:22 UTC
cec4649 #12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations. 07 May 2011, 14:40:23 UTC
5ae6c42 Fix potential resource leak in test_mmap. 07 May 2011, 12:34:22 UTC
d0a8f16 Issue #11277: Fix tests - crash will not trigger if the file is closed and reopened. 07 May 2011, 12:12:12 UTC
0d837ef 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:17:16 UTC
3b066a7 Issue #11277: Remove useless test from test_zlib. 07 May 2011, 09:28:03 UTC
8b26c4b #11999: sync based on comparing mtimes, not mtime to system clock 07 May 2011, 01:56:22 UTC
58d6b1b Backport fix for issue #10684 from 3.x 06 May 2011, 09:31:33 UTC
fe12aa6 #11997: fix typo in init.rst. 05 May 2011, 11:19:48 UTC
a436e71 #8158: add missing 'description' description to optparse docstring. 05 May 2011, 01:05:52 UTC
28a8e96 Issue #11277: oops, fix checksum values of test_zlib on 32 bits 04 May 2011, 19:40:36 UTC
7fd90c4 Issue #11277: test_zlib tests a buffer of 1 GB on 32 bits (instead of a buffer of 2 GB) 04 May 2011, 19:27:39 UTC
6fa0947 #11985: update docstring of platform.python_implementation. 04 May 2011, 15:37:50 UTC
f5164f6 #11982: remove now unused function. 04 May 2011, 12:28:31 UTC
fb5d3e7 Issue #11277: fix issue number in a test_zlib comment 04 May 2011, 12:02:11 UTC
df8a8f7 #11982: fix json.loads('""') to return u'' rather than ''. 04 May 2011, 11:40:53 UTC
1602ec1 Fix #11834. Correct site-packages paths. Patch by Bryce Verdier. 04 May 2011, 03:01:53 UTC
611cfd2 Denote 3.3.0 as the last supported Windows 2000 release. This corresponds with change b9390aa12855 to PEP-11. 03 May 2011, 18:36:34 UTC
001cc95 #11985: document the return value of platform.python_implementation for PyPy. 03 May 2011, 17:41:48 UTC
e4163e2 Issue #10276: Fix test_zlib, m may be undefined in the finally block 03 May 2011, 15:25:28 UTC
f9fb434 Issue #10276: test_zlib checks that inputs of 2 GB are handled correctly by crc32() and adler32(). Patch written by Steffen Daode Nurpmeso. 03 May 2011, 13:19:23 UTC
0a92d18 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes). 03 May 2011, 13:09:24 UTC
645b9f6 Issue #8651: Fix "z#" format of PyArg_Parse*() function: the size was not written if PY_SSIZE_T_CLEAN is defined. 03 May 2011, 13:06:11 UTC
112d48a (Merge 3.1) Issue #11277: mmap.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. 03 May 2011, 12:36:36 UTC
cfa8483 Branch merge 02 May 2011, 11:36:18 UTC
941592a Fix grammar to include both integer types in 2.x 02 May 2011, 11:09:36 UTC
ec0ecb1 Fix spelling. 02 May 2011, 01:14:49 UTC
17ebbdb note abcs of int and float (closes #11977) 01 May 2011, 22:38:17 UTC
97cf585 (Merge 3.1) Issue #9756: credit the author, Andreas Stührk (Trundle) 01 May 2011, 21:51:11 UTC
e363ec1 (Merge 3.1) 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:43:37 UTC
12b8fcf Split combined code/doctest code blocks in two blocks, to enable proper highlighting. 01 May 2011, 20:36:31 UTC
f9860c8 #11971: fix man page; it's -OO not -O0 Patch by Lars Michelsen. 01 May 2011, 15:12:35 UTC
2a53d33 Fix wording 01 May 2011, 00:15:03 UTC
a27c8e3 Branch merge 01 May 2011, 00:09:37 UTC
d6dcf82 Add docstring to anydbm.open 01 May 2011, 00:02:30 UTC
015014f Fix file handle leak 01 May 2011, 00:05:58 UTC
dd6ab85 #11883: fix email examples by adding 'localhost' to SMTP constructor calls 30 April 2011, 21:26:02 UTC
dcaacbf #11901: post-commit review fixes per Georg Brandl 30 April 2011, 20:34:35 UTC
2a7a3ee fix function name in example (closes #11966) 30 April 2011, 18:14:56 UTC
b22f39c fix formatting, :c:func: --> :cfunc: 30 April 2011, 06:02:12 UTC
11d1171 Issue #10912: add clarification for PyObject_RichCompareBool comparing identical objects 30 April 2011, 05:51:55 UTC
bb23bd6 Fix #11961. Document STARTUPINFO and creation flag options. 30 April 2011, 03:23:46 UTC
20de458 whitespace fix 29 April 2011, 21:28:52 UTC
77b7591 merge 29 April 2011, 21:21:51 UTC
6940e61 #11952: Fix typo in multiprocessing doc. 29 April 2011, 04:10:24 UTC
9d68ad8 Merged solution for #11786 from 2.6 28 April 2011, 15:40:19 UTC
22108f1 Closes #11786: ConfigParser.[Raw]ConfigParser optionxform(). 28 April 2011, 15:27:59 UTC
f3eb7d3 skip the extractall test on platforms where os.symlink is not available. 28 April 2011, 09:00:19 UTC
011525e Fix closes issue10761: tarfile.extractall failure when symlinked files are present. 28 April 2011, 07:30:31 UTC
bdfa2e6 Backport test from #11926. 28 April 2011, 04:59:33 UTC
bd0933a Issue #11940: Update external link. 27 April 2011, 23:34:07 UTC
cd12746 #11942: Fix return type of Py_AddPendingCall. Patch by Sandro Tosi. 27 April 2011, 21:48:46 UTC
1f9eb15 Move NEWS entry to the right section. 27 April 2011, 17:26:06 UTC
4394e0d Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* APIs, to avoid a crash with the pthread implementation in RHEL 5. Patch by Charles-François Natali. 27 April 2011, 17:20:48 UTC
34b32d6 #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are too long. 27 April 2011, 06:45:46 UTC
5dc6868 Update NEWS for Issue11236. 26 April 2011, 13:17:45 UTC
83627ed issue11236 getpass.getpass to respond ctrl-c or ctrl-z 26 April 2011, 13:02:26 UTC
e3685f6 #6780: fix starts/endswith error message to mention that tuples are accepted too. 26 April 2011, 02:12:51 UTC
a0895db #11901: add description of how bitfields are laid out to hexversion docs Patch by Sijin Joseph. 25 April 2011, 20:10:18 UTC
f93bb26 pybench prep_times calculation error (closes #11895) 25 April 2011, 01:20:54 UTC
3f2b184 Other minor clean-ups. 24 April 2011, 19:55:28 UTC
c646743 Remove unused branch in the clear() method. Minor comment edits. 24 April 2011, 19:30:39 UTC
536999c Minor code clean-up. 24 April 2011, 03:11:50 UTC
b36f747 Remove unused imports 24 April 2011, 01:37:37 UTC
43a5641 Minor code simplification. 23 April 2011, 22:51:38 UTC
back to top