[issue30266] AbstractContextManager should support __method__ = None

2017-06-09 Thread Jelle Zijlstra
Jelle Zijlstra added the comment: Thanks for doing the merge and backport! -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue30266] AbstractContextManager should support __method__ = None

2017-06-09 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks Mariatta! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue30266] AbstractContextManager should support __method__ = None

2017-06-09 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: PR has been backported to 3.6. Thanks :) -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker ___

[issue30266] AbstractContextManager should support __method__ = None

2017-06-09 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 753422f6e32e13d96319b090788f0474f1e21fc4 by Mariatta in branch '3.6': bpo-30266: support "= None" pattern in AbstractContextManager (GH-1448) (GH-2054) https://github.com/python/cpython/commit/753422f6e32e13d96319b090788f0474f1e21fc4 -

[issue30266] AbstractContextManager should support __method__ = None

2017-06-09 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2114 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue30266] AbstractContextManager should support __method__ = None

2017-06-09 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- assignee: -> Mariatta nosy: +Mariatta stage: -> backport needed ___ Python tracker ___ ___ Python-bu

[issue30266] AbstractContextManager should support __method__ = None

2017-06-09 Thread Guido van Rossum
Guido van Rossum added the comment: This should be backported to 3.6. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue30266] AbstractContextManager should support __method__ = None

2017-06-09 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 57161aac5eb9bcb0b43e551a1937ff0a84c1ec52 by Guido van Rossum (Jelle Zijlstra) in branch 'master': bpo-30266: support "= None" pattern in AbstractContextManager (#1448) https://github.com/python/cpython/commit/57161aac5eb9bcb0b43e551a1937ff0a84c1

[issue30266] AbstractContextManager should support __method__ = None

2017-05-03 Thread Jelle Zijlstra
Changes by Jelle Zijlstra : -- pull_requests: +1546 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30266] AbstractContextManager should support __method__ = None

2017-05-03 Thread Jelle Zijlstra
New submission from Jelle Zijlstra: Like other ABCs, contextlib.AbstractContextManager should support the pattern where setting a method to None disables structural subtyping, which was introduced across the standard library in issue 25958. Ivan Levkivskyi suggested making AbstractContextManag