]> granicus.if.org Git - python/log
python
9 years agomerge from 3.4
Senthil Kumaran [Sat, 2 Jan 2016 07:26:53 +0000 (23:26 -0800)]
merge from 3.4

Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki.

9 years agoIssue25917 : Fix howto links in docs. Point the reference documentation instead of...
Senthil Kumaran [Sat, 2 Jan 2016 07:25:58 +0000 (23:25 -0800)]
Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki.

9 years agoRemove a duplicate test_addresses key:value as identified by Vincent
Gregory P. Smith [Sat, 2 Jan 2016 01:41:46 +0000 (17:41 -0800)]
Remove a duplicate test_addresses key:value as identified by Vincent
Davis reviewing code.

9 years agoUpdate copyrights for 2016.
Ned Deily [Fri, 1 Jan 2016 22:44:30 +0000 (17:44 -0500)]
Update copyrights for 2016.

9 years agoUpdate copyrights for 2016.
Ned Deily [Fri, 1 Jan 2016 22:42:39 +0000 (17:42 -0500)]
Update copyrights for 2016.

9 years agoFix grammar.
Zachary Ware [Fri, 1 Jan 2016 18:22:16 +0000 (12:22 -0600)]
Fix grammar.

Reported by Anatoly Techtonik on docs@

9 years agomerge 3.4
Benjamin Peterson [Fri, 1 Jan 2016 17:56:16 +0000 (11:56 -0600)]
merge 3.4

9 years agomerge 3.3
Benjamin Peterson [Fri, 1 Jan 2016 17:55:47 +0000 (11:55 -0600)]
merge 3.3

9 years agoremove some copyright notices supserseded by the toplevel ones
Benjamin Peterson [Fri, 1 Jan 2016 17:53:47 +0000 (11:53 -0600)]
remove some copyright notices supserseded by the toplevel ones

9 years agoadd 2015 and 2016
Benjamin Peterson [Fri, 1 Jan 2016 17:53:14 +0000 (11:53 -0600)]
add 2015 and 2016

9 years agomerge 3.4
Benjamin Peterson [Fri, 1 Jan 2016 17:13:10 +0000 (11:13 -0600)]
merge 3.4

9 years agomerge 3.3
Benjamin Peterson [Fri, 1 Jan 2016 17:12:49 +0000 (11:12 -0600)]
merge 3.3

9 years agoreflow
Benjamin Peterson [Fri, 1 Jan 2016 17:12:44 +0000 (11:12 -0600)]
reflow

9 years agomerge 3.4
Benjamin Peterson [Fri, 1 Jan 2016 16:25:12 +0000 (10:25 -0600)]
merge 3.4

9 years agomerge 3.3
Benjamin Peterson [Fri, 1 Jan 2016 16:24:21 +0000 (10:24 -0600)]
merge 3.3

9 years ago2016 will be another year of writing copyrighted code
Benjamin Peterson [Fri, 1 Jan 2016 16:23:45 +0000 (10:23 -0600)]
2016 will be another year of writing copyrighted code

9 years agoIssue #25961: Disallowed null characters in the type name.
Serhiy Storchaka [Wed, 30 Dec 2015 19:40:49 +0000 (21:40 +0200)]
Issue #25961: Disallowed null characters in the type name.
Simplified testing for null characters in __name__ setter.

9 years agoMake catched exception more specific and correct a comment.
Serhiy Storchaka [Wed, 30 Dec 2015 19:00:08 +0000 (21:00 +0200)]
Make catched exception more specific and correct a comment.

9 years agoFixed formatting comman-line usage message.
Serhiy Storchaka [Wed, 30 Dec 2015 07:28:19 +0000 (09:28 +0200)]
Fixed formatting comman-line usage message.

9 years agoIssue #25977: Fix typos in Lib/tokenize.py
Berker Peksag [Tue, 29 Dec 2015 23:41:58 +0000 (01:41 +0200)]
Issue #25977: Fix typos in Lib/tokenize.py

Patch by John Walker.

