[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Ari Krupnik
Change by Ari Krupnik : -- keywords: +patch pull_requests: +7086 stage: test needed -> patch review ___ Python tracker ___ ___ Pytho

[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-06 Thread STINNER Victor
STINNER Victor added the comment: Something else. The bug occurs when CancelIoEx() (on the current overlapped WSARecv()) fails internally with ERROR_NOT_FOUND. According to overlapped.c, it means: /* CancelIoEx returns ERROR_NOT_FOUND if the I/O completed in-between */ HasOverlappedIoComple

[issue33779] Error while installing python 3.6.5 on windows 10

2018-06-06 Thread Siddhartha Bose
Siddhartha Bose added the comment: @steve, I tried to install which gave me access denied error and when i checked it was there in program and features. Let's check on that when I successfully uninstall the two instances already there (3.7.0b5 and 3.6.5) -- _

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Ari Krupnik
Change by Ari Krupnik : -- pull_requests: +7087 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue33778] update Unicode database to 11.0

2018-06-06 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 7c69c1c0fba8c1c8ff3969bce4c1135736a4cc58 by Benjamin Peterson in branch 'master': update to Unicode 11.0.0 (closes bpo-33778) (GH-7439) https://github.com/python/cpython/commit/7c69c1c0fba8c1c8ff3969bce4c1135736a4cc58 -- resolution:

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Ari Krupnik
Ari Krupnik added the comment: I added a test case and a News entry per serhiy.storchaka's request. https://github.com/python/cpython/pull/7465 I agree with fdrake's concerns about DOM's usefulness. DOM is not very Pythonic. I note that as long as Python has a DOM implementation, it follows

[issue33778] update Unicode database to 11.0

2018-06-06 Thread Benjamin Peterson
Benjamin Peterson added the comment: Sure, where do you think such documentation belongs? On Wed, Jun 6, 2018, at 01:46, STINNER Victor wrote: > > STINNER Victor added the comment: > > Benjamin: would you mind to explain how to update Unicode in Python? I > would like to document it, if yo

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Ari Krupnik
Change by Ari Krupnik : -- pull_requests: -7086 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -6157 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: I unlinked bad PR 6462 (against 3.6). PR 7465 is properly formed and should be reviewed. -- ___ Python tracker ___ _

[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-06 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +7089 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Ari Krupnik
Change by Ari Krupnik : -- pull_requests: +7088 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: 2.7 does not get enhancements. When a core dev removes a version, don't re-add without discussion. -- versions: -Python 2.7 ___ Python tracker ___

[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-06 Thread Yury Selivanov
Yury Selivanov added the comment: Would be nice to fix this in 3.7.0 -- components: +Interpreter Core -asyncio nosy: +ned.deily priority: normal -> release blocker type: -> behavior versions: +Python 3.6, Python 3.8 ___ Python tracker

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Ari Krupnik
Ari Krupnik added the comment: My bad. This issue looks like a simple omission to me--albeit one that's been in the code a long time. My patch simply brings the code into compliance with what the documentation (including in 2.7) already says it does. -- _

[issue31202] Windows pathlib.Path.glob(pattern) fixed part of the pattern changed to lowercase whereas it should be unchanged.

2018-06-06 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: Python 2.7 is in security-fix-only mode, and this doesn't fit that. While I wouldn't object to a note in the documentation, see my comments in my patch review (there's just no place for it to go). -- ___ Pyth

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Ned Deily
Ned Deily added the comment: Fred: > Python 2.7 is in security-fix-only mode That's not quite the case yet. We are still accepting bug-fixes for 2.7 although its end-of-life *is* approaching! https://devguide.python.org/#status-of-python-branches -- nosy: +ned.deily __

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: I should stop relying on wetware memory; it's not working out. Sorry for the mis-information. -- ___ Python tracker ___ ___

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: New changeset 5bfa058e65897567889354d7eb34af2b93a20f18 by Fred Drake (arikrupnik) in branch 'master': bpo-33274: Compliance with DOM L1: return removed attribute (#7465) https://github.com/python/cpython/commit/5bfa058e65897567889354d7eb34af2b93a20f18 -

[issue33351] Support compiling with clang-cl on Windows

2018-06-06 Thread Ethan Smith
Ethan Smith added the comment: I sent my patches to clang-cl upstream [1]. It seems they want to implement Hardware Lock Elision (which is used by some MSVC compiler intrinsics in pyatomic.h) before implementing the needed intrinsics. I have found temporary replacements that do not elide loc

[issue30773] async generator receives wrong value when shared between coroutines

2018-06-06 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +7091 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue21196] Name mangling example in Python tutorial

2018-06-06 Thread Ned Deily
Ned Deily added the comment: What should we do with this issue? Raymond, it sounds like you think the proposed PR should not be merged, is that right? If so, should the issue and PR be closed? Other opinions? I would like to resolve this so we can either merge or close PR 5667. Thanks!

[issue33790] Decorated (inner/wrapped) function kwarg defaults dont pass through decorator.

2018-06-06 Thread Salomon
New submission from Salomon : I am seeing an issue when attempting to use default kwargs in decorated functions. I would post reproduction steps, but instead I have written a snippet which should showcase the issue. Snippet: ```python def decorator(): def inner(f): def wrapper(*a

[issue21196] Name mangling example in Python tutorial

2018-06-06 Thread Tim Peters
Tim Peters added the comment: Berker Peksag's change (PR 5667) is very simple and, I think, helpful. -- nosy: +tim.peters ___ Python tracker ___ __

[issue33023] Unable to copy ssl.SSLContext

2018-06-06 Thread Ned Deily
Ned Deily added the comment: We have a languishing PR here. What should be done with it? If I understand correctly, Serhiy is proposing a more general cleanup in Issue33138 PR 6239. If that is merged, can PR 6099 here be simplified? What branches should it apply to? (retargeting for 3.8

[issue30436] importlib.find_spec raises AttributeError when parent is not a package/module

2018-06-06 Thread Ned Deily
Ned Deily added the comment: New changeset fffeb6f3d66f1c844a9327ffe6e2ad8eae8aeb14 by Ned Deily (Zackery Spytz) in branch 'master': bpo-30436: Add missing space in importlib.util.find_spec() error message (GH-7385) https://github.com/python/cpython/commit/fffeb6f3d66f1c844a9327ffe6e2ad8eae8

[issue30436] importlib.find_spec raises AttributeError when parent is not a package/module

2018-06-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +7092 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33790] Decorated (inner/wrapped) function kwarg defaults dont pass through decorator.

2018-06-06 Thread Steven D'Aprano
Steven D'Aprano added the comment: I think you have misunderstood where and when default arguments are assigned. When you call func() with no arguments, kwargs is empty, and it is correct that the output will be -> Decorator: In the following line, you call the original function, f(), agai

[issue33274] minidom removeAttributeNode returns None

2018-06-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Ari, I know that you viewed this as a behavior (bugfix) issue from the start (message 1). I changed to enhancement (feature request) in message 2 because, as you acknowledged in message 3, it is an edge case. The problem is classification can be fuzzy, whi

[issue30436] importlib.find_spec raises AttributeError when parent is not a package/module

2018-06-06 Thread miss-islington
miss-islington added the comment: New changeset d2a2af0df4562f4adb0337a80b27d69167a60c32 by Miss Islington (bot) in branch '3.7': bpo-30436: Add missing space in importlib.util.find_spec() error message (GH-7385) https://github.com/python/cpython/commit/d2a2af0df4562f4adb0337a80b27d69167a60c

[issue33023] Unable to copy ssl.SSLContext

2018-06-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The change to the dup() method looks as a bug fix to me. It needs to be backported to all maintained versions. New tests can be backported to all versions except perhaps 2.7 (not tested). Changes to __getstate__() will be not needed if merge issue33138 PR

<    1   2