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

sort by:
Revision Author Date Message Commit Date
c6a1c02 Issue #21933: Users can now change the font size for example code. Original patch by Lita Cho. 03 September 2014, 20:17:41 UTC
282124b Closes #22258: Fix the the internal function set_inheritable() on Illumos. This platform exposes the function ioctl(FIOCLEX), but calling it fails with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable() now falls back to the slower fcntl() (F_GETFD and then F_SETFD). 02 September 2014, 09:41:04 UTC
a42ad6b Remove unused imports. 01 September 2014, 09:33:12 UTC
a7614d0 Issue #19447: Suppress output of py_compile.compile(). 01 September 2014, 09:29:53 UTC
29020b1 Issue #22320: Fix broken link in the General Python FAQ. Original patch by Josh Lynn. 01 September 2014, 07:06:18 UTC
311321e #22315: Use advertised API for OSError 31 August 2014, 21:42:20 UTC
d28c5f0 #22315: Use an existent directory for 'src' to trigger appropriate behavior. 31 August 2014, 21:51:22 UTC
47f44c9 #22315: Provide an actual directory during test invocation. 31 August 2014, 21:37:35 UTC
e572ce3 #22315: Use technique outlined in test_file_util 31 August 2014, 21:31:32 UTC
4b02e70 #22315: Add test to capture the failure. 31 August 2014, 19:02:42 UTC
1be2e82 Correct indent 31 August 2014, 19:00:47 UTC
b4efbe8 Remove unused import 31 August 2014, 17:43:02 UTC
d5aeccf asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_connect() There is a race condition in create_connection() used with wait_for() to have a timeout. sock_connect() registers the file descriptor of the socket to be notified of write event (if connect() raises BlockingIOError). When create_connection() is cancelled with a TimeoutError, sock_connect() coroutine gets the exception, but it doesn't unregister the file descriptor for write event. create_connection() gets the TimeoutError and closes the socket. If you call again create_connection(), the new socket will likely gets the same file descriptor, which is still registered in the selector. When sock_connect() calls add_writer(), it tries to modify the entry instead of creating a new one. This issue was originally reported in the Trollius project, but the bug comes from Tulip in fact (Trollius is based on Tulip): https://bitbucket.org/enovance/trollius/issue/15/after-timeouterror-on-wait_for This change fixes the race condition. It also makes sock_connect() more reliable (and portable) is sock.connect() raises an InterruptedError. 31 August 2014, 13:07:57 UTC
41f3c3f Closes #22275: asyncio: enhance documentation of OS support 31 August 2014, 12:47:37 UTC
e218bcb getuid() returns real process id not effective (closes #22307) 31 August 2014, 01:04:15 UTC
0cff49f #22215: have the smtplib 'quit' command reset the state. Without this reset, starttls would fail if a connect/starttls was done after a quit, because smtplib assumed the existing value of emspt_features was accurate, but it gets reset when starttls completes (and the new value does not contain the starttls capability, since tls is already started at that point). (There may be additional places where this lack of reset was an issue as well.) Patch by Milan Oberkirch. 30 August 2014, 20:51:59 UTC
a64b92e Issue #22185: Fix an occasional RuntimeError in threading.Condition.wait() caused by mutation of the waiters queue without holding the lock. Patch by Doug Zongker. 29 August 2014, 21:26:36 UTC
6685883 Issue #22182: Use e.args to unpack exceptions correctly in distutils.file_util.move_file. Patch by Claudiu Popa. 29 August 2014, 04:07:35 UTC
59e0802 asyncio, Tulip issue 201: Fix a race condition in wait_for() Don't raise a TimeoutError if we reached the timeout and the future completed in the same iteration of the event loop. A side effect of the bug is that Queue.get() looses items. 28 August 2014, 09:19:25 UTC
feac398 The webbrowser module now uses subprocess's start_new_session=True rather than a potentially risky preexec_fn=os.setsid call. 27 August 2014, 16:34:38 UTC
2ced87f Issue #22065: Remove the now unsed configGUI menu parameter and arguments. 27 August 2014, 05:58:40 UTC
8450c53 Issue #22065: Menus, unlike Menubottons, do not have a state option. Since a new demo can now be loaded while one is running, adjust loadfile to do the same cleanup as stopIt. 27 August 2014, 05:43:50 UTC
cf26115 Introduce and check for MPD_VERSION_HEX for precise management of builds with an external libmpdec. 26 August 2014, 19:31:47 UTC
298131a Issue #22090: Fix '%' formatting for infinities and NaNs. 26 August 2014, 18:46:49 UTC
d84fd73 Issue #22063: Fix asyncio documentation of socket and pipe operations regarding to non-blocking mode. The non-blocking mode does not matter when using a ProactorEventLoop, only for SelectorEventLoop. 25 August 2014, 23:01:59 UTC
52bb949 asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() method 25 August 2014, 22:22:28 UTC
b261475 asyncio: sync with Tulip * PipeServer.close() now cancels the "accept pipe" future which cancels the overlapped operation. * Fix _SelectorTransport.__repr__() if the transport was closed * Fix debug log in BaseEventLoop.create_connection(): get the socket object from the transport because SSL transport closes the old socket and creates a new SSL socket object. Remove also the _SelectorSslTransport._rawsock attribute: it contained the closed socket (not very useful) and it was not used. * Issue #22063: socket operations (sock_recv, sock_sendall, sock_connect, sock_accept) of the proactor event loop don't raise an exception in debug mode if the socket are in blocking mode. Overlapped operations also work on blocking sockets. * Fix unit tests in debug mode: mock a non-blocking socket for socket operations which now raise an exception if the socket is blocking. * _fatal_error() method of _UnixReadPipeTransport and _UnixWritePipeTransport now log all exceptions in debug mode * Don't log expected errors in unit tests * Tulip issue 200: _WaitHandleFuture._unregister_wait() now catchs and logs exceptions. * Tulip issue 200: Log errors in debug mode instead of simply ignoring them. 25 August 2014, 21:20:52 UTC
d71dcbb asyncio: update the doc * dev: mention that the logging must be configured at DEBUG level * streams: drain() has no more a strange return value, it's just a standard coroutine 25 August 2014, 15:04:12 UTC
8e16351 allow test to work on implementations not using ref-counting (closes #22265) 24 August 2014, 23:07:28 UTC
18bb702 fix some test_weakref tests to not rely on ref-counting (closes #22267) 24 August 2014, 23:02:15 UTC
549c197 Issue #22034: Got rid of misleading error message for bytearray arguments in posixpath.join(). 24 August 2014, 09:18:09 UTC
d00aff2 Issue #22236: Tkinter tests now don't reuse default root window. New root window is created for every test class. Fixed Tkinter images copying operations in NoDefaultRoot mode. Tcl command names generated for "after" callbacks now contains a name of original function. 24 August 2014, 06:07:47 UTC
ee55826 Issue #13540: add missing markup. 24 August 2014, 02:21:47 UTC
ec7aaf5 Issue #21166: fix typo in comment 24 August 2014, 01:10:16 UTC
65e3ecb Issue #22243: fix except grammar in reference. 23 August 2014, 23:29:47 UTC
004e870 Issue #22232 (partial fix): update Universal newlines Glossary entry. 23 August 2014, 22:28:44 UTC
130f303 Merge heads. 23 August 2014, 22:22:43 UTC
a5bbc2e Forward port PEP 466 What's New in 2.7 updates 23 August 2014, 04:47:47 UTC
fcbc246 Issue #21166: Prevent possible segfaults and other random failures of python --generate-posix-vars in pybuilddir.txt build target by ensuring that pybuilddir.txt is always regenerated when configure is run and that the newly built skeleton python does not inadvertently import modules from previously installed instances. 22 August 2014, 20:32:49 UTC
0242f79 Issue #19447: Use importlib.util.cache_from_source() instead of ``bad_coding + 'c'``. Thanks to Arfrever Frehtes Taifersar Arahesis. 22 August 2014, 17:52:15 UTC
31f8a67 Issue #19447: Add a test case to py_compile.compile() to make sure it don't raise an exception if doraise is False. Patch by Bohuslav "Slavek" Kabrda. 22 August 2014, 17:17:32 UTC
eb265ab Issue #22150: Fix deprecated-removed directive in Sphinx 1.2. 22 August 2014, 15:24:29 UTC
14ad531 Issue #22191: Fix warnings.__all__. Thanks to Jon Poler for the patch. 22 August 2014, 14:44:47 UTC
a969ae2 Fix issue22245 - Fix urllib2_localnet test. Do not aggresively close wfile in the do_GET method in the BasicAuthHandler. 22 August 2014, 10:56:21 UTC
7837376 Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull. 20 August 2014, 02:23:58 UTC
37ed873 Idle ColorDelegator: finish removing code for 'as'. 19 August 2014, 23:47:38 UTC
c1a723a Idle ColorDelegator: remove special case code for 'as' in import statements. 'As' became a full keyword when with statements were added in 2.5/2.6. 19 August 2014, 21:17:57 UTC
996c3de Fixed typo. 19 August 2014, 15:20:23 UTC
76b4765 Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. 19 August 2014, 14:11:20 UTC
d6ec309 Clean up test_user_command. 18 August 2014, 14:47:29 UTC
0c56bb9 remove 2.2 and 2.6 compat code (closes #22200) Patch from Thomas Kluyver. 18 August 2014, 04:00:42 UTC
d9e9528 Issue #22165: Fixed test_undecodable_filename on Mac OS. 17 August 2014, 13:57:39 UTC
87bbf25 Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter. 17 August 2014, 12:31:59 UTC
97f17ff Issue #22201: Command-line interface of the zipfile module now correctly extracts ZIP files with directory entries. Patch by Ryan Wilson. 17 August 2014, 12:14:48 UTC
a64ce5d Issue #22165: Fixed test_undecodable_filename on non-UTF-8 locales. 17 August 2014, 09:20:02 UTC
cb5bc40 Issue #22165: SimpleHTTPRequestHandler now supports undecodable file names. 17 August 2014, 05:22:11 UTC
402df09 backout changeset 3435c5865cfc due to buildbot failures. Ref #8797 16 August 2014, 17:22:37 UTC
7869a4e Closes #22188: test_gdb now runs gdb with -nx: "Do not execute commands from any .gdbinit initialization files". 16 August 2014, 12:38:02 UTC
8e7966b Closes #22205: sys._debugmallocstats is a cpython specific feature, so test_debugmallocstats should be marked as such. Patch written by Martin Matusiak. 16 August 2014, 12:11:01 UTC
b2e3a93 Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull. 16 August 2014, 08:47:38 UTC
f819ef7 Issue #22065: Update turtledemo menu creation; don't use obsolete Menubutton. 15 August 2014, 05:23:02 UTC
011b55b #22053: actually remove .txt files from 3.4. 15 August 2014, 04:55:42 UTC
94ee51e Issue #10291: Backport 004fe3449193 with a few changes due to 22095. Will forward port 22095 changes separately. 15 August 2014, 03:59:32 UTC
0726ddf Issue #17390: Adjust Editor window title. Remove 'Python', move version to end. 15 August 2014, 01:54:43 UTC
547d3bc Issue #22193: Added private function _PySys_GetSizeOf() needed to implement some __sizeof__() methods. 14 August 2014, 19:21:18 UTC
143fe05 Issue #21445: Pass exception messages correctly to assertTrue in the FileCompareTestCase.test_matching test. Patch by Steven Barker. 14 August 2014, 05:34:32 UTC
cd3aacf Issue #20729: Restored the use of lazy iterkeys()/itervalues()/iteritems() in the mailbox module. This is partial rollback of changeset f340cb045bf9. 13 August 2014, 06:35:21 UTC
4d58897 Issue 22184: Early detection and reporting of missing lru_cache parameters 12 August 2014, 19:44:52 UTC
4d83192 Decreased memory requirements of new tests added in issue21448. 12 August 2014, 17:22:48 UTC
320a1c0 Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing long line. Original patch by Raymond Hettinger. 12 August 2014, 10:59:11 UTC
6f20170 Issue #17923: glob() patterns ending with a slash no longer match non-dirs on AIX. Based on patch by Delhallt. 12 August 2014, 09:55:12 UTC
c04d468 Issue #20746: Fix test_pdb to run in refleak mode (-R). Patch by Xavier de Gaye. 12 August 2014, 01:40:38 UTC
f9dd274 Issue #22178: Fix the date of the Windows epoch (Jan 1, 1601). 11 August 2014, 20:00:48 UTC
337e03f Issue #22112, asyncio doc: replace loop.create_task(coro) with asyncio.async(coro), mention that asyncio.async() can be used to scheduler a coroutine, and make it clear that create_task() is only available in Python 3.4.2 and later. 10 August 2014, 23:11:13 UTC
6d20168 Close #22175: Improve test_faulthandler readability with dedent. Patch written by Xavier de Gaye. 10 August 2014, 17:50:08 UTC
ac191ce Issue #22174: Clean-up grammar and ambiguities in property() docs. 10 August 2014, 17:41:25 UTC
31b3683 Issue #22180: Remove weak example 10 August 2014, 17:33:03 UTC
acb8c52 add -Werror=declaration-after-statement only to stdlib extension modules (closes #21121) Patch from Stefan Krah. 10 August 2014, 03:01:49 UTC
3b48af0 - Issue #22176: Fix build failure on ARM with -Werror=declaration-after-statement 09 August 2014, 22:01:04 UTC
6a66f15 - Issue #22176: Add src/x86/win32.S for x86 libffi builds. 09 August 2014, 21:52:34 UTC
736a913 - Issue #22176: Update the ctypes module's libffi to v3.1. This release adds support for the Linux AArch64 and POWERPC ELF ABIv2 little endian architectures. 09 August 2014, 20:36:35 UTC
4f06d60 Issue #22161: Conformed arguments type checks in ctype to actually supported types. Corrected error messages about bytes arguments. 09 August 2014, 06:33:05 UTC
e4936b8 Issue #21777: separate docs for binary sequence methods 09 August 2014, 06:14:04 UTC
da26cca Issue #14105: Stop removing breakpoints from Idle editors. Move BREAK tag configuration to PyShellEditorWindow. 09 August 2014, 03:33:16 UTC
5a794c1 Issue #22060: Clean up/simplify test_ctypes, use test discovery 08 August 2014, 18:32:16 UTC
79a1ffd #22170: avoid printing newlines twice in tutorial example. 08 August 2014, 14:23:32 UTC
41ad77c Issue #20056: Fixed deprecation warning about bytes path in test_shutil on Windows. Path by Vajrasky Kok. 07 August 2014, 16:38:37 UTC
22f2d2e Issue #22160: Update OpenSSL to 1.0.1i for the Windows build. 07 August 2014, 04:19:29 UTC
1241c47 #22092: use absolute imports in unittest tests. Patch by Vajrasky Kok. 07 August 2014, 00:20:22 UTC
3d4b2d4 Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the __new__() method. 06 August 2014, 14:50:39 UTC
9b33872 Issue #22146: Fix typo in __build_class__ error message 05 August 2014, 19:01:10 UTC
12d9ddf Issue #22130: Corrected fileConfig() documentation. 05 August 2014, 09:34:16 UTC
67f6d5f #21928: clarify functools.wraps docs. 05 August 2014, 05:14:28 UTC
12b7f48 #11955: show the list of args in case of error in test_argparse. 04 August 2014, 23:24:03 UTC
e4aad5a #18034: update FAQ to suggest importlib.import_module instead of __import__. Patch by Wouter van Heyst. 04 August 2014, 16:34:29 UTC
69fb6a4 Issue #22104: Don't hold a reference to the loaded TestSuite in runtest_inner 04 August 2014, 16:15:10 UTC
d577480 #20977: fix undefined name in the email module. Patch by Rose Ames. 04 August 2014, 14:16:49 UTC
591176e #18588: update the timeit examples to be consistent. 04 August 2014, 14:01:16 UTC
c6f22cc Remove unused leftover stray line 04 August 2014, 07:21:11 UTC
c0de59b Fix markup. 04 August 2014, 06:44:30 UTC
back to top