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

sort by:
Revision Author Date Message Commit Date
4faf5c5 Issue #23985: Fixed integer overflow in iterator object. Patch by Clement Rouault. 21 May 2015, 17:50:25 UTC
cbfe07e Issue 24215: Added tests for more builtin types in test_pprint. Made test_pprint and test_trace discoverable. 20 May 2015, 16:37:10 UTC
c0e0022 Issue #24134: Use assertRaises() in context manager form in test_slice to avoid passing the test accidently because slice.__hash__ is None. 20 May 2015, 15:37:37 UTC
ef94869 Issue #24245: Eliminated senseless expect clauses that have no any effect in IDLE. Patch by Martin Panter. 20 May 2015, 13:15:02 UTC
5d6b7b1 Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again when a directory with the chosen name already exists on Windows as well as on Unix. tempfile.mkstemp() now fails early if parent directory is not valid (not exists or is a file) on Windows. 19 May 2015, 21:11:48 UTC
f6d1f1f Fix some compilation warnings when using gcc (-Wmaybe-uninitialized). 19 May 2015, 19:04:33 UTC
2545411 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. Patch by Martin Panter. 19 May 2015, 18:52:27 UTC
6371446 #24215: also back out changeset that broke test_trace in 3.4. I missed that this change was applied to both branches. 19 May 2015, 12:24:59 UTC
ae760c0 Issue #6598: Increased time precision and random number range in email.utils.make_msgid() to strengthen the uniqueness of the message ID. 19 May 2015, 07:09:42 UTC
315e104 Issue #24232: Fix typos. Patch by Ville Skyttä. 18 May 2015, 22:36:55 UTC
2a8baed Issue #24233: Add a proper link to socket.getfqdn() documentation. Patch by Ville Skyttä. 18 May 2015, 22:31:00 UTC
ed9ed7f Fix typo in Nisc/NEWS. 18 May 2015, 22:21:28 UTC
7e29eea Fixed typos in comments. 18 May 2015, 19:19:42 UTC
5bf3120 Issue #24091: Fixed various crashes in corner cases in C implementation of ElementTree. 18 May 2015, 15:29:33 UTC
ca7fecb Issue #24102: Fixed exception type checking in standard error handlers. 18 May 2015, 13:08:52 UTC
0a29e89 Issue #21931: Fix error handling in msilib.FCICreate(). Patch by Jeffrey Armstrong. 18 May 2015, 05:47:15 UTC
610a51f Issue #23757: Only call the concrete list API for exact lists. 17 May 2015, 21:45:58 UTC
6558190 Issue #22155: News entry. 17 May 2015, 18:53:28 UTC
d986563 Issue #22155: Add File Handlers subsection with createfilehandler to tkinter doc. Remove obsolete example from FAQ. Patch by Martin Panter. 17 May 2015, 18:49:26 UTC
0e8168c #24216: fix typo 17 May 2015, 14:16:37 UTC
296c66e Issue #24199: Make idlever module self updating. Syop using it in aboutDialog. 16 May 2015, 23:28:32 UTC
a0b8a50 Issue #24212: Put reference in idle.__main__ to issue with explanation. 16 May 2015, 22:31:15 UTC
5dbb40f Added tests for more builtin types. Made test_pprint discoverable. 16 May 2015, 18:35:24 UTC
031d064 Issue #23964: Update idlelib/idle_test/README.txt. first patch by Al Sweigart. 16 May 2015, 18:23:39 UTC
a7d00c2 Reverted issue #24134 changes (except new tests). 16 May 2015, 13:25:43 UTC
75fb816 Issue #23184: idle tests, remove unused names and imports. 16 May 2015, 03:55:21 UTC
038c16b Issue #23184: idlelib, remove more unused names and imports. 16 May 2015, 03:03:17 UTC
2733618 idlelib: remove unused names and imports (one is a duplicate import). 14 May 2015, 22:10:50 UTC
8279619 Issue 24191: Document BoundArguments.signature 14 May 2015, 18:14:02 UTC
2249d9f Make sentence correct English. 14 May 2015, 12:50:38 UTC
0a560a1 #23088: Clarify null termination of bytes and strings in C API. Patch by Martin Panter, reviewed by Serhiy Storchaka and R. David Murray. 14 May 2015, 00:31:53 UTC
3afdb28 Fix mangled wording 13 May 2015, 21:39:04 UTC
c58cca5 asyncio: Use 'collections.abc.Coroutine' in asyncio.iscoroutine (in 3.5) 13 May 2015, 19:21:41 UTC
d08c363 Sync asyncio code from default branch. 13 May 2015, 19:15:56 UTC
3a81f9b Issue #22064: Improve the misleading message from 2to3 when skipping optional fixers. Patch by Vinod Kurup. 13 May 2015, 10:39:51 UTC
a378025 Issue #19934: Document *None* as an acceptable input to Counter.most_common([n]) 13 May 2015, 09:47:57 UTC
19a3f17 use imperative 12 May 2015, 23:15:53 UTC
e8944cb asyncio: Make sure sys.set_coroutine_wrapper is called *only* when loop is running. Previous approach of installing coroutine wrapper in loop.set_debug() and uninstalling it in loop.close() was very fragile. Most of asyncio tests do not call loop.close() at all. Since coroutine wrapper is a global setting, we have to make sure that it's only set when the loop is running, and is automatically unset when it stops running. Issue #24017. 12 May 2015, 15:43:04 UTC
c2dd680 Issue #23983: Update the pty module example. Changes: * Fixed a ResourceWarning warning * Used argparse instead of getopt 12 May 2015, 14:25:06 UTC
ea6d559 Issue #23796: peak and read1 methods of BufferedReader now raise ValueError if they called on a closed object. Patch by John Hergenroeder. 12 May 2015, 14:13:56 UTC
b9db9e1 Defend against a mutation during comparison 12 May 2015, 02:58:56 UTC
1af2bf7 asyncio: Support PEP 492. Issue #24017. 12 May 2015, 02:27:25 UTC
d7e19bb docs/asyncio: Document new ensure_future() and deprecated async() 11 May 2015, 20:33:41 UTC
7185461 docs/asyncio: Document set_task_factory/get_task_factory 11 May 2015, 20:28:27 UTC
5d87ec2 Fix NEWS file. 11 May 2015, 18:52:37 UTC
59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). 11 May 2015, 18:48:38 UTC
740169c Sync asyncio changes from the main repo. 11 May 2015, 18:23:38 UTC
37c4f78 add trailing slash 11 May 2015, 01:19:18 UTC
65bcdd7 ensure .keywords is always a dict 09 May 2015, 04:25:18 UTC
07abcf5 merge heads 09 May 2015, 01:32:19 UTC
0171d7f fix libffi compilation on FreeBSD (#23042) Patch from Marc-Andre Lemburg. 09 May 2015, 01:31:36 UTC
b0fc24b Upgrade setuptools to 15.2 09 May 2015, 01:30:04 UTC
cd797f9 Minor updates to the OS X installer ReadMe.rtf. 08 May 2015, 21:42:32 UTC
01b0883 Issue #20274: Remove ignored and erroneous "kwargs" parameters from three METH_VARARGS methods on _sqlite.Connection. 08 May 2015, 14:37:49 UTC
7e63b36 Issue #21520: test_zipfile no longer fails if the word 'bad' appears anywhere in the name of the current directory. 08 May 2015, 13:54:58 UTC
b79e012 Fix doc: asyncio.Semaphore.release() actually is a regular function, not coroutine 08 May 2015, 11:13:41 UTC
9e77f72 shorten capsule name macro; it doesn't need to be so long 07 May 2015, 22:41:47 UTC
ad643b5 remove word we don't need 07 May 2015, 01:29:14 UTC
828946e Fix copy/paste errors. Basically, s/thread/coroutine/. 07 May 2015, 01:19:06 UTC
4b5367c Fixed English in error message. 06 May 2015, 16:21:00 UTC
e130503 Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and assertWarnsRegex() checks are not longer successful if the callable is None. Added tests for assertRaises(). 06 May 2015, 16:13:11 UTC
ab91478 Issue #24125: Saved error's line and column numbers when an error is occured during closing expatreader. Fixed a regression introduced in issue #23865. 06 May 2015, 06:36:06 UTC
e8042e5 - Issue #24122, fix quoting for LIBPL 05 May 2015, 23:13:02 UTC
d0150ad Issue 24088: Clarify semantics of yield expression. 05 May 2015, 19:02:01 UTC
ac87ed7 update example, since python.org is HTTPS-only now (closes #24118) 03 May 2015, 16:59:09 UTC
8c59816 merge 3.3 (#24096) 03 May 2015, 15:28:46 UTC
deff2b7 be more robust against the filters list changing under us (closes #24096) 03 May 2015, 15:23:37 UTC
b9c04db Issue #23330: h2py now supports arbitrary filenames in #include. 03 May 2015, 12:35:14 UTC
122f4b1 merge 3.3 (#24094) 03 May 2015, 02:36:26 UTC
501182a just sort the items tuple directly (closes #24094) 03 May 2015, 02:28:04 UTC
0a9933e Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions without __name__. 03 May 2015, 01:38:24 UTC
4590c3d #24108: Update fnmatch.translate example to show correct output. Patch by Merlijn van Deen. 02 May 2015, 19:08:22 UTC
6d877ef #24081: Remove obsolete caveat from import docs. Per Eric Snow's research, this changed in Python 2.4 in changeset 331e60d8ce, but these docs were not updated. Patch by Peter Viktorin. 02 May 2015, 18:57:54 UTC
c6249a6 Defer deleted item decref until after the deque is restored to a consistent state. 02 May 2015, 17:44:17 UTC
1dd8e71 Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. 02 May 2015, 17:00:22 UTC
a7db057 Fixed a typo. 02 May 2015, 16:24:41 UTC
bbd95a9 Issue #24060: Made logging.Formatter documentation a little clearer. 02 May 2015, 08:46:05 UTC
755640b update links 30 April 2015, 21:37:11 UTC
ca40e43 - remove unused EXTRAPLATDIR macro in Makefile.pre.in 30 April 2015, 11:44:18 UTC
b0335ee improve phrasing 29 April 2015, 22:00:44 UTC
64298ae Issue #24077: Fix typo in man page for -I command option: -s, not -S. 29 April 2015, 21:51:43 UTC
9df36c9 Issue #21354: PyCFunction_New function is exposed by python DLL again. 27 April 2015, 14:48:50 UTC
2034caa Issue #24062: Fix os.stat links. Patch by July Tikhonov. 27 April 2015, 10:53:28 UTC
0c6a5d1 remove extern definition, since it's in a header file (closes #24058) 26 April 2015, 19:55:06 UTC
7403e91 Issue #23996: Avoid a crash when a delegated generator raises an unnormalized StopIteration exception. Patch by Stefan Behnel. 26 April 2015, 16:46:40 UTC
8c99a6d Issue #23356: Simplify convert_arg_line_to_args example. Patch by py.user. 26 April 2015, 09:09:54 UTC
f968177 Fix computation of max_fd on OpenBSD. Issue #23852. 26 April 2015, 06:43:34 UTC
d87dd43 fix relative link (closes #24057) 25 April 2015, 18:15:16 UTC
4403d7d Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes Patch written by William Orr. 24 April 2015, 22:16:10 UTC
9bdd613 remove dead *-import checking code (closes #24049) 24 April 2015, 16:02:29 UTC
bd91ee9 merge 3.3 (#24044) 23 April 2015, 21:06:33 UTC
51454a6 merge 3.2 (#24044) 23 April 2015, 21:05:07 UTC
0823ffb properly handle malloc failure (closes #24044) Patch by Christian Heimes. 23 April 2015, 21:04:36 UTC
d98c677 Issue #24031: make patchcheck now supports git checkouts, too. 23 April 2015, 09:24:14 UTC
71f73ca Issue #23713: Fixed fragility of test_imap_unordered_handle_iterable_exception. Patch by Davin Potts. 23 April 2015, 08:35:59 UTC
3bd66ab Use more precise Tcl version checks in tests. 23 April 2015, 07:57:40 UTC
4e1f355 Issue #24029: Document the name binding behavior for submodule imports. 22 April 2015, 22:36:44 UTC
2097f53 Issue #24029: Document the name binding behavior for submodule imports. 22 April 2015, 22:29:16 UTC
3d2198c Next attempt: fix .gitignore for Unix and OSX. Sorry RDM! 22 April 2015, 21:54:44 UTC
34e0060 Fix .gitignore for 'python' binary. 22 April 2015, 20:15:44 UTC
back to top