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

sort by:
Revision Author Date Message Commit Date
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
7579093 Issue #23499: Fix grammar error noticed by SilentGhost 23 February 2015, 00:14:32 UTC
0f88891 Broke reference loops in tests added in issue #5700. 22 February 2015, 22:31:33 UTC
c26a1a4 Broke reference loops in tests added in issue #5700. 22 February 2015, 22:28:38 UTC
06a13f8 Issue #23152: Move declarations back to posixmodule.c. Declarations of Windows-specific auxilary functions need Windows types from windows.h. Instead of including windows.h in Python.h and making it available to all Windows users, it is simpler and safer just move declarations to the single file that needs them. 22 February 2015, 19:34:54 UTC
12ebbc7 Issue #23152: Move declaration into a header and exclude from stable API. 22 February 2015, 17:39:36 UTC
4f38e48 Issue #6639: Module-level turtle functions no longer raise TclError after closing the window. 22 February 2015, 15:26:35 UTC
80a1803 Issue #6639: Module-level turtle functions no longer raise TclError after closing the window. 22 February 2015, 15:25:33 UTC
bf1f376 Issue #23152: Renames time_t_to_FILE_TIME to _Py_time_t_to_FILE_TIME, removes unused struct win32_stat and return value 21 February 2015, 23:26:02 UTC
a2af1a5 Issue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_stat 21 February 2015, 18:04:10 UTC
f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. fstat() may fail with EOVERFLOW on files larger than 2 GB because the file size type is an signed 32-bit integer. 21 February 2015, 16:44:05 UTC
18d1924 Null merge 21 February 2015, 10:10:59 UTC
a3369a5 Issues #814253, #9179: Warnings now are raised when group references and conditional group references are used in lookbehind assertions in regular expressions. 21 February 2015, 10:08:52 UTC
4eea62f Issues #814253, #9179: Group references and conditional group references now work in lookbehind assertions in regular expressions. 21 February 2015, 08:07:35 UTC
df80706 Issue #23215: Multibyte codecs with custom error handlers that ignores errors consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo. 20 February 2015, 23:21:08 UTC
a1543cd Issue #23215: Multibyte codecs with custom error handlers that ignores errors consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo. 20 February 2015, 23:19:58 UTC
254dd59 Issue #5700: io.FileIO() called flush() after closing the file. flush() was not called in close() if closefd=False. 20 February 2015, 22:35:53 UTC
a3712a9 Issue #5700: io.FileIO() called flush() after closing the file. flush() was not called in close() if closefd=False. 20 February 2015, 22:35:09 UTC
7065f37 Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding differs from file system encoding (e.g. on Mac OS). 20 February 2015, 21:47:09 UTC
5e3d7a4 Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding differs from file system encoding (e.g. on Mac OS). 20 February 2015, 21:46:06 UTC
78a8249 Issue #23490: Fixed possible crashes related to interoperability between old-style and new API for string with 2**30-1 characters. 20 February 2015, 19:34:39 UTC
e55181f Issue #23490: Fixed possible crashes related to interoperability between old-style and new API for string with 2**30-1 characters. 20 February 2015, 19:34:06 UTC
d671213 Closes #23018: Replace copyright symbol with escape. 20 February 2015, 17:08:48 UTC
e7b9267 Removes unused string resources from Windows installer. 20 February 2015, 16:23:23 UTC
3fa8422 Issue #23422: Clarify some things around importlib.import_module() 20 February 2015, 15:34:20 UTC
back to top