]>
granicus.if.org Git - python/log
Ned Deily [Mon, 15 Aug 2016 20:12:59 +0000 (16:12 -0400)]
Update pydoc topics for 3.6.0a4
Ned Deily [Mon, 15 Aug 2016 18:40:38 +0000 (14:40 -0400)]
Issue #27736: Prevent segfault after interpreter re-initialization due
to ref count problem introduced in code for Issue #27038 in 3.6.0a3.
Patch by Xiang Zhang.
Ned Deily [Mon, 15 Aug 2016 18:37:14 +0000 (14:37 -0400)]
Issue #23968: Make OS X installer build script aware of renamed platform
directory and sysconfigdata file name. This is a workaround for 3.6.0a4
pending resolution of other #23968 items.
Guido van Rossum [Mon, 15 Aug 2016 16:12:52 +0000 (09:12 -0700)]
Issue #12345: Add mathemathcal constant tau to math and cmath.
Patch by Lisa Roach. See also PEP 628.
Ned Deily [Mon, 15 Aug 2016 07:23:23 +0000 (03:23 -0400)]
Issue #10910: merge from 3.5
Ned Deily [Mon, 15 Aug 2016 07:08:18 +0000 (03:08 -0400)]
Issue #10910: Update FreedBSD version checks for the ctype UTF-8 workaround.
The original problem has been fixed in newer versions of FreeBSD.
Patch by Dimitry Andric of the FreeBSD project.
Ned Deily [Mon, 15 Aug 2016 07:07:26 +0000 (03:07 -0400)]
Issue #10910: Avoid C++ compilation errors on FreeBSD and OS X.
Patch by Ronald Oussoren.
Serhiy Storchaka [Mon, 15 Aug 2016 07:06:16 +0000 (10:06 +0300)]
Issue #16764: Support keyword arguments to zlib.decompress(). Patch by
Xiang Zhang.
Serhiy Storchaka [Mon, 15 Aug 2016 06:46:07 +0000 (09:46 +0300)]
Issue #27704: Optimized creating bytes and bytearray from byte-like objects
and iterables. Speed up to 3 times for short objects. Original patch by
Naoki Inada.
Nick Coghlan [Mon, 15 Aug 2016 03:11:34 +0000 (13:11 +1000)]
Issue #26823: Abbreviate recursive tracebacks
Large sections of repeated lines in tracebacks are now abbreviated as
"[Previous line repeated {count} more times]" by both the traceback
module and the builtin traceback rendering.
Patch by Emanuel Barry.
Steven D'Aprano [Mon, 15 Aug 2016 01:21:08 +0000 (11:21 +1000)]
Update Misc/NEWS.
Donald Stufft [Sun, 14 Aug 2016 20:10:31 +0000 (16:10 -0400)]
merge 3.5
Donald Stufft [Sun, 14 Aug 2016 20:10:17 +0000 (16:10 -0400)]
merge 3.4
Donald Stufft [Sun, 14 Aug 2016 20:09:56 +0000 (16:09 -0400)]
Update setuptools/pip to 25.2.0/8.1.2
Steven D'Aprano [Sun, 14 Aug 2016 18:14:33 +0000 (04:14 +1000)]
Issue27573 code.interact prints a message when exiting.
Steven D'Aprano [Sun, 14 Aug 2016 16:47:49 +0000 (02:47 +1000)]
Add versionadded tag to docs for timeit.autorange
Steven D'Aprano [Sun, 14 Aug 2016 15:27:03 +0000 (01:27 +1000)]
Issue6422 add autorange method to timeit.Timer
Serhiy Storchaka [Sun, 14 Aug 2016 07:52:18 +0000 (10:52 +0300)]
Issue #27574: Decreased an overhead of parsing keyword arguments in functions
implemented with using Argument Clinic.
Benjamin Peterson [Sun, 14 Aug 2016 01:37:20 +0000 (18:37 -0700)]
merge 3.5 (closes #27760)
Benjamin Peterson [Sun, 14 Aug 2016 01:37:12 +0000 (18:37 -0700)]
merge 3.4 (closes #27760)
Benjamin Peterson [Sun, 14 Aug 2016 01:36:55 +0000 (18:36 -0700)]
merge 3.3 (closes #27760)
Benjamin Peterson [Sun, 14 Aug 2016 01:33:33 +0000 (18:33 -0700)]
fix possible integer overflow in binascii.b2a_qp (closes #27760)
Reported by Thomas E. Hybel
Benjamin Peterson [Sun, 14 Aug 2016 01:21:32 +0000 (18:21 -0700)]
merge 3.5
Benjamin Peterson [Sun, 14 Aug 2016 01:21:16 +0000 (18:21 -0700)]
merge 3.4
Benjamin Peterson [Sun, 14 Aug 2016 01:15:28 +0000 (18:15 -0700)]
do not allow reading negative values with getstr()
Benjamin Peterson [Sun, 14 Aug 2016 00:22:18 +0000 (17:22 -0700)]
merge 3.5 (closes #27758)
Benjamin Peterson [Sun, 14 Aug 2016 00:21:54 +0000 (17:21 -0700)]
merge 3.4 (closes #27758)
Benjamin Peterson [Sun, 14 Aug 2016 00:21:22 +0000 (17:21 -0700)]
merge 3.3 (#27758)
Benjamin Peterson [Sun, 14 Aug 2016 00:17:06 +0000 (17:17 -0700)]
check for overflow in join_append_data (closes #27758)
Reported by Thomas E. Hybel
R David Murray [Sat, 13 Aug 2016 18:47:54 +0000 (14:47 -0400)]
Merge: #27753: fix typo (name->named).
R David Murray [Sat, 13 Aug 2016 18:47:18 +0000 (14:47 -0400)]
#27753: fix typo (name->named).
Raymond Hettinger [Sat, 13 Aug 2016 18:15:59 +0000 (11:15 -0700)]
merge
Raymond Hettinger [Sat, 13 Aug 2016 18:15:34 +0000 (11:15 -0700)]
Issue #27720: Fix error in eng_to_decimal docs and add examples from the specification.
(Based on a first draft patch from Evelyn Mitchell.)
Berker Peksag [Sat, 13 Aug 2016 02:38:18 +0000 (05:38 +0300)]
Issue #24637: Merge from 3.5
Berker Peksag [Sat, 13 Aug 2016 02:37:49 +0000 (05:37 +0300)]
Issue #24637: Document that locals can be any mapping object
This behavior is already tested in test_general_eval in
Lib/test/test_builtin.py
Patch by Matthew Keeter.
Alexander Belopolsky [Fri, 12 Aug 2016 23:08:15 +0000 (19:08 -0400)]
Issue #24773: Skip system tests for transitions in year 2037 and later.
Brett Cannon [Fri, 12 Aug 2016 17:57:17 +0000 (10:57 -0700)]
Merge for issue #27712
Brett Cannon [Fri, 12 Aug 2016 17:56:48 +0000 (10:56 -0700)]
Issue #27712: Fix some typos in the import docs.
Thanks to Xiang Zhang for the patch.
Brett Cannon [Fri, 12 Aug 2016 17:53:53 +0000 (10:53 -0700)]
Issue #25805: Skip a test for test_pkgutil when __name__ == __main__.
Thanks to SilentGhost for the patch.
Raymond Hettinger [Fri, 12 Aug 2016 16:44:18 +0000 (09:44 -0700)]
merge
Raymond Hettinger [Fri, 12 Aug 2016 16:43:59 +0000 (09:43 -0700)]
Issue 27719: Remove a doc example that is not applicable in Python 3
Martin Panter [Fri, 12 Aug 2016 13:26:01 +0000 (13:26 +0000)]
Issue #25825: Merge AIX fix from 3.5
Martin Panter [Fri, 12 Aug 2016 13:21:05 +0000 (13:21 +0000)]
Issue #25825: Fix references to Modules/python.exp
These were incorrectly changed in revision
88a532a31eb3 .
Martin Panter [Fri, 12 Aug 2016 12:05:48 +0000 (12:05 +0000)]
Issue #27745: Merge typo fixes from 3.5
Martin Panter [Fri, 12 Aug 2016 12:04:27 +0000 (12:04 +0000)]
Issue #26741: Merge ResourceWarning fixes from 3.5
Martin Panter [Fri, 12 Aug 2016 12:02:03 +0000 (12:02 +0000)]
Issue #27745: Fix some typos in Argument Clinic howto, by Lele Gaifax
Martin Panter [Fri, 12 Aug 2016 11:59:52 +0000 (11:59 +0000)]
Issue #26741: Clean up subprocess.Popen object in test_poll
Martin Panter [Fri, 12 Aug 2016 11:59:52 +0000 (11:59 +0000)]
Close HTTP connections and responses in tests to avoid ResourceWarnings
Alexander Belopolsky [Thu, 11 Aug 2016 15:01:45 +0000 (11:01 -0400)]
Issue #24773: Fix and speed-up ZoneInfoCompleteTest.
* Read the zone.tab file for the list of zones to exclude
the aliases.
* Skip Casablanca and El_Aaiun October 2037 transitions.
Terry Jan Reedy [Thu, 11 Aug 2016 03:44:54 +0000 (23:44 -0400)]
Issue #27732: Silence test_idle with dummy bell functions.
Terry Jan Reedy [Wed, 10 Aug 2016 20:54:31 +0000 (16:54 -0400)]
null merge from3.5
Terry Jan Reedy [Wed, 10 Aug 2016 20:52:24 +0000 (16:52 -0400)]
Issue #27714: text_textview now passes when re-run in the same process
because test_idle failed while running with test -w (and no -jn).
Terry Jan Reedy [Wed, 10 Aug 2016 19:15:25 +0000 (15:15 -0400)]
Issue #27714: text_textview now passes when re-run in the same process
because test_idle failed while running with test -w (and no -jn).
Prevent a non-fatal warning from test_config_key.
Terry Jan Reedy [Wed, 10 Aug 2016 17:16:26 +0000 (13:16 -0400)]
Issue #27380: For test_query on Mac, adjust one expected result.
Terry Jan Reedy [Wed, 10 Aug 2016 16:50:16 +0000 (12:50 -0400)]
Issue #27621: Put query response validation error messages in query box
instead of in separate massagebox. Redo tests to match.
Add Mac OSX refinements. Original patch by Mark Roseman.
Martin Panter [Wed, 10 Aug 2016 07:00:33 +0000 (07:00 +0000)]
Merge ISO-8859 fixes from 3.5
Zachary Ware [Wed, 10 Aug 2016 06:05:56 +0000 (01:05 -0500)]
Issue #27200: Merge with 3.5
Zachary Ware [Wed, 10 Aug 2016 06:05:19 +0000 (01:05 -0500)]
Issue #27200: Fix doctests in Doc/library/hashlib.rst
Zachary Ware [Wed, 10 Aug 2016 06:01:05 +0000 (01:01 -0500)]
Closes #27210: Merge with 3.5
Zachary Ware [Wed, 10 Aug 2016 05:59:59 +0000 (00:59 -0500)]
Issue #27210: Fix doctests for a few modules.
Initial patch by Jelle Zijlstra.
Zachary Ware [Wed, 10 Aug 2016 05:39:59 +0000 (00:39 -0500)]
Closes #27209: Merge with 3.5
Zachary Ware [Wed, 10 Aug 2016 05:39:41 +0000 (00:39 -0500)]
Issue #27209: Fix doctests in Doc/library/email*.rst
Patch by Jelle Zijlstra.
Zachary Ware [Wed, 10 Aug 2016 05:35:51 +0000 (00:35 -0500)]
Closes #27208: Merge with 3.5
Zachary Ware [Wed, 10 Aug 2016 05:35:27 +0000 (00:35 -0500)]
Issue #27208: Fix doctest in Doc/library/traceback.rst
Patch by Jelle Zijlstra.
Zachary Ware [Wed, 10 Aug 2016 05:31:31 +0000 (00:31 -0500)]
Closes #27207: Merge with 3.5
Zachary Ware [Wed, 10 Aug 2016 05:30:41 +0000 (00:30 -0500)]
Issue #27207: Fix doctests in Doc/whatsnew/3.2.rst
Initial patch by Jelle Zijlstra.
Martin Panter [Wed, 10 Aug 2016 05:25:16 +0000 (05:25 +0000)]
Correct misspellings of ISO-8859
Zachary Ware [Tue, 9 Aug 2016 22:45:15 +0000 (17:45 -0500)]
Closes #27206: Merge with 3.5
Zachary Ware [Tue, 9 Aug 2016 22:44:52 +0000 (17:44 -0500)]
Issue #27206: Fix doctests in Doc/tutorial.
Patch by Jelle Zijlstra.
Zachary Ware [Tue, 9 Aug 2016 22:38:44 +0000 (17:38 -0500)]
Closes #27205: Merge with 3.5
Zachary Ware [Tue, 9 Aug 2016 22:38:22 +0000 (17:38 -0500)]
Issue #27205: Fix doctests in Doc/library/collections.rst.
Initial patch by Jelle Zijlstra.
Zachary Ware [Tue, 9 Aug 2016 22:10:53 +0000 (17:10 -0500)]
Closes #27722: Merge with 3.5
Zachary Ware [Tue, 9 Aug 2016 22:10:39 +0000 (17:10 -0500)]
Issue #27722: Fix default for touch method's 'mode' argument
Zachary Ware [Tue, 9 Aug 2016 22:05:23 +0000 (17:05 -0500)]
Closes #27204: Merge with 3.5
Zachary Ware [Tue, 9 Aug 2016 21:47:04 +0000 (16:47 -0500)]
Issue #27204: Fix doctests in Doc/howto
Patch by Jelle Zijlstra.
Zachary Ware [Tue, 9 Aug 2016 21:21:17 +0000 (16:21 -0500)]
Merge with 3.5
Zachary Ware [Tue, 9 Aug 2016 21:20:41 +0000 (16:20 -0500)]
Correct signatures for a couple of logging handlers
Reported by Oleg Gromyak on docs@
Vinay Sajip [Tue, 9 Aug 2016 14:07:06 +0000 (15:07 +0100)]
Closes #21999: (Empty) merge from 3.5.
Vinay Sajip [Tue, 9 Aug 2016 14:04:49 +0000 (15:04 +0100)]
Closes #21999: Handled empty strings correctly when in POSIX mode.
Steven D'Aprano [Tue, 9 Aug 2016 03:58:10 +0000 (13:58 +1000)]
Issue27181 add geometric mean.
Steven D'Aprano [Tue, 9 Aug 2016 03:19:48 +0000 (13:19 +1000)]
Tighten up test of harmonic mean on a single value.
Steven D'Aprano [Tue, 9 Aug 2016 02:49:20 +0000 (12:49 +1000)]
Automated merge with ssh://hg.python.org/cpython
Steven D'Aprano [Tue, 9 Aug 2016 02:49:01 +0000 (12:49 +1000)]
Add harmonic mean and tests.
Guido van Rossum [Mon, 8 Aug 2016 21:43:46 +0000 (14:43 -0700)]
Issue #27700: Document AbstractEventLoop, not BaseEventLoop. (Merge 3.5->3.6)
Alexander Belopolsky [Mon, 8 Aug 2016 21:05:40 +0000 (17:05 -0400)]
Closes #27710: Disallow fold not in [0, 1] in time and datetime constructors.
Guido van Rossum [Mon, 8 Aug 2016 16:41:21 +0000 (09:41 -0700)]
Issue #27700: Document AbstractEventLoop, not BaseEventLoop.
Berker Peksag [Mon, 8 Aug 2016 11:07:05 +0000 (14:07 +0300)]
Issue #27702: Only expose SOCK_RAW when defined
SOCK_RAW is marked as optional in the POSIX specification:
http://pubs.opengroup.org/onlinepubs/
9699919799 /basedefs/sys_socket.h.html
Patch by Ed Schouten.
Berker Peksag [Mon, 8 Aug 2016 10:39:43 +0000 (13:39 +0300)]
Expose EPOLLRDHUP conditionally
Berker Peksag [Mon, 8 Aug 2016 10:35:27 +0000 (13:35 +0300)]
Merge from 3.5
Berker Peksag [Mon, 8 Aug 2016 10:34:49 +0000 (13:34 +0300)]
Fix use of default reST role
Berker Peksag [Mon, 8 Aug 2016 10:07:35 +0000 (13:07 +0300)]
Issue #23322: Merge from 3.5
Berker Peksag [Mon, 8 Aug 2016 10:07:08 +0000 (13:07 +0300)]
Issue #23322: Remove outdated reference to an example in parser docs
Initial patch by Sahil Chelaramani.
Raymond Hettinger [Mon, 8 Aug 2016 03:20:33 +0000 (20:20 -0700)]
Re-linewrap comments
Andrew Svetlov [Mon, 8 Aug 2016 00:11:06 +0000 (03:11 +0300)]
Merge 3.5
Andrew Svetlov [Mon, 8 Aug 2016 00:10:39 +0000 (03:10 +0300)]
Use asyncio.gather instead of asyncio.wait in example.
gather will raise exception in case of problem but wait just returns done and pending lists of futures.
For getting error every future result should be retrieved, which is boring and error prone.
Gregory P. Smith [Sun, 7 Aug 2016 17:19:20 +0000 (10:19 -0700)]
Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor()
the ability to specify a thread name prefix.
Gregory P. Smith [Sun, 7 Aug 2016 16:06:27 +0000 (09:06 -0700)]
Issue #26750: unittest.mock.create_autospec() now works properly for
subclasses of property() and other data descriptors. Removes the never
publicly used, never documented unittest.mock.DescriptorTypes tuple.
Gregory P. Smith [Sun, 7 Aug 2016 15:52:26 +0000 (08:52 -0700)]
Issue #26750: unittest.mock.create_autospec() now works properly
for subclasses of property() and other data descriptors.
Guido van Rossum [Sat, 6 Aug 2016 20:48:10 +0000 (13:48 -0700)]
Better docs for typing.Any by Michael Lee. Fixes issue #27688. (Merge 3.5->3.6)
Guido van Rossum [Sat, 6 Aug 2016 20:46:48 +0000 (13:46 -0700)]
Better docs for typing.Any by Michael Lee. Fixes issue #27688.