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

sort by:
Revision Author Date Message Commit Date
9b3085c #17142: fix apparent copy and paste error in test_all. 06 February 2013, 15:06:10 UTC
381372d #17091: update docstring for _thread.Lock.acquire. The main docs were fixed to remove mention of None long ago, but the docstring was not. Reported by Armin Rigo, patch by Ian Cordasco. 04 February 2013, 15:29:38 UTC
28ababc Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows. 04 February 2013, 13:19:21 UTC
a07a8b4 Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple parses nested mutating sequence. 04 February 2013, 10:45:46 UTC
f727c31 fix find_library on Solaris (closes #5289) 04 February 2013, 00:25:11 UTC
3e081c7 Add alias to restore 2.7.2 compatibility for setup scripts (#13994). The customize_compiler function moved many times during the 2.7 series; in 2.7.3, setup scripts importing this function from ccompiler were broken. This commit restores compatibility without reintroducing the issue that #13994 originally fixed (duplication of the function). A unit test makes little sense here, as distutils tests never do imports in functions, and the fix is very simple. 03 February 2013, 16:41:19 UTC
354d50e Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying stream or a decoder produces data of an unexpected type (i.e. when io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec). 03 February 2013, 15:10:42 UTC
cc23cc6 Issue #16698: Skip posix test_getgroups when built with OS X deployment target prior to 10.6. 02 February 2013, 23:06:45 UTC
d66c0ee Issue #15633: httplib.HTTPResponse is now mark closed when the server sends less than the advertised Content-Length. 02 February 2013, 21:49:34 UTC
1efd982 Back out fix for issue #13886; it introduced a new bug in interactive readline use. 02 February 2013, 19:52:54 UTC
4264532 Issue 16398: Use memcpy() in deque.rotate(). 02 February 2013, 18:23:37 UTC
2a051fa Fix test for issue #6972. 02 February 2013, 17:25:57 UTC
a8d64ae Issue #17034: Use Py_CLEAR() in stringobject.c. 02 February 2013, 16:43:58 UTC
05fd744 Preserve backslashes in malicious zip files for testing issue #6972. 02 February 2013, 16:34:57 UTC
eff492f Issue #15881: Fixed atexit hook in multiprocessing. 02 February 2013, 16:15:50 UTC
99b0b72 merge heads 02 February 2013, 16:10:11 UTC
13e56c7 Fix the test and remove trailing dots on Windows for issue #6972. 02 February 2013, 15:46:33 UTC
dc6dc4b Fix a Cyrillic "C" inroduced into the docs by patch for issue #6972. 02 February 2013, 11:27:02 UTC
7c06875 Fix translating of illegal characters on Windows (issue #6972). 02 February 2013, 10:30:49 UTC
23298cb Fix tests for issue #11159. 02 February 2013, 10:16:22 UTC
07fbf60 Merge heads 02 February 2013, 08:36:43 UTC
8673ab9 Issue #11159: SAX parser now supports unicode file names. 02 February 2013, 08:28:30 UTC
7045f05 Issue #15116: Remove references to appscript as it is no longer being supported. 02 February 2013, 08:14:44 UTC
6e7da15 Issue #15587: Enable Tk high-resolution text rendering on Macs with Retina displays. Applies to Tkinter apps, such as IDLE, on OS X framework builds linked with Cocoa Tk 8.5+. Suggested by Kevin Walzer 02 February 2013, 07:10:56 UTC
a8a3468 In the _hashlib module, only initialize the static data for OpenSSL's constructors once, to avoid memory leaks when finalizing and re-initializing the Python interpreter. 02 February 2013, 01:00:14 UTC
c0022b2 Silence a -Wformat-extra-argument warning when compiling. 02 February 2013, 00:13:27 UTC
acf7b95 Issue #16256: OS X installer now sets correct permissions for doc directory. 01 February 2013, 21:58:00 UTC
a06ad5b better news entry 01 February 2013, 21:07:27 UTC
a998ad0 Additional fix for Issue #12268: The io module file object writelines() methods no longer abort early when one of its write system calls is interrupted (EINTR). 01 February 2013, 21:02:59 UTC
608cc45 Fixes Issue #6972: The zipfile module no longer overwrites files outside of its destination path when extracting malicious zip files. 01 February 2013, 19:40:18 UTC
f39d52f Issue #1783: Remove declarations of nonexistent private variables. 01 February 2013, 11:13:32 UTC
139e445 #16128: clarify that instances of user-defined classes compare equal with themselves. 01 February 2013, 03:18:44 UTC
d65e2ba - Issue #17086: Backport the patches from the 3.3 branch to cross-build the package. 31 January 2013, 22:52:03 UTC
c5200b4 Issue #17041: Fix doctesting when Python is configured with the --without-doc-strings. 31 January 2013, 14:10:15 UTC
8d510cd Issue #17049: Localized calendar methods now return unicode if a locale includes an encoding and the result string contains month or weekday (was regression from Python 2.6). 31 January 2013, 13:57:51 UTC
0be506a Issue #4844: ZipFile now raises BadZipfile when opens a ZIP file with an incomplete "End of Central Directory" record. Original patch by Guilherme Polo and Alan McIntyre. 31 January 2013, 13:26:55 UTC
18fae3f Issue #13590: OS X Xcode 4 - improve support for universal extension modules In particular, fix extension module build failures when trying to use 32-bit-only installer Pythons on systems with Xcode 4 (currently OS X 10.8, 10.7, and optionally 10.6). * Backport 3.3.0 fixes to 2.7 branch (for release in 2.7.4) * Since Xcode 4 removes ppc support, extension module builds now check for ppc compiler support and by default remove ppc and ppc64 archs when they are not available. * Extension module builds now revert to using system installed headers and libs (/usr and /System/Library) if the SDK used to build the interpreter is not installed or has moved. * Try to avoid building extension modules with deprecated and problematic Apple llvm-gcc compiler. If original compiler is not available, use clang instead by default. 31 January 2013, 09:24:55 UTC
77cd8aa Issue 15505. unittest.installHandler and non callable signal handlers 29 January 2013, 22:59:02 UTC
b322621 Added clarification to logging HOWTO. 29 January 2013, 22:36:39 UTC
64cca12 Move NEWS entity from library to core section. 29 January 2013, 10:04:55 UTC
74e449f Add tests for raw-unicode-escape codec. 29 January 2013, 09:39:44 UTC
7277f9d Clean up escape-decode decoder tests. 29 January 2013, 09:06:28 UTC
f89ad15 Merge heads 29 January 2013, 08:39:19 UTC
c8e5812 Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. 29 January 2013, 08:20:34 UTC
e1c9794 Issue #14018: Backport OS X installer updates from 3.3. 29 January 2013, 08:07:46 UTC
8d15ca3 fix long fixer docs (#4590) 28 January 2013, 23:28:38 UTC
acf4017 Add Robert Xiao to Misc/ACKS for issue17051. 28 January 2013, 18:27:28 UTC
46f5b35 Issue #17051: Fix a memory leak in os.path.isdir() on Windows. Patch by Robert Xiao. 28 January 2013, 18:19:50 UTC
80a0a1e Fix skip conditions in some docstings tests. 28 January 2013, 11:24:01 UTC
d7797c6 Remove trailing whitespaces in cStringIO.h. 28 January 2013, 09:00:58 UTC
72121c6 - Issue #17041: Fix testing when Python is configured with the --without-doc-strings option. 27 January 2013, 17:45:49 UTC
6d3a860 Issue #11729: Backport commit bff052d9 from libffi upstream in order to fix a ctypes build failure with clang. 27 January 2013, 17:00:24 UTC
221508c Issue #13886: Fix input() to not strip out supposedly-invalid input bytes. 27 January 2013, 13:21:26 UTC
4511e27 Issue #14018: fix merge error 27 January 2013, 02:08:22 UTC
c19d7b6 fix typo; thanks to Dmitry Northerner from docs@ 26 January 2013, 23:22:33 UTC
4216aa1 Adapt test for build --without-doc-strings. 26 January 2013, 12:31:44 UTC
c59c85c Issue #10156: In the interpreter's initialization phase, unicode globals are now initialized dynamically as needed. 26 January 2013, 10:13:40 UTC
6fef14d Optimize the test for issue #13454. Now it requires almost 4x less memory and is almost 2x faster. 26 January 2013, 09:51:42 UTC
01b3a08 Issue #16975: Fix error handling bug in the escape-decode decoder. 25 January 2013, 21:30:50 UTC
1c60c7a Issue #1602133: 'environ' is not really available with shared libraries on OSX There already was a workaround for this for framework builds on OSX, this changeset enables the same workaround for shared libraries. Closes #1602133 25 January 2013, 16:55:39 UTC
fa3f9a3 - Issue #3754: fix typo in pthread AC_CACHE_VAL. 25 January 2013, 14:32:31 UTC
9abc830 Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase interface and support all mandatory methods and properties. 25 January 2013, 13:30:35 UTC
4e63fbe - Issue #17029: Let h2py search the multiarch system include directory. 25 January 2013, 12:08:27 UTC
b09ec9b Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() if all other iterators were very advanced before. 25 January 2013, 11:31:05 UTC
7ee79a2 Don't run the test for issue #16335 when -M is not specified. Increase memory limit in this test. 25 January 2013, 08:03:12 UTC
f4fbf24 Issue #9708: clarify doc of iterparse - cElementTree doesn't support the parser argument 24 January 2013, 15:28:33 UTC
eb01949 Corrected typo, added comment in cookbook recipe. 23 January 2013, 09:30:34 UTC
f5da3ec #11379: rephrase minidom documentation to use the term "minimal" instead of "lightweight". Patch by Éric Araujo. 22 January 2013, 20:47:57 UTC
a0c9a4e Added cookbook recipe for structured logging. 22 January 2013, 15:57:12 UTC
353e54e Issue #1159051: GzipFile now raises EOFError when reading a corrupted file with truncated header or footer. Added tests for reading truncated gzip and bzip2 files. 22 January 2013, 15:13:26 UTC
0f2bd02 Updated logging HOWTO with a diagram. 22 January 2013, 13:10:58 UTC
8a459d9 Issue #17007: Made minor changes to documentation wording. 21 January 2013, 21:56:35 UTC
cb309c5 Issue #17007: Improved logging documentation based on suggestions in the issue. 21 January 2013, 19:43:51 UTC
e3adb43 Add bigmemtest decorator to test of issue #16335. 21 January 2013, 18:23:01 UTC
b1ecf80 Fix memory error in test_ucn. unicode-escape decoder requires memory for result corresponding to input size. Fixes test for issue #16335. 21 January 2013, 11:03:58 UTC
4d70e58 fix for f4d30d1a529e Python 2.7 has only assertRaisesRegexp, not assertRaisesRegex 21 January 2013, 10:25:27 UTC
1d3acd4 Issue #16335: Fix integer overflow in unicode-escape decoder. 21 January 2013, 09:48:24 UTC
b357db8 Backport 6df456f8fc6d. 20 January 2013, 22:29:28 UTC
926f3a3 Issue #15989: Fix possible integer overflow in str formatting as in unicode formatting. 19 January 2013, 21:35:46 UTC
6b78bff remove unnecessary clearing of list 19 January 2013, 19:58:38 UTC
18a1393 Ensure that width and precision in string formatting test have type int, not long. Fix a regression from changeset d544873d62e9 (issue #15989). 19 January 2013, 19:06:35 UTC
302ad8d Fix a few typos in Misc/NEWS. 19 January 2013, 17:44:58 UTC
a41cf29 Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. Patch by Jeffrey Armstrong. 19 January 2013, 11:15:56 UTC
74f49ab Issue #15989: Fix several occurrences of integer overflow when result of PyInt_AsLong() or PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277. 19 January 2013, 10:55:39 UTC
ac7b49f Improve tooltips by listing the most common argument pattern first. 19 January 2013, 07:23:11 UTC
b077f9c Ignore Mac's Data Services Store 19 January 2013, 02:07:58 UTC
bca2209 Show the function signature in the docstring 19 January 2013, 01:35:25 UTC
86af581 #16985: Remove incorrect phrase indication presence of non-present concrete UTC tzinfo instance. 18 January 2013, 20:33:39 UTC
9e0f462 #16978: rephrase sentence and fix typo. Initial patch by Tshepang Lekhonkhobe. 18 January 2013, 17:55:46 UTC
a670fcc math.fsum docs did not show up because of a misplaced testsetup directive 18 January 2013, 12:31:53 UTC
2f78f0e support -> test_support 18 January 2013, 05:44:49 UTC
08e153a check windows fd validity (closes #16992) 18 January 2013, 05:10:24 UTC
d0c665e Remove pointless discussion of the lack of a ternary operator 17 January 2013, 22:10:12 UTC
65a9f36 Closed #16886: test_dictcomps no longer depends on dict order 16 January 2013, 21:52:22 UTC
51b5551 Issue #9501: Improved shutdown handling to deal with module attributes correctly. 15 January 2013, 17:55:13 UTC
e39ba04 Issue #15861: tkinter now correctly works with lists and tuples containing strings with whitespaces, backslashes or unbalanced braces. 15 January 2013, 16:01:21 UTC
bdea5ec Merge heads 15 January 2013, 13:32:49 UTC
7796b08 Issue #10527: Remove dead code 15 January 2013, 13:13:35 UTC
9599745 Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping" in any mapping, not only in an unicode string. 15 January 2013, 12:42:59 UTC
90b5d92 Issue #10527: Use poll() instead of select() for multiprocessing pipes 14 January 2013, 23:09:14 UTC
back to top