9 years agomake recording and reporting errors and nonlocal and global directives more robust...
Benjamin Peterson [Tue, 29 Dec 2015 16:08:34 +0000 (10:08 -0600)]
make recording and reporting errors and nonlocal and global directives more robust (closes #25973)

9 years agoBackport of fix for issue #25930
Brett Cannon [Tue, 29 Dec 2015 01:30:32 +0000 (17:30 -0800)]
Backport of fix for issue #25930

9 years agoIssue #25447: Copying the lru_cache() wrapper object now always works,
Serhiy Storchaka [Mon, 28 Dec 2015 21:58:07 +0000 (23:58 +0200)]
Issue #25447: Copying the lru_cache() wrapper object now always works,
independedly from the type of the wrapped object (by returning the original
object unchanged).

9 years agoIssue #12484: Remove a mention of Py_InitModule() and _PyImport_FixupExtension().
Brett Cannon [Sun, 27 Dec 2015 20:24:06 +0000 (12:24 -0800)]
Issue #12484: Remove a mention of Py_InitModule() and _PyImport_FixupExtension().

Thanks to Alejandro Santos for the bug report and Anish Shah for the
patch.

9 years agoIssue #25874: Clarify platform support in the "Using Python on Windows" doc.
Brett Cannon [Sun, 27 Dec 2015 20:08:37 +0000 (12:08 -0800)]
Issue #25874: Clarify platform support in the "Using Python on Windows" doc.

Thanks to Chris Wilcox for the initial patch.

9 years agoIssue #20440: More use of Py_SETREF.
Serhiy Storchaka [Sun, 27 Dec 2015 13:41:34 +0000 (15:41 +0200)]
Issue #20440: More use of Py_SETREF.
This patch is manually crafted and contains changes that couldn't be handled
automatically.

9 years agoIssue #20440: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka [Sun, 27 Dec 2015 10:36:18 +0000 (12:36 +0200)]
Issue #20440: Applied yet one patch for using Py_SETREF.
The patch is automatically generated, it replaces the code that uses Py_CLEAR.

9 years agoFixes #25360: Search for pythonw.exe when in pyw.exe.
Vinay Sajip [Sat, 26 Dec 2015 13:10:51 +0000 (13:10 +0000)]
Fixes #25360: Search for pythonw.exe when in pyw.exe.

9 years agoCloses #25685: Made SocketHandler emission more efficient.
Vinay Sajip [Sat, 26 Dec 2015 12:48:44 +0000 (12:48 +0000)]
Closes #25685: Made SocketHandler emission more efficient.

9 years agoIssue #22995: Instances of extension types with a state that aren't
Serhiy Storchaka [Fri, 25 Dec 2015 19:04:29 +0000 (21:04 +0200)]
Issue #22995: Instances of extension types with a state that aren't
subclasses of list or dict and haven't implemented any pickle-related
methods (__reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__,
or __getstate__), can no longer be pickled.  Including memoryview.

9 years agoIssue #24103: Fixed possible use after free in ElementTree.XMLPullParser.
Serhiy Storchaka [Thu, 24 Dec 2015 09:51:57 +0000 (11:51 +0200)]
Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser.

9 years agoIssue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka [Thu, 24 Dec 2015 08:35:59 +0000 (10:35 +0200)]
Issue #20440: Massive replacing unsafe attribute setting code with special
macro Py_SETREF.

9 years ago#1753718: clarify RFC compliance and bytes/string argument types.
R David Murray [Thu, 24 Dec 2015 02:17:17 +0000 (21:17 -0500)]
#1753718: clarify RFC compliance and bytes/string argument types.

Patch includes contributions by Isobel Hooper, incorporating suggestions from
Paul Winkler.  Reviewed by Martin Panter.

In addition to accepting the corrections for the RFC compliance wording, I
went through and corrected all the argument and return types, and made the
pattern of how the arguments and return types are documented consistent.
So, this patch also addresses #20782, though I had forgotten about that issue
and its patch.

9 years agoIssue #25860: Fixed test failure caused by inconsistency of os.walk() and
Serhiy Storchaka [Tue, 22 Dec 2015 22:37:34 +0000 (00:37 +0200)]
Issue #25860: Fixed test failure caused by inconsistency of os.walk() and
os.fwalk() parameter names.

9 years agoIssue #25860: os.fwalk() no longer skips remaining directories when error occurs.
Serhiy Storchaka [Tue, 22 Dec 2015 22:08:24 +0000 (00:08 +0200)]
Issue #25860: os.fwalk() no longer skips remaining directories when error occurs.
Original patch by Samson Lee.

9 years agoIssue #25914: Fixed and simplified OrderedDict.__sizeof__.
Serhiy Storchaka [Tue, 22 Dec 2015 06:16:18 +0000 (08:16 +0200)]
Issue #25914: Fixed and simplified OrderedDict.__sizeof__.

9 years agoIssue #25827: Add support for ICC to configure
Zachary Ware [Mon, 21 Dec 2015 18:09:17 +0000 (12:09 -0600)]
Issue #25827: Add support for ICC to configure

9 years agoIssue #25902: Fixed various refcount issues in ElementTree iteration.
Serhiy Storchaka [Mon, 21 Dec 2015 09:09:48 +0000 (11:09 +0200)]
Issue #25902: Fixed various refcount issues in ElementTree iteration.

9 years agoMerge 3.4.4 from 3.4 to 3.5.
Larry Hastings [Mon, 21 Dec 2015 06:46:30 +0000 (22:46 -0800)]
Merge 3.4.4 from 3.4 to 3.5.

9 years agoMerge.
Larry Hastings [Mon, 21 Dec 2015 06:44:06 +0000 (22:44 -0800)]
Merge.

9 years agoPost-release touchups for Python 3.4.4 final.
Larry Hastings [Mon, 21 Dec 2015 06:42:47 +0000 (22:42 -0800)]
Post-release touchups for Python 3.4.4 final.

9 years agoIssue #25766: Special method __bytes__() now works in str subclasses.
Serhiy Storchaka [Sun, 20 Dec 2015 14:36:34 +0000 (16:36 +0200)]
Issue #25766: Special method __bytes__() now works in str subclasses.

9 years agoFixed sizeof tests for dict and type (they were passed by accident).
Serhiy Storchaka [Sun, 20 Dec 2015 09:39:14 +0000 (11:39 +0200)]
Fixed sizeof tests for dict and type (they were passed by accident).
Added tests for dict views iterators.

9 years agoDon't create non-needed file.
Serhiy Storchaka [Sun, 20 Dec 2015 07:37:52 +0000 (09:37 +0200)]
Don't create non-needed file.

9 years agoAdded tag v3.4.4 for changeset 737efcadf5a6
Larry Hastings [Sun, 20 Dec 2015 03:31:20 +0000 (19:31 -0800)]
Added tag v3.4.4 for changeset 737efcadf5a6

9 years agoRelease bump for Python 3.4.4 final. v3.4.4
Larry Hastings [Sun, 20 Dec 2015 03:31:10 +0000 (19:31 -0800)]
Release bump for Python 3.4.4 final.

9 years agoRebuild pydoc topics for Python 3.4.4 final.
Larry Hastings [Sun, 20 Dec 2015 03:28:52 +0000 (19:28 -0800)]
Rebuild pydoc topics for Python 3.4.4 final.

9 years agoUse correct PyGC_Head size in tests for issue #25421.
Serhiy Storchaka [Sat, 19 Dec 2015 20:49:29 +0000 (22:49 +0200)]
Use correct PyGC_Head size in tests for issue #25421.

9 years agoIssue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka [Sat, 19 Dec 2015 18:05:25 +0000 (20:05 +0200)]
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
This allows sys.getsize() to work correctly with their subclasses with
__slots__ defined.

9 years agoMerge with 3.4
Terry Jan Reedy [Fri, 18 Dec 2015 20:47:13 +0000 (15:47 -0500)]
Merge with 3.4

9 years agoIssue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION MARK.
Terry Jan Reedy [Fri, 18 Dec 2015 20:46:57 +0000 (15:46 -0500)]
Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION MARK.

9 years agoFixed markup and spaces in Misc/NEWS.
Serhiy Storchaka [Fri, 18 Dec 2015 17:36:24 +0000 (19:36 +0200)]
Fixed markup and spaces in Misc/NEWS.

9 years agoIssue #25899: Fixed typo in .bzrignore.
Serhiy Storchaka [Fri, 18 Dec 2015 11:12:33 +0000 (13:12 +0200)]
Issue #25899: Fixed typo in .bzrignore.

9 years agoIssue #25899: Converted non-ASCII characters in docstrings and manpage
Serhiy Storchaka [Fri, 18 Dec 2015 11:05:04 +0000 (13:05 +0200)]
Issue #25899: Converted non-ASCII characters in docstrings and manpage
to ASCII replacements.  Original patch by Chris Angelico.

9 years agoTest UTF-32LE before UTF-16LE since UTF-16LE BOM is a prefix of UTF-32LE BOM.
Serhiy Storchaka [Fri, 18 Dec 2015 08:23:09 +0000 (10:23 +0200)]
Test UTF-32LE before UTF-16LE since UTF-16LE BOM is a prefix of UTF-32LE BOM.

9 years agoIssue #25893: Removed unused variable reqdSize.
Serhiy Storchaka [Fri, 18 Dec 2015 07:54:19 +0000 (09:54 +0200)]
Issue #25893: Removed unused variable reqdSize.
Added test for return code for the last RegQueryValueExW.

9 years agodocs: Document ASYNC/AWAIT tokens (issue #25580)
Yury Selivanov [Thu, 17 Dec 2015 23:26:41 +0000 (18:26 -0500)]
docs: Document ASYNC/AWAIT tokens (issue #25580)

Initial patch by SilentGhost

9 years agoMerge 3.4 into 3.5
Martin Panter [Thu, 17 Dec 2015 10:34:44 +0000 (10:34 +0000)]
Merge 3.4 into 3.5

9 years agoFix a couple of typos in code comments
Martin Panter [Thu, 17 Dec 2015 10:18:28 +0000 (10:18 +0000)]
Fix a couple of typos in code comments

9 years agoMerge 3.4
Yury Selivanov [Thu, 17 Dec 2015 02:31:04 +0000 (21:31 -0500)]
Merge 3.4

9 years agodocs/asyncio: Twek sections names per Nick Coghlan suggestion
Yury Selivanov [Thu, 17 Dec 2015 02:30:52 +0000 (21:30 -0500)]
docs/asyncio: Twek sections names per Nick Coghlan suggestion

9 years agoMerge 3.4
Yury Selivanov [Thu, 17 Dec 2015 01:41:25 +0000 (20:41 -0500)]
Merge 3.4

9 years agoasyncio/tests: Fix a ResourceWarning due to unclosed loop
Yury Selivanov [Thu, 17 Dec 2015 01:41:11 +0000 (20:41 -0500)]
asyncio/tests: Fix a ResourceWarning due to unclosed loop

9 years agoMerge 3.4
Yury Selivanov [Thu, 17 Dec 2015 01:23:37 +0000 (20:23 -0500)]
Merge 3.4

9 years agoasyncio/tests: Fix ResourceWarnings related to unclosed transports
Yury Selivanov [Thu, 17 Dec 2015 01:23:26 +0000 (20:23 -0500)]
asyncio/tests: Fix ResourceWarnings related to unclosed transports

9 years agoMerge 3.4
Yury Selivanov [Thu, 17 Dec 2015 00:51:19 +0000 (19:51 -0500)]
Merge 3.4

9 years agoasyncio/tests: Fix some ResourceWarnings
Yury Selivanov [Thu, 17 Dec 2015 00:51:09 +0000 (19:51 -0500)]
asyncio/tests: Fix some ResourceWarnings

9 years agoMerge 3.4
Yury Selivanov [Thu, 17 Dec 2015 00:40:11 +0000 (19:40 -0500)]
Merge 3.4

9 years agoasyncio/tests: Fix deprecation warning
Yury Selivanov [Thu, 17 Dec 2015 00:40:03 +0000 (19:40 -0500)]
asyncio/tests: Fix deprecation warning

9 years agoMerge 3.4
Yury Selivanov [Thu, 17 Dec 2015 00:35:39 +0000 (19:35 -0500)]
Merge 3.4

9 years agoNormalize whitespace
Yury Selivanov [Thu, 17 Dec 2015 00:35:30 +0000 (19:35 -0500)]
Normalize whitespace

9 years agoMerge 3.4
Yury Selivanov [Thu, 17 Dec 2015 00:31:40 +0000 (19:31 -0500)]
Merge 3.4

9 years agoasyncio: Skip getaddrinfo if host is already resolved.
Yury Selivanov [Thu, 17 Dec 2015 00:31:17 +0000 (19:31 -0500)]
asyncio: Skip getaddrinfo if host is already resolved.

getaddrinfo takes an exclusive lock on some platforms, causing clients to queue
up waiting for the lock if many names are being resolved concurrently. Users
may want to handle name resolution in their own code, for the sake of caching,
using an alternate resolver, or to measure DNS duration separately from
connection duration. Skip getaddrinfo if the "host" passed into
create_connection is already resolved.

See https://github.com/python/asyncio/pull/302 for details.

Patch by A. Jesse Jiryu Davis.

9 years agoIssue #23788: Merge redundant test_bad_address() into test_urllibnet
Martin Panter [Wed, 16 Dec 2015 04:36:20 +0000 (04:36 +0000)]
Issue #23788: Merge redundant test_bad_address() into test_urllibnet

In Python 2, these were duplicated; one for urllib.urlopen() and one for
urllib2.urlopen(). The test_urllibnet version has a better precondition to
avoid false failures with bad DNS, and the test_urllib2_localnet version had
a more up-to-date comment and domain name.

9 years agodocs/asyncio: Update ensure_future & run_coroutine_threadsafe docs
Yury Selivanov [Tue, 15 Dec 2015 05:45:24 +0000 (00:45 -0500)]
docs/asyncio: Update ensure_future & run_coroutine_threadsafe docs

9 years agodocs/whatsnew/3.5: Fix ref link
Yury Selivanov [Tue, 15 Dec 2015 05:38:28 +0000 (00:38 -0500)]
docs/whatsnew/3.5: Fix ref link

9 years agowhatsnew/3.5: Mention new asyncio APIs in 3.5.1
Yury Selivanov [Tue, 15 Dec 2015 05:30:18 +0000 (00:30 -0500)]
whatsnew/3.5: Mention new asyncio APIs in 3.5.1

9 years agoIssue #11072: change the incorrect "deprecation" of ftplib dir() and nlst()
Gregory P. Smith [Mon, 14 Dec 2015 06:10:28 +0000 (22:10 -0800)]
Issue #11072: change the incorrect "deprecation" of ftplib dir() and nlst()
APIs into a note that mlsd() is a nicer API if the server supports
it.  They aren't deprecated, they are all different server commands.
Not all servers support all commands.

9 years ago* Re-fix issue #19284: Don't generate the no-op -R command line
Gregory P. Smith [Mon, 14 Dec 2015 04:09:42 +0000 (20:09 -0800)]
* Re-fix issue #19284: Don't generate the no-op -R command line
  parameter to "enable" the always on sys.flags.hash_randomization
  in _args_from_interpreter_flags() used by multiprocessing and
  some unittests.  This simplifies the code.
* assert_python_ok docstring typo fix.
* Fix test_cmd_line not to fail if PYTHONHASHSEED is set to a fixed seed.

9 years agomerge head
Gregory P. Smith [Mon, 14 Dec 2015 04:06:35 +0000 (20:06 -0800)]
merge head

9 years agoRe-fix issue #19284: Don't generate the no-op -R command line
Gregory P. Smith [Mon, 14 Dec 2015 04:05:55 +0000 (20:05 -0800)]
Re-fix issue #19284: Don't generate the no-op -R command line
parameter to "enable" the always on sys.flags.hash_randomization
in _args_from_interpreter_flags() used by multiprocessing and
some unittests.  This simplifies the code.

9 years agoFix test_cmd_line not to fail if PYTHONHASHSEED is set to a fixed seed
Gregory P. Smith [Mon, 14 Dec 2015 04:01:44 +0000 (20:01 -0800)]
Fix test_cmd_line not to fail if PYTHONHASHSEED is set to a fixed seed
due to test_hash_randomization expecting a different seed per process.

9 years agoassert_python_ok docstring typo fix.
Gregory P. Smith [Mon, 14 Dec 2015 04:00:24 +0000 (20:00 -0800)]
assert_python_ok docstring typo fix.

9 years agoIssue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir() (new try)
Victor Stinner [Sun, 13 Dec 2015 23:21:50 +0000 (00:21 +0100)]
Issue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir() (new try)

9 years agoMerge: #25495: Clarify b2a_base64 documentation vis 57 bytes.
R David Murray [Sun, 13 Dec 2015 23:04:56 +0000 (18:04 -0500)]
Merge: #25495: Clarify b2a_base64 documentation vis 57 bytes.

9 years ago#25495: Clarify b2a_base64 documentation vis 57 bytes.
R David Murray [Sun, 13 Dec 2015 23:04:27 +0000 (18:04 -0500)]
#25495: Clarify b2a_base64 documentation vis 57 bytes.

9 years agoIssue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir()
Victor Stinner [Sun, 13 Dec 2015 20:40:26 +0000 (21:40 +0100)]
Issue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir()

9 years agoIssue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory
Victor Stinner [Sun, 13 Dec 2015 20:26:17 +0000 (21:26 +0100)]
Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory

9 years agoIssue #25696: Fix installation of Python on UNIX with make -j9.
Victor Stinner [Sun, 13 Dec 2015 20:20:36 +0000 (21:20 +0100)]
Issue #25696: Fix installation of Python on UNIX with make -j9.

9 years agoFixes #25844: Corrected =/== typo potentially leading to crash in launcher.
Vinay Sajip [Sun, 13 Dec 2015 09:44:15 +0000 (09:44 +0000)]
Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.

9 years agoFixes #25844: Corrected =/== typo potentially leading to crash in launcher.
Vinay Sajip [Sun, 13 Dec 2015 09:41:29 +0000 (09:41 +0000)]
Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.

9 years agoFixes #25844: Corrected =/== typo potentially leading to crash in launcher.
Vinay Sajip [Sun, 13 Dec 2015 09:41:29 +0000 (09:41 +0000)]
Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.

9 years agoSync asyncio with upstream git repo (conditional import in test_pep492.py).
Guido van Rossum [Sun, 13 Dec 2015 01:01:47 +0000 (17:01 -0800)]
Sync asyncio with upstream git repo (conditional import in test_pep492.py).

9 years agoIssue #19771: Omit irrelevant message if package could not be initialized
Martin Panter [Sat, 12 Dec 2015 06:58:55 +0000 (06:58 +0000)]
Issue #19771: Omit irrelevant message if package could not be initialized

9 years agoIssue #25845: Drop redundant checks leftover from int to long conversion
Martin Panter [Sat, 12 Dec 2015 06:57:13 +0000 (06:57 +0000)]
Issue #25845: Drop redundant checks leftover from int to long conversion

9 years agoIssue #25809: Skip testing platform-dependent French thousands separator
Martin Panter [Sat, 12 Dec 2015 06:53:34 +0000 (06:53 +0000)]
Issue #25809: Skip testing platform-dependent French thousands separator

9 years agoIssue #25809: Skip testing platform-dependent French thousands separator
Martin Panter [Sat, 12 Dec 2015 06:53:34 +0000 (06:53 +0000)]
Issue #25809: Skip testing platform-dependent French thousands separator

9 years agoIssue #25755: Move PropertyWritableDoc into the test case
Berker Peksag [Fri, 11 Dec 2015 21:48:13 +0000 (23:48 +0200)]
Issue #25755: Move PropertyWritableDoc into the test case

This fixes a test failure in refleak mode because
test_property_decorator_doc_writable no longer modifies
the class in module level.

Initial patch by Nan Wu and Torsten Landschoff (from issue 25757)

9 years agoMerge 3.4
Yury Selivanov [Fri, 11 Dec 2015 16:34:11 +0000 (11:34 -0500)]
Merge 3.4

9 years agoasyncio: Make Tasks check if Futures are attached to the same event loop
Yury Selivanov [Fri, 11 Dec 2015 16:33:59 +0000 (11:33 -0500)]
asyncio: Make Tasks check if Futures are attached to the same event loop

See https://github.com/python/asyncio/pull/303 for details