[issue26173] test_ssl.bad_cert_test() exception handling

2016-01-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 14463726a4a0 by Martin Panter in branch '2.7': Issue #26173: Fix test_ssl confusion with non-existing cert and wrongcert.pem https://hg.python.org/cpython/rev/14463726a4a0 -- nosy: +python-dev ___ Python

[issue22363] argparse AssertionError with add_mutually_exclusive_group and help=SUPPRESS

2016-01-28 Thread Martin Panter
Martin Panter added the comment: I left one review comment, but it seems there is more discussion at Issue 17890, which also originally proposed a very similar fix. -- nosy: +martin.panter resolution: -> duplicate stage: -> patch review status: open -> closed superseder: -> argparse:

[issue17890] argparse: mutually exclusive groups full of help-suppressed args can cause AssertionErrors

2016-01-28 Thread Martin Panter
Martin Panter added the comment: See duplicate Issue 22363 for the traceback, and a workaround. There is also a patch there similar to Garrett’s original fix, but using the RE r'%s *%s ?'. I restored the diff from Garrett’s repository, in case it is still useful. Yogesh: I am not familiar with

[issue26236] urllib2 initiate irregular call to gethostbyaddr

2016-01-28 Thread Julia Dolgova
New submission from Julia Dolgova: I'm using python 2.7. My system is windows 7(64-bit). I also use proxy. urllib2.urlopen usually implements 0,2..1sec but sometimes sends a strange UDP to 137 port (netbios-ns) of the remote server, waits 4..6 sec. and then sends HTTP-request. If I disable Net

[issue26189] Interpreter returns control to cmd.exe early

2016-01-28 Thread Eryk Sun
Eryk Sun added the comment: Ensure that the .lnk target is the expected path to python.exe: C:\Temp>py -3 -c ^ More? "from win32com import client^ More? More? lnk = client.Dispatch('WScript.Shell').^ More? CreateShortCut('python.lnk')^ More? More? print('target:\n%s'

[issue26173] test_ssl.bad_cert_test() exception handling

2016-01-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset c75ae81b5058 by Martin Panter in branch '3.5': Issue #26173: Fix test_ssl confusion with non-existing cert and wrongcert.pem https://hg.python.org/cpython/rev/c75ae81b5058 New changeset 284b3de802b7 by Martin Panter in branch 'default': Issue #26173

[issue17890] argparse: mutually exclusive groups full of suppressed args can cause AssertionErrors

2016-01-28 Thread Martin Panter
Changes by Martin Panter : Added file: http://bugs.python.org/file30108/7691d1d4b955.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue26234] The typing module includes 're' and 'io' in __all__

2016-01-28 Thread Guido van Rossum
Guido van Rossum added the comment: I'm no expert on pydoc, but I don't think it should be a reason to keep these two names in __all__; __all__ is there primarily to guide "import *" and it's clear that "from typing import *" overwriting a previously-imported re or io module is a bad idea. But m

[issue26234] The typing module includes 're' and 'io' in __all__

2016-01-28 Thread Guido van Rossum
Guido van Rossum added the comment: Well, PEP 484 and typing.py are provisional. So small changes, even to documented behavior, are fine. (I'm also changing @overload, per the change in PEP 484 that was discussed recently.) Can you suggest a doc change? -- __

[issue26234] The typing module includes 're' and 'io' in __all__

2016-01-28 Thread Martin Panter
Martin Panter added the comment: My concern with pydoc is that currently when you do “python -m pydoc typing” you get stuff like CLASSES builtins.object typing.io typing.re [. . .] io = class typing.io(builtins.object) | Wrapper namespace for IO generi

[issue26206] test_socket.testRecvmsgPeek() timeout on "AMD64 Debian root 3.x" buildbot

2016-01-28 Thread Martin Panter
Martin Panter added the comment: The problem has apparently been fixed at the buildbot end -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker __

<    1   2