[issue36131] test.test_urllib2net.TimeoutTest ftp related tests fail due to ftp://www.pythontest.net/ being unavailable

2019-02-27 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: That was my impression. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue36144] Dictionary addition.

2019-02-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: I believe that Guido rejected this when it was proposed a few years ago. -- nosy: +gvanrossum ___ Python tracker ___ _

[issue36137] SSL verification fails for some sites inside windows docker container

2019-02-27 Thread Mika Fischer
Mika Fischer added the comment: > This is probably a duplicate of #36137. I think you mixed up the issue number, #36137 is this issue. > Windows doesn't have CA certs pre-installed. They are downloaded from the > update server on demand. Python doesn't trigger the update but only uses > cer

[issue13850] Summary tables for argparse add_argument options

2019-02-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: I like the idea of having various summary tables for argparse, but the one in the PR isn't visually attractive or self-explanatory. -- ___ Python tracker ___

[issue36137] SSL verification fails for some sites inside windows docker container

2019-02-27 Thread Mika Fischer
Mika Fischer added the comment: The easiest workaround I found (on Windows 10) is to use ``` certutil -generateSSTFromWU roots.sst && certutil -addstore -f root roots.sst && del roots.sst ``` before using Python... -- ___ Python tracker

[issue33944] Deprecate and remove pth files

2019-02-27 Thread Peter L
Change by Peter L : -- nosy: +Peter L3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue33085] *** Error in `python': double free or corruption (out): 0x00007ff5254d50d0 ***

2019-02-27 Thread chenkai
chenkai <13016135...@163.com> added the comment: OS: (python36) [root@localhost ~]# uname -a Linux localhost.localdomain 3.10.0-862.el7.x86_64 #1 SMP Fri Apr 20 16:44:24 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Python 3.6.5 (default, Feb 28 2019, 01:43:16) [GCC 4.8.5 20150623 (Red Hat 4.8.5-28

[issue36144] Dictionary addition.

2019-02-27 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Python ideas discussion in 2015 : https://mail.python.org/pipermail/python-ideas/2015-February/031748.html LWN summary : https://lwn.net/Articles/635397/ -- nosy: +xtreak ___ Python tracker

[issue33944] Deprecate and remove pth files

2019-02-27 Thread Peter L
Peter L added the comment: +1 for python -v listing .pth files found and loaded. For debugging, I just add a: import sys; print('Loading mypth.pth') to the start of the pth file. A plain print doesn't work(?). breakpoint() doesn't work(?). It would be nice to be able to get the filename (_

[issue36144] Dictionary addition.

2019-02-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I believe it was proposed and rejected multiple times. -- nosy: +serhiy.storchaka ___ Python tracker ___ __

[issue36144] Dictionary addition.

2019-02-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: For the record, I'm opposed to the idea. * Use of the + operator is a temptation to produce new dictionaries rather than update an existing dict in-place which is usually what you want. * We already have ChainMap() which presents a single view of multiple

[issue36144] Dictionary addition.

2019-02-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > * It is natural to expect the plus operator to be commutative, but this > operation would necessarily be non-commutative. In Python, the plus operator for sequences (strings, lists, tuples) is non-commutative. But I have other arguments against it: * I

<    1   2