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

sort by:
Revision Author Date Message Commit Date
31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions. 11 December 2013, 19:07:54 UTC
acd1730 Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the fix to Issue #14635 in Python 3.3.0 to be interpreted as milliseconds instead of seconds when the platform supports select.poll (ie: everywhere). It is now treated as seconds once again. 11 December 2013, 02:25:21 UTC
f3c6589 Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial shell window is present. (Original patch by Terry Reedy) 11 December 2013, 00:24:01 UTC
ea6854a Issue #19928: Fix test on Windows 10 December 2013, 20:17:22 UTC
d082b68 #19943: fix typo noticed by Jakub Wilk. 10 December 2013, 12:05:46 UTC
b5c4fd0 Issue #19407: add Python Packaging User Guide notes The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs. 10 December 2013, 11:24:55 UTC
1f79cdf Issue #19928: Implemented a test for repr() of cell objects. 10 December 2013, 08:20:31 UTC
9df8a1c Issue #19481: print() of string subclass instance in IDLE no more hangs. 10 December 2013, 08:05:19 UTC
d860d5c Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. 10 December 2013, 00:19:58 UTC
1761fa9 Add libmpdec license. 08 December 2013, 19:54:02 UTC
37d4e0b Fix two typos. 08 December 2013, 19:08:32 UTC
42e3b60 Missed one copyright. 08 December 2013, 19:00:56 UTC
ecff655 Update copyright. The four year increment is intentional (to save work). 08 December 2013, 18:54:05 UTC
271493b Issue #17429: Oops, remove unused import 08 December 2013, 23:25:57 UTC
620c48b Issue #17429: platform.linux_distribution() now decodes files from the UTF-8 encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi. 08 December 2013, 23:01:27 UTC
589ecda Fixes issue #19929: Call os.read with 32768 within subprocess.Popen communicate rather than 4096 for efficiency. A microbenchmark shows Linux and OS X both using ~50% less cpu time this way. 08 December 2013, 18:56:07 UTC
6976104 #18430: Document that peek() may change the position of the underlying file for the BZ2File, GzipFile and LZMAFile classes. 08 December 2013, 18:47:22 UTC
3e60a9d Issue #19535: Fixed test_docxmlrpc when python is run with -OO. 08 December 2013, 16:14:49 UTC
a82f74d Remove mentions of Python 2.x and being externally maintained from the bundled json module. Replace that with a mention of it being a version of the externally maintained simplejson module. 08 December 2013, 08:39:07 UTC
4adb37c Issue #19926: Removed unneeded test_main from test_abstract_numbers. Patch by Vajrasky Kok. 08 December 2013, 07:00:14 UTC
7ef00ff Normalize whitespace 08 December 2013, 06:38:54 UTC
9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. 08 December 2013, 06:20:35 UTC
774f909 Fixes issue #19506: Use a memoryview to avoid a data copy when piping data to stdin within subprocess.Popen.communicate. 5-10% less cpu usage. 08 December 2013, 03:12:46 UTC
6c527cf Issue #19857: Make sure that test_imaplib reaps server threads even in face of error upon client disconnection. 07 December 2013, 19:30:17 UTC
933142a document that compile() can take bytes (closes #19910) 07 December 2013, 01:12:39 UTC
d4d6055 Issue #19900: improve generalities at the start of the pickle module doc 06 December 2013, 23:56:59 UTC
b1a92a4 Added minor clarification in logging HOWTO. 06 December 2013, 11:22:24 UTC
dd799d2 Issue #18840: Introduce the json module in the tutorial, and deemphasize the pickle module. 05 December 2013, 22:46:32 UTC
9c72ebc #19839: Fix lzma module's handling of non-lzma data at EOF. 04 December 2013, 22:03:49 UTC
1de19ac #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF. 04 December 2013, 22:01:15 UTC
a5cc9d6 Tweak the socket module doc layout 04 December 2013, 20:11:03 UTC
e3658a7 Issue #19882: tweak docs for socket.close() 04 December 2013, 20:02:42 UTC
abbc8ca ncurses' winch and mvwinch return an unsigned long 04 December 2013, 07:50:22 UTC
13e6d23 Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. (grafted from c80083ad142db2939507800c755082293a87f2de) 04 December 2013, 03:02:05 UTC
4b7f7ac Make a couple of parameters constant. 03 December 2013, 13:33:46 UTC
827f5d3 Issue #19665: Increased timeout for SMTPHandler test. 03 December 2013, 11:28:55 UTC
7601a1e Add NEWS entry for issue #19834. 02 December 2013, 16:19:00 UTC
f311453 Issue #19814: Clarify argparse's docs w.r.t prefix matching 02 December 2013, 13:49:54 UTC
22d0418 Issue #19728: Fix sys.getfilesystemencoding() documentation 02 December 2013, 11:16:46 UTC
9d1dbca Fix issue #19834: Support unpickling of exceptions pickled by Python 2. 02 December 2013, 10:41:01 UTC
708a318 Fixes issue #15798: subprocess.Popen() no longer fails if file descriptor 0, 1 or 2 is closed. The errpipe_write fd will always be >= 3. 02 December 2013, 01:27:40 UTC
5c1c3b4 Issue #11480: Fixed copy.copy to work with classes with custom metaclasses. Patch by Daniel Urban. 01 December 2013, 21:25:26 UTC
361e30c Undo supposed fix for Issue #15798 until I understand why this is causing test_multiprocessing_forkserver and test_multiprocessing_spawn failures on head (3.4). 01 December 2013, 08:12:24 UTC
1eda9e7 Fixes Issue #15798 - subprocess.Popen() no longer fails if file descriptor 0, 1 or 2 is closed. 01 December 2013, 03:02:57 UTC
65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. 01 December 2013, 01:55:48 UTC
19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. 01 December 2013, 00:06:39 UTC
f8ceb04 Issue #19845: Updated the Compiling Python on Windows docs. 30 November 2013, 22:59:33 UTC
a9c179b Issue #19789: Clarified documentation for logging.disable. 30 November 2013, 22:45:29 UTC
896414f Fixed _pickle.Unpickler to handle empty persistent IDs correctly. 30 November 2013, 21:52:35 UTC
1a83070 Issue #19088: Fix incorrect caching of the copyreg module. This fix does not cause any degradation in performance. 30 November 2013, 08:53:09 UTC
04a684b Issue #19595: Re-enable a long-disabled test in test_winsound 28 November 2013, 05:56:04 UTC
889d24e Revert unrelated changes introduced by changeset b2066bc8cab9 (issue #19795). 29 November 2013, 21:40:35 UTC
fbc1c26 Issue #19795: Improved markup of True/False constants. 29 November 2013, 10:17:13 UTC
4b79518 Fix indentation from previous commit 28 November 2013, 14:33:21 UTC
5dd40e5 Issue #19815: Fix segfault when parsing empty namespace declaration. Based on patches by Christian Heimes and Vajrasky Kok 28 November 2013, 14:31:58 UTC
c303cfd Skip test_find_mac on Windows (issue #19804). This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin. 27 November 2013, 06:57:51 UTC
b152e17 recommend OrderedDict for this FAQ (closes #19805) 27 November 2013, 05:05:25 UTC
0ee22bf fix format spec recursive expansion (closes #19729) 27 November 2013, 01:22:36 UTC
bb65b5b Issue #19788: kill_python(_d).exe is now run as a PreBuildEvent on the pythoncore sub-project. This should prevent build errors due a previous build's python(_d).exe still running. 26 November 2013, 22:32:59 UTC
99fb051 Merge heads 26 November 2013, 20:57:10 UTC
a6edea5 Issue #19588: Fixed tests in test_random that were silently skipped most of the time. Patch by Julian Gindi. 26 November 2013, 20:50:10 UTC
56507c7 Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with virtual interface. Original patch by Kent Frazier. 26 November 2013, 20:47:16 UTC
a04f4e0 Use @bigmemtest more accurately. 26 November 2013, 20:28:29 UTC
c93329b Issue #11489: JSON decoder now accepts lone surrogates. 26 November 2013, 19:25:28 UTC
f45bbb6 Issue #19638: Raise ValueError instead of crashing when converting billion character strings to float. 26 November 2013, 16:19:13 UTC
22dc4d5 Issue #19794: Improved markup for True/False constants. 26 November 2013, 15:32:16 UTC
1833ac3 Markup fix. 26 November 2013, 07:25:24 UTC
9527f16 Issue #19691: remove outdated mention about RuntimeError 25 November 2013, 18:08:32 UTC
0e52404 Remove an errant extra \ within a docstring. 25 November 2013, 08:30:56 UTC
37b70bb Closes #19622: clarify message about bufsize changes in 3.2.4 and 3.3.1. 25 November 2013, 07:48:37 UTC
db5e74f Fix doc markup error. 25 November 2013, 07:29:44 UTC
f500588 Fix broken link in html.entities docs. 25 November 2013, 04:40:12 UTC
4bcc796 #19620: Fix typo in docstring (noticed by Christopher Welborn). 25 November 2013, 03:14:51 UTC
97fc2ba Document that @property can incorporate a docstring from the getter method. Improve readabilty with additional whitespace. 24 November 2013, 22:53:29 UTC
45059eb 1) Prepare libmpdec for the 2.4.0 release. None of the following changes affects _decimal: o Make all "mpd_t to C integer" conversion functions available in both the 64-bit and the 32-bit versions. o Make all mixed mpd_t/C integer arithmetic functions available in the 32-bit version. o Better handling of __STDC_LIMIT_MACROS for C++ users. o Add struct tags (at the request of C++ users). 2) Check for libmpdec.so.2 if --with-system-libmpdec is used. 24 November 2013, 18:44:57 UTC
cdac302 Issue #19545: Avoid chained exceptions while passing stray % to time.strptime(). Initial patch by Claudiu Popa. 24 November 2013, 16:15:37 UTC
44d2429 Doc/Makefile: also do "make suspicious" during daily autobuild 24 November 2013, 15:17:54 UTC
a8892a1 Issue #19743: fix test_gdb on some optimized Python builds 24 November 2013, 13:58:17 UTC
f847186 Fix make distclean for out-of-tree builds 24 November 2013, 02:32:40 UTC
23828f6 Undo (hopefully) buildbot failures 23 November 2013, 17:20:42 UTC
b17d2aa Issue #19308: fix the gdb plugin on gdbs linked with Python 3 23 November 2013, 16:40:36 UTC
c17565e Issue #19733: Temporary disable test_image on MacOSX. 23 November 2013, 13:21:33 UTC
f92ef9b Update Itamar's name 23 November 2013, 01:17:24 UTC
e1391a0 Issue #18326: Clarify that list.sort's arguments are keyword-only. Also, attempt to reduce confusion in the glossary by not saying there are different "types" of arguments and parameters. 22 November 2013, 19:58:34 UTC
0b1386d Print Tk patchlevel in Tk and Ttk tests in verbose mode (issue19654). 21 November 2013, 17:23:19 UTC
d9a0182 Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms. 21 November 2013, 09:02:30 UTC
8db1823 Print Tk patchlevel in test_tcl in verbose mode (issue19654). 20 November 2013, 15:43:49 UTC
75ed890 configure: echo message to AS_MESSAGE_FD. --silent redirects fd to /dev/null. 20 November 2013, 00:11:18 UTC
2658dd7 Add workaround for VS 2010 nmake clean issue. VS 2010 doesn't set up PATH for nmake.exe correctly. 19 November 2013, 23:41:29 UTC
fb099c9 #19449: Handle non-string keys when generating 'fieldnames' error. csv was handling non-string keys fine except for the error message generated when a non-string key was not in 'fieldnames'. Fix by Tomas Grahn, full patch-with-test by Vajrasky Kok (tweaked slightly). 19 November 2013, 18:16:20 UTC
30c5ad2 #1098749: re-word gettext docs to not encourage using pygettext so much. Also, add a link to the Babel package. 19 November 2013, 16:05:20 UTC
7ad11bf - Remove execute permissions from test_dbm_gnu.py and test_dbm_ndbm.py 19 November 2013, 08:12:28 UTC
ecf4193 - Update config.{guess,sub} for new ports. 19 November 2013, 07:54:38 UTC
4accf45 Issue #19596: Set untestable tests in test_importlib to None to avoid reporting success on empty tests. 19 November 2013, 03:44:38 UTC
30d8e16 Cleanup this test's modification of os.environ in teardown (this already exists in 3.4 but apparently wasn't done for 3.3). 18 November 2013, 21:10:04 UTC
162307f Fix test.support.bind_port() to not cause an error when Python was compiled on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that reasonably new socket option. 17 November 2013, 22:19:32 UTC
7929a1d Fix compilation error under gcc of the ctypes module bundled libffi for arm. A variable was declared below the top of a block and one function was using a K&R C style function declaration! 17 November 2013, 21:56:07 UTC
76edd21 Issue #19603: Use specific asserts in test_decr. 17 November 2013, 21:38:50 UTC
e65cb19 Fix indentation in doc example. 17 November 2013, 20:07:48 UTC
46b4a5e Issue #19599: Increase sleep period. 17 November 2013, 17:45:16 UTC
back to top