[issue31121] Unable to exit pdb when script becomes invalid

2017-08-05 Thread Xavier de Gaye
Changes by Xavier de Gaye : -- nosy: +xdegaye ___ Python tracker ___ ___ Python-bugs-list

[issue1612262] Class Browser doesn't show internal classes

2017-08-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: I added a more complete set of unit tests to the PR. -- ___ Python tracker ___

[issue31122] SSLContext.wrap_socket() throws OSError with errno == 0

2017-08-05 Thread Nikolaus Rath
Nikolaus Rath added the comment: Regarding "atrocious connection": I wish I knew, but I have no control of the connection. All I can tell is that there are frequent disconnects, occasional latency spikes, my remote ip address seems to change frequently (while the apparent local one stays

[issue31061] asyncio segfault when using threadpool and "_asyncio" native module

2017-08-05 Thread Alexander Mohr
Alexander Mohr added the comment: bad news, I just got a crash in the same place (updating defaultdict) after running for a week with the fixes from this and inada naoki's patches. I think the threadpool may be leaking threads too as I had > 40 threads after running for a week when I use no

[issue31029] test_tokenize fails when run directly

2017-08-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker

[issue31029] test_tokenize fails when run directly

2017-08-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 9cd0ef8f3b93818f0ee5318cb1fc9a1ea32e95b6 by Serhiy Storchaka (Rajath Agasthya) in branch '3.6': bpo-31029: test_tokenize Add missing import unittest (#2998) https://github.com/python/cpython/commit/9cd0ef8f3b93818f0ee5318cb1fc9a1ea32e95b6

[issue31125] shelve.open of temporary file fails with error "anydbm.error: db type could not be determined"

2017-08-05 Thread Stephen Larroque
New submission from Stephen Larroque: This is a followup of issue 23174. When using `shelve.open(tempfile.mkstemp()[1])`, the shelve (or anydbm or dumbdbm) fail with "anydbm.error: db type could not be determined". Instead, the module could detect the file is empty and use it as if it were

[issue31124] ImportError: cannot import name HAS_ALPN

2017-08-05 Thread José Leite
José Leite added the comment: Thank You very much!!! Thumbs up! -- ___ Python tracker ___ ___

[issue31107] copyreg does not properly mangle __slots__ names

2017-08-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue31107] copyreg does not properly mangle __slots__ names

2017-08-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 885ddbb8692ecb2c661aa29000dbde9eff8c by Serhiy Storchaka (Shane Harvey) in branch '2.7': [2.7] bpo-31107: Fix copyreg mangled slot names calculation. (GH-2989). (#3004)

[issue31107] copyreg does not properly mangle __slots__ names

2017-08-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 4795ba857ef2a89e6b477285df961672106a1792 by Serhiy Storchaka (Shane Harvey) in branch '3.6': [3.6] bpo-31107: Fix copyreg mangled slot names calculation. (GH-2989) (#3003)

[issue31124] ImportError: cannot import name HAS_ALPN

2017-08-05 Thread Christian Heimes
Christian Heimes added the comment: Thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue31124] ImportError: cannot import name HAS_ALPN

2017-08-05 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> third party stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker

[issue31124] ImportError: cannot import name HAS_ALPN

2017-08-05 Thread José Leite
José Leite added the comment: Yes, there is such a file. I will report to web2py developers for windows version. Thanks, renamed the file and everything seems fine. -- ___ Python tracker

[issue31103] Windows Installer Product does not include micro version in display name

2017-08-05 Thread Steve Dower
Changes by Steve Dower : -- title: Windows Installer Product Version 3.6.2150.0 Offset By 0.0.150.0 -> Windows Installer Product does not include micro version in display name ___ Python tracker

[issue31103] Windows Installer Product Version 3.6.2150.0 Offset By 0.0.150.0

2017-08-05 Thread Steve Dower
Steve Dower added the comment: This issue is about A. B has a separate issue. C will not be changed. Please don't bother bringing them up again here, it's just a distraction. -- components: +Installation priority: normal -> low type: behavior -> enhancement versions: +Python 3.7

[issue31100] unable to open python on Windows

2017-08-05 Thread Steve Dower
Steve Dower added the comment: This probably means that your system failed to install the C Runtime, but not badly enough that it actually reported an error. First try rebooting, and if that doesn't work then search for the VisualC++ 2015 Redistributable installer and run that. --

[issue31124] ImportError: cannot import name HAS_ALPN

2017-08-05 Thread Christian Heimes
Christian Heimes added the comment: There is no _ssl.py. The internal _ssl module is a C extension module. Under Windows it is called _ssl.pyd. Do you have a _ssl.py or _ssl package in your project that may confict with _ssl.pyd? -- ___ Python

[issue31124] ImportError: cannot import name HAS_ALPN

2017-08-05 Thread José Leite
New submission from José Leite: When Running Web2py with Python 2.7.11 or 2.7.13 in windows 10 I get the following error: Traceback (most recent call last): File "C:\web2py\web2py.py", line 21, in import gluon.widget File "C:\web2py\gluon\widget.py", line 26, in from gluon import main,

[issue9674] make install DESTDIR=/home/blah fails when the prefix specified is /

2017-08-05 Thread Xavier de Gaye
Xavier de Gaye added the comment: Issue 31114 is the same issue and proposes a workaround and another fix. -- nosy: +xdegaye ___ Python tracker ___

[issue31114] 'make install' fails when exec_prefix is '/' and DESTDIR not empty

2017-08-05 Thread Xavier de Gaye
Xavier de Gaye added the comment: In the subprocess test named test_executable_without_cwd and when the test is run on the installed Python, argv[0] is not the python executable and calculate_path() in Modules/getpath.c, as a last resort, searches the directories pointed to by the

[issue31115] Py3.6 threading/reference counting issues with `numexpr`

2017-08-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: If, judging by https://github.com/pydata/numexpr/commit/07d9245d88759f0c3dcabd88e6edefadc3061ee3, you are really calling a bunch of C API functions without holding the GIL, then it's not surprising you may get crashes all over the place. -- nosy:

[issue16865] ctypes arrays >=2GB in length causes exception

2017-08-05 Thread Segev Finer
Changes by Segev Finer : -- pull_requests: +3040 ___ Python tracker ___ ___

[issue29304] dict: simplify lookup functions

2017-08-05 Thread INADA Naoki
INADA Naoki added the comment: On i386 docker image, pyperformance: ./python -m perf compare_to before.json after.json -G --min-speed=2 Slower (4): - regex_dna: 279 ms +- 1 ms -> 288 ms +- 3 ms: 1.03x slower (+3%) - deltablue: 17.9 ms +- 0.3 ms -> 18.3 ms +- 1.0 ms: 1.03x slower (+3%) -

[issue31113] Stack overflow with large program

2017-08-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: By the way, since you're using Python 3, you can probably workaround this issue by delegating some of the work to helper functions using `yield from`. -- ___ Python tracker