https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
fbd7518 Bump to 3.3.5 final. 09 March 2014, 08:37:14 UTC
444c171 Added tag v3.3.5rc2 for changeset ca5635efe090 02 March 2014, 08:29:00 UTC
c186b23 Bump to 3.3.5rc2. 02 March 2014, 08:19:03 UTC
bb386cf Update NEWS for 3.3.5rc2. 02 March 2014, 08:18:41 UTC
2fc8f77 Issue #20404: reject non-text encodings early in TextIOWrapper. 02 March 2014, 08:18:31 UTC
2658bad merge 3.3.5rc1 release commits with 3.3 branch 02 March 2014, 07:54:15 UTC
9e90b12 add Chris Angelico 02 March 2014, 00:16:12 UTC
659a6f5 fix test_posix.test_initgroups to work without supplemental groups (closes #20249) 02 March 2014, 00:14:12 UTC
b77bf32 fix test on debug builds (closes #20731) 01 March 2014, 15:31:36 UTC
4f8e4c2 merge 3.2 01 March 2014, 07:03:57 UTC
298bb96 Issue #20778: Fix modulefinder to work with bytecode-only modules. Bug filed and initial attempt at a patch by Bohuslav Kabrda. 28 February 2014, 15:44:45 UTC
815b41b Issue #20731: Properly position in source code files even if they are opened in text mode. Patch by Serhiy Storchaka. 28 February 2014, 14:27:29 UTC
9db1ab8 Issue #20567: Delete class attribute gui widgets in idle tests. Code patch by Serhiy Storchaka 27 February 2014, 23:47:49 UTC
b807577 Issue #20791: copy.copy() now doesn't make a copy when the input is a bytes object. Initial patch by Peter Otten. 27 February 2014, 21:14:31 UTC
3673670 fix importlib test failure when bytecode writing is disabled (closes #20796) Patch by Berker Peksag. 27 February 2014, 18:49:34 UTC
517b747 Added tests for issue #20501. 26 February 2014, 18:59:43 UTC
7bbd101 Fix several C-API doc typos caught by tomo cocoa on docs@. The signature and description of PyException_SetCause now use "cause" rather than "ctx" to match the code. 26 February 2014, 16:40:38 UTC
5ea5d2c Issue #20759: Fix some typos in the mock docs. 26 February 2014, 15:34:43 UTC
7b80716 Mention issue 20621 fix in the NEWS file for 3.3.5rc1. This bug was of the major reasons for the release. 26 February 2014, 00:45:55 UTC
270ce73 Fix typo (issue #19619). 25 February 2014, 18:00:48 UTC
f031a6f #20628: wrap lines to < 80. 24 February 2014, 20:32:54 UTC
df714b9 #20628: make it clear that DictReader/Writer *fieldnames* is a Sequence. Patch by Sean Rodman. 24 February 2014, 20:29:22 UTC
6b53234 #20740: desquarify 2. 24 February 2014, 18:58:31 UTC
94ee389 Issue #19619: Blacklist non-text codecs in method API str.encode, bytes.decode and bytearray.decode now use an internal API to throw LookupError for known non-text encodings, rather than attempting the encoding or decoding operation and then throwing a TypeError for an unexpected output type. The latter mechanism remains in place for third party non-text encodings. Backported changeset d68df99d7a57. 24 February 2014, 12:43:03 UTC
20f8728 Issue #20535: PYTHONWARNING no longer affects the run_tests.py script. Patch by Arfrever Frehtes Taifersar Arahesis. 24 February 2014, 11:57:00 UTC
09141c4 Closes #20755: port sphinx-1.1 fixes from default 24 February 2014, 08:35:07 UTC
c4f44c0 Closes #20735: remove erroneous deprecated marker from stringprep docs 24 February 2014, 08:26:53 UTC
f106f8f whitespace 24 February 2014, 04:39:57 UTC
9dc3a36 Issue #9974: When untokenizing, use row info to insert backslash+newline. Original patches by A. Kuchling and G. Rees (#12691). 24 February 2014, 04:33:08 UTC
938ba68 Issue #20750, Enable roundtrip tests for new 5-tuple untokenize. The constructed examples and all but 7 of the test/test_*.py files (run with -ucpu) pass. Remove those that fail the new test from the selection list. Patch partly based on patches by G. Brandl (#8478) and G. Rees (#12691). 23 February 2014, 23:00:31 UTC
220cc21 Issue #20743: Fix a reference leak in test_tcl. 23 February 2014, 18:39:06 UTC
b772b03 Added tag v3.3.5rc1 for changeset 9ec811df548e 23 February 2014, 07:46:11 UTC
68707af merge 23 February 2014, 07:46:00 UTC
89e5671 #20719: Disable the robotparser python.org test until the gzip encoding issue can be sorted. 23 February 2014, 07:45:15 UTC
e12675a Bump to 3.3.5rc1. 23 February 2014, 07:30:06 UTC
ed7d0c4 Update pydoc topics. 23 February 2014, 07:24:37 UTC
c3111fc Issue #20730: Fix typo reported by Claudiu Popa. 23 February 2014, 05:37:16 UTC
2d65951 Issue #20221: Removed conflicting (or circular) hypot definition when compiled with VS 2010 or above. Initial patch by Tabrez Mohammed. 20 February 2014, 21:36:34 UTC
a96fd48 merge 3.2 (#20695) 20 February 2014, 04:06:24 UTC
665a2bc bump Python-ast.c 20 February 2014, 04:05:26 UTC
1b94030 update logo url (#20695) 20 February 2014, 03:55:16 UTC
f6218a2 open retrieved file in binary mode, since it's now compressed 20 February 2014, 03:56:35 UTC
2bb6c35 Merge heads 19 February 2014, 17:03:58 UTC
1f9e601 Issue #20510: Confirm that the code attribute of the SystemExit exception raised by sys.exit is None when no code is given. As suggested by Serhiy Storchaka. 19 February 2014, 16:44:47 UTC
162c477 Issue #20672: Fixed tests for TarFile.list() on non-UTF-8 locales. 19 February 2014, 16:44:12 UTC
e959776 Fixed grid_columnconfigure() and grid_rowconfigure() methods of Tkinter widgets to work in wantobjects=True mode. 19 February 2014, 16:34:05 UTC
d5c8ce7 Issue #19612: On Windows, subprocess.Popen.communicate() now ignores OSError(22, 'Invalid argument') when writing input data into stdin, whereas the process already exited. 18 February 2014, 21:00:53 UTC
9e5a987 Issue #20609: Fix building 64-bit binaries on 32-bit Windows. 18 February 2014, 17:33:18 UTC
cefe6b3 Issue #20510: Rewrote test_exit in test_sys to match existing comments and to modernize. Patch by Gareth Rees. 18 February 2014, 14:39:04 UTC
5b8d2c3 Issue #8478: Untokenizer.compat now processes first token from iterator input. Patch based on lines from Georg Brandl, Eric Snow, and Gareth Rees. 18 February 2014, 04:12:16 UTC
58edfd9 whitespace 17 February 2014, 21:49:06 UTC
5e6db31 Untokenize: An logically incorrect assert tested user input validity. Replace it with correct logic that raises ValueError for bad input. Issues #8478 and #12691 reported the incorrect logic. Add an Untokenize test case and an initial test method. 17 February 2014, 21:45:48 UTC
cf62603 backout fafac90b69c4 16 February 2014, 19:52:01 UTC
eb43736 backout 2807a5f011e4 for causing #20621 16 February 2014, 19:12:57 UTC
c20b4d8 backout d28242a636c7 so I can backout 2807a5f011e4 16 February 2014, 19:11:56 UTC
0b094ce do not line break reference 16 February 2014, 17:46:30 UTC
3137885 #12211: remove paragraph about NaNs 16 February 2014, 17:09:35 UTC
8cb1ec3 #12211: clarify math.copysign() documentation and docstring 16 February 2014, 16:11:25 UTC
e5235f1 #20241: use correct RFC number 15 February 2014, 22:11:06 UTC
cb3ff44 #16728: Mention collections.abc.Sequence in 'sequence' glossary entry 15 February 2014, 22:05:26 UTC
46ff4ee Clarify versionchanged sentence. Closes #20497. 15 February 2014, 21:39:37 UTC
4da9ab0 #20237: make a revision pass over the XML vulnerabilities section 15 February 2014, 20:33:44 UTC
29352c4 add missing test assertion (closes #20080) Patch by Vajrasky Kok. 15 February 2014, 18:19:59 UTC
9743b2c give non-iterable TypeError a message (closes #20507) 15 February 2014, 18:02:52 UTC
e426b71 #19890: fix typo in multiprocessing docs. Patch by Mike Short. 15 February 2014, 14:58:52 UTC
f4e9983 #20634: fix typo in IDLE README noticed by Saimadhav Heblikar. 15 February 2014, 11:01:08 UTC
b24f481 Issue #20605: Make test_socket getaddrinfo OS X segfault test more robust. 14 February 2014, 06:50:42 UTC
ffadbb7 Fixed typo in previous commit (issue #6815). 13 February 2014, 08:45:14 UTC
dbb1019 Issue #6815: os.path.expandvars() now supports non-ASCII environment variables names and values. 13 February 2014, 08:13:53 UTC
61e2493 Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. Based on patch by Stephen Tu. 12 February 2014, 08:52:35 UTC
1f9d11b Issue #19255: Clear error after failed PyDict_SetItem() on shutdown. This silences a Coverity complain. 12 February 2014, 07:55:01 UTC
892f4f9 Add references for Xcode and the Python Developer's Guide to the internal Mac/README file. 12 February 2014, 01:57:37 UTC
932bba3 avoid name clash with posix_close (closes #20594) 11 February 2014, 15:16:16 UTC
3a308b9 Issue #19856: shutil.move() failed to move a directory to other directory on Windows if source name ends with os.altsep. 11 February 2014, 08:30:59 UTC
c2f665e don't put runtime values in array initializer for C89 compliance (closes #20588) 11 February 2014, 03:19:02 UTC
f0560d9 Fix trailing whitespace. 10 February 2014, 21:05:16 UTC
8f9c20b merge with 3.3.4 releasing repo 10 February 2014, 21:04:20 UTC
a37fcb2 Post-release updates. 10 February 2014, 20:56:33 UTC
72e7761 issue12085: Use more Pythonic way to check _child_created. _active shouldn't be cached, it set to None on shutdown. 10 February 2014, 17:20:22 UTC
1be39e5 Issue #20571: skip test_readline() of test_codecs for Windows code page 65001. The decoder does not support partial decoding yet for this code page. 09 February 2014, 12:11:53 UTC
505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. 09 February 2014, 11:33:53 UTC
4c04a04 Added tag v3.3.4 for changeset 7ff62415e426 09 February 2014, 07:59:00 UTC
a7bf78d news entry 09 February 2014, 07:57:59 UTC
e9c3147 #14983: always add a line end after a MIME boundary marker. This is more RFC compliant (see issue) and fixes a problem with signature verifiers rejecting the part when signed. There is some amount of backward compatibility concern here since it changes the output, but the RFC issue coupled with fixing the problem with signature verifiers seems worth the small risk of breaking code that depends on the current incorrect output. 08 February 2014, 22:54:56 UTC
409ea5d Include the mention of ResourceWarning being displayed by default by the test runner. Addressing #issue 20529 08 February 2014, 22:28:03 UTC
b7d6d2a Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a multiprocessing Connection over a TCP socket. For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message. 08 February 2014, 22:03:56 UTC
b4062e8 Issue #20065: socketmodule: Fix build error when AF_CAN is defined without the proper CAN headers. 08 February 2014, 21:54:11 UTC
0400d33 #16983: Apply postel's law to encoded words inside quoted strings. This applies only to the new parser. The old parser decodes encoded words inside quoted strings already, although it gets the whitespace wrong when it does so. This version of the patch only handles the most common case (a single encoded word surrounded by quotes), but I haven't seen any other variations of this in the wild yet, so its good enough for now. 08 February 2014, 18:12:00 UTC
905c8c3 #19772: Do not mutate message when downcoding to 7bit. This is a bit of an ugly hack because of the way generator pieces together the output message. The deepcopys aren't too expensive, though, because we know it is only called on messages that are not multiparts, and the payload (the thing that could be large) is an immutable object. Test and preliminary work on patch by Vajrasky Kok. 08 February 2014, 16:48:20 UTC
7c389e2 Issue #20553. Use specific asserts in ipaddress tests. 08 February 2014, 14:38:35 UTC
a7c07d3 Issue #20406: Use Python application icons for Idle window title bars. Patch mostly by Serhiy Storchaka. 08 February 2014, 14:02:26 UTC
98585b6 Fix #18805 NEWS entry 08 February 2014, 13:39:54 UTC
932346f Issue #18805: better netmask validation in ipaddress 08 February 2014, 13:17:36 UTC
578c677 Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests. 08 February 2014, 13:06:08 UTC
25d8aea Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests. 08 February 2014, 12:50:08 UTC
3a20a5d Issue #20546: Use specific asserts in int tests. 08 February 2014, 12:28:33 UTC
016a3f3 Issue #20538: UTF-7 incremental decoder produced inconsistant string when input was truncated in BASE64 section. 08 February 2014, 12:01:29 UTC
1e94989 #17369: Improve handling of broken RFC2231 values in get_filename. This fixes a regression relative to python2. 07 February 2014, 20:02:19 UTC
bd3a11b #20013: don't raise socket error when selected mailbox deleted. I'm checking this in without a test because not much of this code is tested and I don't have time to work up the necessary extensions to the existing test framework. The patch itself was tested by the person who reported the bug. 07 February 2014, 18:47:40 UTC
fcc0072 #19063: the unicode-in-set_payload problem isn't getting fixed in 3.4. 07 February 2014, 18:03:08 UTC
back to top