https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
8bc7e31 Bump to 3.2.4. 06 April 2013, 07:36:20 UTC
7684fa8 close search and replace dialog after it is used (closes #17625) 04 April 2013, 02:35:12 UTC
ef0faa5 merge 02 April 2013, 09:07:27 UTC
b147aae Add 3.2.4 UUIDs 30 March 2013, 12:06:57 UTC
6f18a86 Fix XML vulnerability link references. 28 March 2013, 08:02:18 UTC
f5390fc merge with last upstream doc changes in 3.2 28 March 2013, 07:57:50 UTC
fd4365a Update suspicious ignore file. 28 March 2013, 02:31:53 UTC
265281a #17329: document unittest.SkipTest. Initial patch by Zachary Ware. 27 March 2013, 18:11:55 UTC
1df04e8 Issue 17538: Document XML vulnerabilties 26 March 2013, 16:35:55 UTC
7380a67 Issue 17538: Document XML vulnerabilties 26 March 2013, 16:35:55 UTC
2323cb7 Added tag v3.2.4rc1 for changeset b2cb7bc1edb8 25 March 2013, 05:57:10 UTC
4eb5f1a merge with main repo 3.2 branch 25 March 2013, 05:56:31 UTC
5be6d74 Issue #17425: Build with openssl 1.0.0k on Windows. 24 March 2013, 21:03:30 UTC
656c808 Clean up references to threads in test_queue. 23 March 2013, 21:35:06 UTC
a1ed539 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid introducing hard to track down bugs. 23 March 2013, 18:44:25 UTC
a7d2f00 Copyright update to 2013. 23 March 2013, 15:06:13 UTC
b673d99 Bump to 3.2.4rc1. 23 March 2013, 15:02:08 UTC
d50fe72 Fix suspicious markup in the docs. 23 March 2013, 15:00:41 UTC
47f2542 Update pydoc topics. 23 March 2013, 14:46:53 UTC
68b4cc8 Issue #17521: Corrected non-enabling of logger following two calls to fileConfig(). 23 March 2013, 11:18:45 UTC
a4cfd60 Updated Misc/NEWS with #17508. 23 March 2013, 10:57:47 UTC
4b52ae8 Clean up references to the no longer existing PyString_ APIs in our docs. 22 March 2013, 20:43:30 UTC
3f885b5 Issue #17508: Handled out-of-order handler configuration correctly. 22 March 2013, 15:19:54 UTC
d5537d0 - Issue #16754: Fix the incorrect shared library extension on linux. Introduce two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4. 21 March 2013, 20:21:49 UTC
03b0116 #5712: Preemptively fix some other possible timing issues. 21 March 2013, 02:11:40 UTC
853c0f9 #5713: fix timing issue in smtplib tests. 21 March 2013, 01:54:05 UTC
1f8a40b remove the long obsolete mention of universal newlines mode only being available when configured at compile time. 21 March 2013, 01:32:03 UTC
d312c74 #5713: Handle 421 error codes during sendmail by closing the socket. This is a partial fix to the issue of servers disconnecting unexpectedly; in this case the 421 says they are disconnecting, so we close the socket and return the 421 in the appropriate error context. Original patch by Mark Sapiro, updated by Kushal Das, with additional tests by me. 21 March 2013, 00:36:14 UTC
958f7ae #17493: re-enable a test on Windows. Patch by Zachary Ware. 20 March 2013, 16:14:48 UTC
93115e0 Fix usage of argument/parameter and markup. 20 March 2013, 11:53:32 UTC
2a4d245 #17471 - Increasing the urllib.error test coverage. Bringing it to 100%. Based on patch contributed by Daniel Wozniak 19 March 2013, 23:11:07 UTC
ece1222 Merge 19 March 2013, 22:57:19 UTC
1f1ec04 merge heads 19 March 2013, 22:25:28 UTC
5aed330 Issue #10296 : Don't handle BreakPoint exceptions using Structured Exception Handling on windows. 19 March 2013, 22:24:10 UTC
14b0124 #1525919: Document MIMEText+set_payload encoding behavior. 19 March 2013, 22:18:55 UTC
dd35162 merge heads in 3.2 19 March 2013, 22:03:26 UTC
843fae9 #17471 - Improve urllib2 test coverage. Patch contributed by Daniel Wozniak 19 March 2013, 20:43:42 UTC
f5d7cc2 #8862: Fix curses cleanup with getchar is interrupted by a signal. I have no idea how one would write a test for this. Patch by July Tikhonov. 19 March 2013, 20:23:09 UTC
fcb6d6a #17443: Fix buffering in IMAP4_stream. In Python2 Popen uses *FILE objects, which wind up buffering even though subprocess defaults to no buffering. In Python3, subprocess streams really are unbuffered by default, but the imaplib code assumes read is buffered. This patch uses the default buffer size from the io module to get buffered streams from Popen. Much debugging work and patch by Diane Trout. The imap protocol is too complicated to write a test for this simple change with our current level of test infrastructure. 19 March 2013, 17:52:33 UTC
ae4ef4d Fix usage of the unittest.skip decorator. 19 March 2013, 11:25:20 UTC
0492ec0 #17460 - Adding relevant warning messages regarding strict removal in docs 19 March 2013, 07:51:08 UTC
9929bc5 #17476: make allmethods actually return all methods. This fixes a regression relative to Python2. (In 2, methods on a class were unbound methods and matched the inspect queries being done, in 3 they are just functions and so were missed). This is an undocumented function that pydoc itself does not use, but I found that numpy at least uses it in its documentation generator. Original patch by Matt Bachmann. 19 March 2013, 06:31:06 UTC
029273f Fixes issue #17192: Update the ctypes module's libffi to v3.0.13. This specifically addresses a stack misalignment issue on x86 and issues on some more recent platforms. 19 March 2013, 00:11:20 UTC
a846f5a #17448: Make test_sax skip if there are no xml parsers. Patch by Rafael Santos. 18 March 2013, 04:18:12 UTC
dd24617 #16057: Clarify why the base method default is called in custom encoders. Original patch by Kushal Das. 18 March 2013, 01:52:35 UTC
f346041 Issue #17415: Trim trailing whitespace 17 March 2013, 19:28:10 UTC
ec6e132 Issue #17415: Clarify 'this' referent by moving containing sentence just after the sentence referred to. Make other minor edits to improve flow. 17 March 2013, 19:21:26 UTC
a99dfd1 Issue #16389: Fixed an issue number in previos commit. 16 March 2013, 20:59:27 UTC
0f606a6 Issue #16564: Fixed a performance regression relative to Python 3.1 in the caching of compiled regular expressions. 16 March 2013, 20:52:09 UTC
de6849f Merge heads 3.2. 16 March 2013, 20:05:27 UTC
dff04f4 Issue #17418: specify that buffer sizes are bytes as soon as possible. 16 March 2013, 19:56:27 UTC
c28f6fa #11420: make test suite pass with -B/DONTWRITEBYTECODE set. Initial patch by Thomas Wouters. 16 March 2013, 17:48:51 UTC
58e1e50 typo 16 March 2013, 06:53:09 UTC
743c85a Issue # 10652: make tcl/tk tests run after __all__ test, patch by Zachary Ware. 16 March 2013, 06:37:06 UTC
612528d #17431: Fix missing import of BytesFeedParser in email.parser. Initial patch contributed by Edmond Burnett. 16 March 2013, 00:38:15 UTC
f3f0681 Issue #17398: document url argument of RobotFileParser 15 March 2013, 20:50:23 UTC
4b3975b Issue #17047: Add news entry 15 March 2013, 07:33:11 UTC
8ea4616 Issue #1285086: Get rid of the refcounting hack and speed up urllib.parse.unquote() and urllib.parse.unquote_to_bytes(). 14 March 2013, 19:31:37 UTC
3b220e1 Issue #17386 make.bat must run with Python 2 until Sphinx runs with Python 3. If PYTHON is undefined, this fails without the launcher (installed with 3.3 or from PyPI), but this is better than always failing. Patch from Zachary Ware. 14 March 2013, 01:33:50 UTC
b5fe247 #17307 - Example of HTTP PUT Request using http.client 13 March 2013, 20:38:33 UTC
6771462 #17402: avoid shadowing built-in map in mmap examples. Initial patch by Aman Shah. 13 March 2013, 00:27:00 UTC
a7d64a6 #17368: Fix an off-by-one error in the Python JSON decoder that caused a failure while decoding empty object literals when object_pairs_hook was specified. 12 March 2013, 23:52:34 UTC
7343cb0 Issue #11367: fix documentation of some find* methods in ElementTree 12 March 2013, 13:01:22 UTC
c30b7b1 Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*, as reported by Serhiy Storchaka and Matthew Barnett. 11 March 2013, 21:57:08 UTC
0158af3 Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, as reported by Serhiy Storchaka and Matthew Barnett. 11 March 2013, 21:42:46 UTC
65e69b3 Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/* found by Serhiy Storchaka and Matthew Barnett 11 March 2013, 21:23:46 UTC
af8838f #17351: remove "object" inheritance from docs. Patch by Phil Elson. 11 March 2013, 07:30:21 UTC
42a541b #11963: remove human verification from test_parser and test_subprocess. 11 March 2013, 03:53:34 UTC
e7c3299 #11963: fix Windows buildbots. 10 March 2013, 01:25:45 UTC
3919184 #11963: avoid printing messages in test_parser. Initial patch by Éric Araujo. 09 March 2013, 20:17:33 UTC
490cf44 Add warning in ctypes documentation for #16575 and #16576 09 March 2013, 13:54:00 UTC
9cbcc2f Issue #17332: fix json doc typo /convered/converted/ found by Ernie Hershey. 09 March 2013, 00:35:15 UTC
832d99b Issue #17376: Clarified documentation for TimedRotatingFileHandler weekday rotation. 08 March 2013, 23:24:30 UTC
f81de8d Issue #17378: ctypes documentation fix. Document that ctypes automatically applies byref() when argtypes declares POINTER. 08 March 2013, 13:31:54 UTC
b9534f4 PEP8 fixup on previous patch, remove unused import in test_email. 07 March 2013, 23:15:13 UTC
e67c6c5 #14645: Generator now emits correct linesep for all parts. Previously the parts of the message retained whatever linesep they had on read, which means if the messages weren't read in univeral newline mode, the line endings could well be inconsistent. In general sending it via smtplib would result in them getting fixed, but it is better to generate them correctly to begin with. Also, the new send_message method of smtplib does not do the fixup, so that method is producing rfc-invalid output without this fix. 07 March 2013, 21:38:03 UTC
697e7ba Fix typo in Misc/NEWS entry. 07 March 2013, 17:53:19 UTC
1f38621 #11732: add a new suppress_crash_popup() context manager to test.support that disables crash popups on Windows and use it in test_ctypes. 07 March 2013, 16:44:29 UTC
f9164e1 Fix doc grammar and line width 06 March 2013, 14:48:57 UTC
33e20d1 #17364: remove documentation for a function that does not exist. 06 March 2013, 01:20:27 UTC
1e7551d Reverting the changeset 5126e62c60af made for Issue #12921 05 March 2013, 10:25:58 UTC
3fb066d Fix Issue #12921: BaseHTTPServer's send_error should send the correct error response message when send_error includes a message in addition to error status. Patch contributed by Karl. 05 March 2013, 09:22:57 UTC
44d5214 Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. 04 March 2013, 19:30:01 UTC
aaef344 #17346: make sure pickle tests are run against all protocols. Initial patch by Marius Gedminas. 04 March 2013, 13:17:56 UTC
7b39b9b Issue #13898: test_ssl no longer prints a spurious stack trace on Ubuntu. 03 March 2013, 21:31:21 UTC
fed69ba Fix markup in unittest doc. 01 March 2013, 19:26:04 UTC
136726c #17315: unlink a file that test_posixpath was leaving around. 01 March 2013, 18:59:17 UTC
c6641db Add a link to the demo dir. 28 February 2013, 16:02:28 UTC
4d6cb0f Fix markup in unittest docs. 28 February 2013, 06:28:11 UTC
13fb979 Issue #16406: Combine the doc pages for uploading and registering to PyPI. 27 February 2013, 18:00:20 UTC
1cb0cb2 #17296: backport fix for issue 1692335, naive exception pickling. 27 February 2013, 13:57:09 UTC
5f79409 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior 26 February 2013, 19:38:17 UTC
7aaa1ef Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR. 26 February 2013, 12:39:57 UTC
8fd3669 Fix issue16932: Fix the urlparse example. Remote :port when scheme is not specified to demonstrate correct behavior 26 February 2013, 09:02:58 UTC
a5f13d2 Issue #1470548: Add test for fragment producing with XMLGenerator. 25 February 2013, 11:46:10 UTC
67bfe80 #17275: Fix class name in init errors in C bufferedio classes. This fixes an apparent copy-and-paste error. Patch by Manuel Jacob. 24 February 2013, 02:51:05 UTC
0362b54 Revert "Issue #16121: Fix line number accounting in shlex" 23 February 2013, 22:12:03 UTC
7a05113 Issue #16121: Fix line number accounting in shlex 23 February 2013, 21:08:07 UTC
905b648 Issue #16403: Document how distutils uses the maintainer field in PKG-INFO 23 February 2013, 20:06:16 UTC
ee4a20b Issue #16695: Document how glob handles filenames starting with a dot 23 February 2013, 18:53:27 UTC
back to top