[issue36447] test__xxsubinterpreters leaked regards and memory blocks

2019-03-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +eric.snow, vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36447] test__xxsubinterpreters leaked regards and memory blocks

2019-03-27 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : The buildbot x86 Gentoo Refleaks 3.x/546 had detected that test__xxxsubinterpreters is leaking references and blocks: test__xxsubinterpreters leaked [138, 138, 138] references, sum=414 test__xxsubinterpreters leaked [69, 69, 69] memory blocks,

[issue36433] Unhelpful error message in classmethoddescr_call()

2019-03-27 Thread Inada Naoki
Inada Naoki added the comment: See https://github.com/python/cpython/pull/11930 I found this while I wrote tests about error messages. -- ___ Python tracker ___

[issue36433] Unhelpful error message in classmethoddescr_call()

2019-03-27 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: I am curious, how did you find out about this bug? Do you have a concrete use case for directly calling an instance of classmethod_descriptor? Typically, one would write dict.fromkeys(...) instead of dict.__dict__['fromkeys'](dict, ...). -- nosy:

[issue36446] Need Windows x86-64 MSI installer for Python >= 3.x.x

2019-03-27 Thread Slim
New submission from Slim : Currently, Windows MSI installers are only available for Python versions <= 2.7.16. Could you please generate Windows MSI installers also for Python versions >= 3.x.x in order to be able to upgrade from 2.7.16 version to latest 3.x.x version? Indeed, Python 2.7.x

[issue32380] functools.singledispatch interacts poorly with methods

2019-03-27 Thread Inada Naoki
Inada Naoki added the comment: New changeset bc284f0c7a9a7a9a4bf12c680823023a6770ce06 by Inada Naoki in branch 'master': bpo-32380: add "versionadded: 3.8" to singledispatchmethod (GH-12580) https://github.com/python/cpython/commit/bc284f0c7a9a7a9a4bf12c680823023a6770ce06 -- nosy:

[issue36445] bus error in test_gil test on armhf running with 64bit kernel

2019-03-27 Thread Matthias Klose
New submission from Matthias Klose : seen with 3.7,3, not 3.8 alpha3. bus error in test_gil test on armhf with 64bit kernel, one more unaligned access. not seen in debug builds.

[issue32380] functools.singledispatch interacts poorly with methods

2019-03-27 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +12524 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34162] idlelib/NEWS.txt for 3.8.0 (and backports)

2019-03-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +12523 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36407] xml.dom.minidom wrong indentation writing for CDATA section

2019-03-27 Thread Stefan Behnel
Stefan Behnel added the comment: I don't think this should be backported. Pretty-printing is not a production relevant feature, more of a "debugging, diffing and help users see what they get" kind of feature. It's good to have it fixed for the future, but we shouldn't bother users with it

[issue33832] doc Add "magic method" entry to Glossary

2019-03-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: Several hours ago, I read the unittest.mock doc, which uses 'magic methods' to explain MagicMock. So I decided an entry really was needed. Andrés, thanks for sticking with this, -- versions: -Python 3.6 ___

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-03-27 Thread Inada Naoki
Inada Naoki added the comment: I think this issue is duplicate of https://bugs.python.org/issue34602 -- ___ Python tracker ___ ___

[issue29986] Documentation recommends raising TypeError from tp_richcompare

2019-03-27 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: The consensus is clearly to return NotImplemented in this case, also because that's what most builtins do, like the object() example that you mentioned. However, I would rather keep that note and change it to say return NotImplemented. It's an important

[issue36384] ipaddress Should not reject IPv4 addresses with leading zeroes as ambiguously octal

2019-03-27 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36407] xml.dom.minidom wrong indentation writing for CDATA section

2019-03-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +12522 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36407] xml.dom.minidom wrong indentation writing for CDATA section

2019-03-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Should we backport this change? I am not sure. -- ___ Python tracker ___ ___ Python-bugs-list

[issue36431] Use dict unpacking for merging two dicts

2019-03-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I hope the low number of such changes has clearly shown that we do not need the plus operator as yet one way of merging two dicts. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue36431] Use dict unpacking for merging two dicts

2019-03-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset da0847048aa7f934573fa449cea8643def056aa5 by Serhiy Storchaka in branch 'master': bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553) https://github.com/python/cpython/commit/da0847048aa7f934573fa449cea8643def056aa5

<    1   2