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

sort by:
Revision Author Date Message Commit Date
30c9074 Minor beautification. Move struct definitions to the top. Fix-up a comment. 03 March 2015, 06:31:35 UTC
f30f5b9 Minor code beautification. Replace macro with in-lineable functions. 03 March 2015, 06:23:37 UTC
3c186ba Beautify and better document the use of the size_t cast for bounds checking. 03 March 2015, 05:45:02 UTC
738f805 issue19075: add visual sorting algorithms to turtledemo; original code from Jason Yeo 02 March 2015, 20:29:58 UTC
241520a merge heads 02 March 2015, 18:24:21 UTC
6c0a820 merge 3.4 (null) 02 March 2015, 18:24:12 UTC
92ce1b4 merge 3.3 (#23362) 02 March 2015, 18:23:41 UTC
e5a853c use PyMem_NEW to detect overflow (closes #23362) 02 March 2015, 18:23:25 UTC
42fc0eb Issue #21293: Remove unnecessary "capsule hack". 02 March 2015, 16:44:51 UTC
83d8fc2 merge 3.4 (#23367) 02 March 2015, 16:18:56 UTC
5061e67 merge 3.3 (#23367) 02 March 2015, 16:18:40 UTC
b779bfb fix possible overflow bugs in unicodedata (closes #23367) 02 March 2015, 16:17:05 UTC
4e02f8f Issue #18382: Zero-length messages are consumed by ReadFile on Windows 8 and later 02 March 2015, 16:06:30 UTC
3f9e381 Issue #18382: Zero-length messages are consumed by ReadFile on Windows 8 and later 02 March 2015, 16:05:27 UTC
3e96f32 Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks. 02 March 2015, 16:01:10 UTC
2f3d440 merge 3.4 (#23561) 02 March 2015, 14:36:48 UTC
5e0fd95 Added more tests for urllib.parse utility functions. These functions are not documented but used in third-party code. 02 March 2015, 14:33:08 UTC
9270be7 Added more tests for urllib.parse utility functions. These functions are not documented but used in third-party code. 02 March 2015, 14:32:29 UTC
bdf525b wrap everything at 80 chars 02 March 2015, 14:31:40 UTC
29fec92 link to the correct dis method or function (closes #23561) 02 March 2015, 14:27:43 UTC
a401257 Issue #23527: Update Gmail port number for STARTTLS to 587. Patch by Alex Shkop. 02 March 2015, 05:41:00 UTC
ed0392a Issue #23527: Update Gmail port number for STARTTLS to 587. Patch by Alex Shkop. 02 March 2015, 05:40:36 UTC
ccac023 Issue #23477: Improve test coverage of wsgiref.simple_server. The test checks that the environ argument contains correct headers, querystring and path information. Patch by Alex Shkop. 02 March 2015, 04:54:27 UTC
659f631 Issue #23477: Improve test coverage of wsgiref.simple_server. The test checks that the environ argument contains correct headers, querystring and path information. Patch by Alex Shkop. 02 March 2015, 04:53:33 UTC
6897e56 Issue #20521: Change ``TOS`` to TOS in dis documentation. TOS is an abbreviation of top-of-stack. Patch by Sven Berkvens-Matthijsse. 02 March 2015, 04:34:00 UTC
ab4040e Issue #20521: Change ``TOS`` to TOS in dis documentation. TOS is an abbreviation of top-of-stack. Patch by Sven Berkvens-Matthijsse. 02 March 2015, 04:33:30 UTC
fc080fc Issue #23387: Skip test_issue16464 if it raises an 5xx error. Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request. 02 March 2015, 04:01:37 UTC
bcdfc6a Issue #23387: Skip test_issue16464 if it raises an 5xx error. Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request. 02 March 2015, 04:01:01 UTC
f2d4e57 Add a versionadded directive for PEP 486. 02 March 2015, 03:36:19 UTC
e35a17a merge 3.4 02 March 2015, 01:59:41 UTC
6e820c0 remove mention of Python 2.2 and 2.3 02 March 2015, 01:59:22 UTC
e49af34 Issue #7830: Flatten nested functools.partial. 01 March 2015, 20:08:17 UTC
e2e178e Closes issue #22791: Improved datetime from timestamp methods documentation. Original patch by Akira Li. 01 March 2015, 19:52:07 UTC
3de4aae Fixed pydoc tests when run with -OO. 01 March 2015, 13:32:17 UTC
4c094e5 Fixed pydoc tests when run with -OO. 01 March 2015, 13:31:36 UTC
71c6f44 Fixed a typo. 01 March 2015, 12:39:20 UTC
7f9ea75 Issue #23553: Use an unsigned cast to tighten-up the bounds checking logic. 01 March 2015, 08:38:00 UTC
90295b4 Merge heads 01 March 2015, 08:03:46 UTC
490055a Issue #20204: Deprecation warning is now raised for builtin type without the __module__ attribute. 01 March 2015, 08:03:02 UTC
c208308 Need a (size_t) cast instead of (unsigned) to be big enough for a Py_ssize_t. 01 March 2015, 07:29:16 UTC
50adb9f Issue #20204: Added the __module__ attribute to _tkinter classes. 01 March 2015, 07:07:10 UTC
efdc16f Issue #20204: Added the __module__ attribute to _tkinter classes. 01 March 2015, 07:06:29 UTC
e4969f5 Updates CRT installation for Windows installer. Bundling versions of the CRT prior to 14.0 is no longer supported. 01 March 2015, 03:53:50 UTC
a473b9d Use unsigned division and modulo for item assignment as well. 01 March 2015, 01:49:47 UTC
1c20551 Issue #19980: Improved help() for non-recognized strings. help('') now shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence. 28 February 2015, 22:42:54 UTC
e92951f merge 28 February 2015, 15:46:00 UTC
184291a Fixes #23521: Corrected pure python implementation of timedelta division. * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. 28 February 2015, 15:44:47 UTC
24d3dee Fixes #23521: Corrected pure python implementation of timedelta division. * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. 28 February 2015, 15:41:57 UTC
63d1ff2 Convert one more division to unsigned arithmetic to speed-up deque_item(). 28 February 2015, 15:41:30 UTC
6ab0ec9 Fixed a test for issue #21619 on Windows. On Windows an OSError with errno=EINVAL is raised. 28 February 2015, 11:28:19 UTC
cf265fd Fixed a test for issue #21619 on Windows. On Windows an OSError with errno=EINVAL is raised. 28 February 2015, 11:27:54 UTC
86ba765 Issue #21619: Popen objects no longer leave a zombie after exit in the with statement if the pipe was broken. Patch by Martin Panter. 28 February 2015, 10:45:00 UTC
ab900c2 Issue #21619: Popen objects no longer leave a zombie after exit in the with statement if the pipe was broken. Patch by Martin Panter. 28 February 2015, 10:43:08 UTC
7e8c795 Line missed in last checkin 28 February 2015, 00:59:29 UTC
da2850f Since the index is always non-negative, use faster unsigned division and modulo. 27 February 2015, 20:42:54 UTC
b44ed82 Merge with 3.4 for porting HOWTO tweaks 27 February 2015, 20:10:38 UTC
fdde79d Fix the clarification as to why division cannot be ported automatically 27 February 2015, 20:10:03 UTC
2f710b6 Merge from 3.4. 27 February 2015, 17:21:06 UTC
c332f8a Fix minor errors in Misc/NEWS. (Thanks for the report, Florian Bruhin!) 27 February 2015, 17:14:32 UTC
8004e85 Issue #22834: Drop a redundant comment and use errno instead of an integer. Thanks to Serhiy Storchaka and Martin Panter for the suggestions. 27 February 2015, 17:13:35 UTC
e2bda9a Merge 3.4 (asyncio) 27 February 2015, 16:49:19 UTC
ce8c768 Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport Methods only raise NotImplementedError and are never used. 27 February 2015, 16:49:09 UTC
69899e6 Merge 3.4 (httplib) 27 February 2015, 16:47:40 UTC
b389b48 Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop. 27 February 2015, 16:47:23 UTC
ad9296e Merge with 3.4 27 February 2015, 07:40:41 UTC
0b49637 Fix copy/paste error in bytes.isupper() doc. Reported by Jon Colburn on docs@. 27 February 2015, 07:40:22 UTC
daf57f2 Bump the blocksize up from 62 to 64 to speed up the modulo calculation. Remove the old comment suggesting that it was desireable to have blocksize+2 as a multiple of the cache line length. That would have made sense only if the block structure start point was always aligned to a cache line boundary. However, the memory allocations are 16 byte aligned, so we don't really have control over whether the struct spills across cache line boundaries. 27 February 2015, 07:21:29 UTC
b1e6e57 unix newlines 27 February 2015, 03:50:43 UTC
2bb5aa8 merge 3.4 27 February 2015, 03:50:12 UTC
d2e067b remove duplicate 3.4.3 tags 27 February 2015, 03:49:21 UTC
76998fe Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual environments (patch by Paul Moore) 26 February 2015, 22:25:33 UTC
8c3ec53 Merge 3.4.3 release engineering changes back into 3.4. 26 February 2015, 13:58:48 UTC
e287746 Post-release changes for 3.4.3. 26 February 2015, 13:56:32 UTC
b48af34 Silenced minor GCC warnings. 26 February 2015, 13:27:57 UTC
e71258a Issue #15955: Add an option to limit the output size in bz2.decompress(). Patch by Nikolaus Rath. 26 February 2015, 12:08:07 UTC
87f5015 Merge 3.4 (asyncio doc) 26 February 2015, 09:39:31 UTC
7b2c3c6 asyncio doc: lock classes are not thread safe 26 February 2015, 09:39:16 UTC
f63dab5 Back-out wcstok deprecation suppression and updates calls to use wcstok_s. 26 February 2015, 04:48:01 UTC
b3f51e3 Adds _CRT_NON_CONFORMING_WCSTOK to retain two-parameter wcstok. 26 February 2015, 04:38:31 UTC
4fa4972 merge 3.4 25 February 2015, 21:47:20 UTC
ed135f4 remove unused import 25 February 2015, 21:47:14 UTC
a1780bc Issue #23511: Port email-simple.py to Python 3. Also, update email examples to use the context manager version of open(). Patch by Baptiste Mispelon. 25 February 2015, 16:14:47 UTC
f9e3cf1 Issue #23511: Port email-simple.py to Python 3. Also, update email examples to use the context manager version of open(). Patch by Baptiste Mispelon. 25 February 2015, 16:14:09 UTC
c8fd9ce merge 3.4 (#23515) 25 February 2015, 15:16:56 UTC
b808d59 fix merge_collapse to actually maintain the invariant it purports to (closes #23515) See de Gouw, Stijn and Rot, Jurriaan and de Boer, Frank S and Bubel, Richard and Hähnle, Reiner "OpenJDK’s java.utils.Collection.sort() is broken: The good, the bad and the worst case" 25 February 2015, 15:12:26 UTC
1313af2 Merge 3.4 (asyncio doc) 25 February 2015, 13:24:47 UTC
8370496 asyncio: add a note about (non) thread safety in each class 25 February 2015, 13:24:15 UTC
532c69a asyncio doc: begin with warnings on asyncio traps 25 February 2015, 13:23:51 UTC
615a58e asyncio doc: move queues to a new page 25 February 2015, 12:55:43 UTC
4c464c3 Added tag v3.4.3 for changeset b4cbecbc0781 25 February 2015, 12:17:04 UTC
f5caf2b Checking in this change LOCAL ONLY NO UPLOAD ANYWHERE 25 February 2015, 12:15:33 UTC
961dfa1 Merge with 3.4 25 February 2015, 12:07:03 UTC
7e91af3 Remove unsupported (in latex) character from the source. 25 February 2015, 12:05:53 UTC
c55a316 Issue 23314: SuppressCrashReports now disables CRT assertions SuppressCrashReports should be used in test subprocesses that test invalid conditions. 23 February 2015, 15:56:13 UTC
7caa615 Merge 3.4 (asyncio doc) 23 February 2015, 10:42:22 UTC
b8064a8 asyncio doc: close explicitly event loops 23 February 2015, 10:41:56 UTC
9534407 Added tag v3.4.3 for changeset 9b73f1c3e601 23 February 2015, 07:55:48 UTC
fc8eda5 Release bump for 3.4.3 final. 23 February 2015, 07:55:39 UTC
e164241 Doc updates for 3.4.3 final. 23 February 2015, 07:54:38 UTC
1de7191 Issue #23499: Fix grammar error noticed by SilentGhost 23 February 2015, 00:15:14 UTC
back to top