[issue26867] test_ssl test_options fails on ubuntu 16.04

2016-06-12 Thread Larry Hastings
Larry Hastings added the comment: That does seem like it'd make the test failure go away. But the fix seems a little Ubuntu-specific. Is it reasonable to do that when testing on every platform? -- ___ Python tracker

[issue26867] test_ssl test_options fails on ubuntu 16.04

2016-06-12 Thread Matthias Klose
Matthias Klose added the comment: Description: properly handle Ubuntu's openssl having OP_NO_SSLv3 forced on by default Author: Marc Deslauriers Forwarded: yes, http://bugs.python.org/issue25724 Index: b/Lib/test/test_ssl.py === -

[issue10839] email module should not allow some header field repetitions

2016-06-12 Thread Berker Peksag
Berker Peksag added the comment: I don't think a new API is needed. But we need to promote the policy keyword better in docs. See https://twitter.com/aksiksi/status/741769504817045508 for an example of confusion. I don't know if it's a good idea or API but can we add a 'policy' keyword argume

[issue27025] More human readable generated widget names

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 304c61263ae6 by Serhiy Storchaka in branch 'default': Issue #27025: Generated names for Tkinter widgets are now more meanful https://hg.python.org/cpython/rev/304c61263ae6 -- nosy: +python-dev ___ Python

[issue27025] More human readable generated widget names

2016-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: ` and ^ LGTM. We can change this in any time if it looks bad. -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___

[issue10839] email module should not allow some header field repetitions

2016-06-12 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Jun 12, 2016, at 09:19 PM, Raymond Hettinger wrote: >Would you consider raising an exception at least for the case of a "To:" >header or perhaps a warning or someother failsafe. No, not for compat32 policy. Seriously, I do not want to change the semantics

[issue10839] email module should not allow some header field repetitions

2016-06-12 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Jun 13, 2016, at 12:09 AM, Martin Panter wrote: >I think I would support deprecating the __setitem__() etc methods, perhaps >with a cleanup of the alternatives, e.g. add remove_all(). Also, >__getitem__() is equivalent to get(), which does not raise KeyError

[issue27163] IDLE entry for What's New in Python 3.6

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset a3cffed2c9ad by Terry Jan Reedy in branch 'default': Issue #27163: Add idlelib/IDLE entry to What's New in 3.6. https://hg.python.org/cpython/rev/a3cffed2c9ad -- nosy: +python-dev ___ Python tracker

[issue22558] Missing doc links to source code for Python-coded modules.

2016-06-12 Thread Yoni Lavi
Yoni Lavi added the comment: Created issue 27304 and uploaded a patch. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue27304] Create "Source Code" links in module sections, where relevant

2016-06-12 Thread Yoni Lavi
New submission from Yoni Lavi: This is a follow to #22558. As per Terry's suggestion in #22558, for packages with multiple modules that are all documented on the same page and that currently have a "Source Code" link to an __init__ file (e.g. importlib), we should also add more specific "Sour

[issue27303] [argparse] Unify options in help output

2016-06-12 Thread Memeplex
Memeplex added the comment: Thank you for the tips, Paul. The issue is related to the default behavior but it's always good to know about handy workarounds and extensibility hooks. -- ___ Python tracker __

[issue27186] add os.fspath()

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset f384c5c14488 by Martin Panter in branch 'default': Issue #27186: Skip scandir(bytes) test with os.name == "nt" https://hg.python.org/cpython/rev/f384c5c14488 -- ___ Python tracker

[issue27186] add os.fspath()

2016-06-12 Thread Martin Panter
Martin Panter added the comment: Should the skip logic perhaps check for sys.platform == "win32" instead? The buildbots are still failing. -- ___ Python tracker ___

[issue26292] Raw I/O writelines() broken for non-blocking I/O

2016-06-12 Thread Martin Panter
Martin Panter added the comment: Victor, why did you change the title to specify non-blocking mode? I think blocking mode can also be handled at the same time. I propose: 1. In existing versions (2.7, 3.5): Document that it is undefined what IOBase.writelines() will do if a write() call does

[issue25476] close() behavior on non-blocking BufferedIO objects with sockets

2016-06-12 Thread Martin Panter
Martin Panter added the comment: I propose to reject this. Close() should always close the underlying file descriptor or socket, even if there is a blocking error or other exception. -- resolution: -> rejected status: open -> pending ___ Python trac

[issue27303] [argparse] Unify options in help output

2016-06-12 Thread paul j3
paul j3 added the comment: http://stackoverflow.com/questions/18275023/dont-show-long-options-twice-in-print-help-from-argparse Once answer demonstrates how to change the Formatter: class CustomHelpFormatter(argparse.HelpFormatter): def _format_action_invocation(self, action): if no

[issue27024] IDLE shutdown glitch when started by import

2016-06-12 Thread Mark Roseman
Mark Roseman added the comment: tried this patch on 3.6 as per terry's previous msg; still getting same error in idle test suite on os x -- nosy: +markroseman ___ Python tracker ___

[issue10839] email module should not allow some header field repetitions

2016-06-12 Thread Martin Panter
Martin Panter added the comment: There are already the makings of an alternative API: https://docs.python.org/3.6/library/email.message.html#email.message.Message.add_header There is also replace_header(), but it only replaces the _first_ header field, and leaves later ones untouched. However

[issue24363] httplib fails to handle semivalid HTTP headers

2016-06-12 Thread Martin Panter
Martin Panter added the comment: See also Issue 26686; the same problem, but with parsing RFC5322 header fields, rather than HTTP. -- ___ Python tracker ___

[issue27024] IDLE shutdown glitch when started by import

2016-06-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: I applied to 2.7 after changing the file name. I still get F:\Python\dev\27>pcbuild\python_d.exe -m test.regrtest -ugui test_idle [1/1] test_idle can't invoke "event" command: application has been destroyed while executing "event generate $w <>" (proced

[issue27025] More human readable generated widget names

2016-06-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: I apologize for my mistake, but it is not of much relevance. My preference is based on my subjective reactions on reading both variations. I used tknames.py, which outputs < 20 names, rather than the code that output > 200 names, because the former seems more

[issue27303] [argparse] Unify options in help output

2016-06-12 Thread paul j3
paul j3 added the comment: There are 2 issues here - - how to make the 'choices' list most compact - how to make the multiple option strings display (long and short) more compact, regardless of why the argument part is long. When the choices display is too long, 'metavar' is a handy alternat

[issue27136] sock_connect fails for bluetooth (and probably others)

2016-06-12 Thread A. Jesse Jiryu Davis
A. Jesse Jiryu Davis added the comment: Thanks, I'm not a core dev or I'd try it myself. Yury, do you think that's a good approach, or should I mock getaddrinfo for that test? I fear mocking out too much and accidentally not testing anything, or of making tests that someone *else* could accide

[issue10839] email module should not allow some header field repetitions

2016-06-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: Would you consider raising an exception at least for the case of a "To:" header or perhaps a warning or someother failsafe. Using __setitem__ for appending instead of replacement is surprising and in the case of LetsEncrypt was a small disaster. There is

[issue20674] Update comments in dictobject.c

2016-06-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: Christian, I assigned to you because I thought you had done the SIPhash work that invalidated these comments. Do you know who the right person is? -- ___ Python tracker _

[issue26439] ctypes.util.find_library fails when ldconfig/glibc not available (e.g., AIX)

2016-06-12 Thread aixtools
aixtools added the comment: On 6/12/2016 11:41 AM, Martin Panter wrote: > . > Michael, how are you supposed to apply your latest patch? I have Gnu Patch > 2.7.5, but even in the best case it doesn’t find the files to patch: > > $ patch -p1 -n < python.Lib.ctypes.160608.patch > can't find file to

[issue18369] X509 cert class for ssl module

2016-06-12 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue12623] "universal newlines" subprocess support broken with select- and poll-based communicate()

2016-06-12 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue27303] [argparse] Unify options in help output

2016-06-12 Thread SilentGhost
Changes by SilentGhost : -- versions: +Python 3.6 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue27303] [argparse] Unify options in help output

2016-06-12 Thread Memeplex
Changes by Memeplex : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue27186] add os.fspath()

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1ccd6196115a by Brett Cannon in branch 'default': Issue #27186: add Include/osmodule.h to the proper build rules https://hg.python.org/cpython/rev/1ccd6196115a -- ___ Python tracker

[issue27303] [argparse] Unify options in help output

2016-06-12 Thread Memeplex
New submission from Memeplex: Currently when you specify more than one name for an option (typically short and long versions) each name is listed with its entire arg list. This is annoying for options taking many args or choices, for example: --type {html,pdf,github,blogger}, -t {html,pdf,g

[issue27262] IDLE: move Aqua context menu code to maxosx

2016-06-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Changeset d8a2b6efdd4a, #27239, adds a test of setupApp in test_macosx that fails on any system, in particular mine, when Ned's fix is undone. -- resolution: -> fixed stage: test needed -> resolved status: open -> closed __

[issue27239] Make idlelib.macosx self-contained.

2016-06-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Remove the now unneeded call in htest to _init_tk_type. It was tempting to leave the call for the 'efficiency' of the direct call with the available root, but there is a mental efficiency in removing it and making _init_tk_type completely an internal implemen

[issue27239] Make idlelib.macosx self-contained.

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset d8a2b6efdd4a by Terry Jan Reedy in branch 'default': Issue #27239: Continue refactoring idlelib.macosx and adding macosx tests. https://hg.python.org/cpython/rev/d8a2b6efdd4a -- ___ Python tracker

[issue27300] tempfile.TemporaryFile(): missing errors=... argument

2016-06-12 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue27025] More human readable generated widget names

2016-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Generated names are in lower case. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue27186] add os.fspath()

2016-06-12 Thread Brett Cannon
Brett Cannon added the comment: Thanks for the notice, Martin! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue27186] add os.fspath()

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6a35aa1995ab by Brett Cannon in branch 'default': Issue #27186: skip bytes path test for os.scandir() on Windows https://hg.python.org/cpython/rev/6a35aa1995ab -- ___ Python tracker

[issue27025] More human readable generated widget names

2016-06-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: I based my opinion on trying to actually read and understand the output of tknames.py, with your patch done both ways, in a way that I would do in use. Since class names always begin with upper case, it did not occur to me to read '1' as anything other than '

[issue27302] csv.Sniffer guesses wrong when unquoted fields contain quotes

2016-06-12 Thread Redoute
New submission from Redoute: When delimited text fields are not quoted, but embedded text contains some quoted words, sniff() will guess the wrong delimiter. The attached script contains a simple tab-delimited text where sniff() detects space as delimiter. -- components: Library (Lib)

[issue27301] Incorrect return codes in compile.c

2016-06-12 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- keywords: +patch Added file: http://bugs.python.org/file43367/compile_rc-3.6.patch ___ Python tracker ___ ___

[issue27301] Incorrect return codes in compile.c

2016-06-12 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Macros ADDOP, ADDOP_I, ADDOP_O, etc are used in Python/compile.c for emitting instructions. They make functions where they are used returning 0 on error. But some functions return -1 on error and non-negative integer on success. 0 is legitimate value. In c

[issue27095] Simplify MAKE_FUNCTION

2016-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Pushed with minor changes. Thank you for your contribution Demur! You change to the documentation of EXTENDED_ARG isn't pushed. I would prefer to see it as a part of larger documentation patch in issue26647. After pushing I found a bug (similar bug was exist

[issue27095] Simplify MAKE_FUNCTION

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8a0fe3481c91 by Serhiy Storchaka in branch 'default': Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. https://hg.python.org/cpython/rev/8a0fe3481c91 -- nosy: +python-dev ___ Pytho

[issue9625] argparse: Problem with defaults for variable nargs when using choices

2016-06-12 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: needs patch -> patch review versions: +Python 3.5, Python 3.6 -Python 3.2 ___ Python tracker ___

[issue27227] argparse fails to parse [] when using choices and nargs='*'

2016-06-12 Thread Berker Peksag
Berker Peksag added the comment: Looking at this again, I think we should fix this in issue 9625. -- resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> argparse: Problem with defaults for variable nargs when using choices ___

[issue26721] Avoid socketserver.StreamRequestHandler.wfile doing partial writes

2016-06-12 Thread Martin Panter
Martin Panter added the comment: Forgot to remove the workaround added to 3.5 for wsgiref in Issue 24291 -- Added file: http://bugs.python.org/file43366/buffered-wfile.v4.patch ___ Python tracker __

[issue10839] email module should not allow some header field repetitions

2016-06-12 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Jun 11, 2016, at 09:25 PM, Raymond Hettinger wrote: >I think we should consider this as an API design bug and backport the fix. No, it's deliberate, required, and expected in some cases as RDM explains. Certainly for compat32 policy, this can't change. Oth

[issue26721] Avoid socketserver.StreamRequestHandler.wfile doing partial writes

2016-06-12 Thread Martin Panter
Martin Panter added the comment: Merged with current code, and migrated the interrupted-write test from test_wsgiref into test_socketserver. -- Added file: http://bugs.python.org/file43365/buffered-wfile.v3.patch ___ Python tracker

[issue27136] sock_connect fails for bluetooth (and probably others)

2016-06-12 Thread Martin Panter
Martin Panter added the comment: Okay changing to ::1 might have a decent chance of success. If nobody else comes forward, I can try committing it and see if it fixes the buildbot. -- ___ Python tracker __

[issue15657] Error in Python 3 docs for PyMethodDef

2016-06-12 Thread Berker Peksag
Berker Peksag added the comment: > Then change the value of METH_KEYWORDS from 0x0002 to 0x0003 in 3.6. Here is a patch. -- Added file: http://bugs.python.org/file43364/issue15657_36.diff ___ Python tracker __

[issue27254] UAF in Tkinter module

2016-06-12 Thread Emin Ghuliev
Changes by Emin Ghuliev : -- title: heap overflow in Tkinter module -> UAF in Tkinter module ___ Python tracker ___ ___ Python-bugs-li

[issue27136] sock_connect fails for bluetooth (and probably others)

2016-06-12 Thread A. Jesse Jiryu Davis
A. Jesse Jiryu Davis added the comment: Thanks Martin. That test verifies behavior that I observe in Mac OS 10.10 and other modern platforms: >>> socket.getaddrinfo('::2', 80, socket.AF_INET6, socket.SOCK_STREAM, >>> socket.IPPROTO_TCP) [(30, 1, 6, '', ('::0.0.0.2', 80, 0, 0))] Investigating,

[issue15657] Error in Python 3 docs for PyMethodDef

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset f520ae3b537b by Berker Peksag in branch '2.7': Issue #15657: Delete incorrect statement from PyMethodDef documentation https://hg.python.org/cpython/rev/f520ae3b537b -- ___ Python tracker

[issue15657] Error in Python 3 docs for PyMethodDef

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 367b3f41710a by Berker Peksag in branch '3.5': Issue #15657: Delete incorrect statement from PyMethodDef documentation https://hg.python.org/cpython/rev/367b3f41710a New changeset 7fa4986d8218 by Berker Peksag in branch 'default': Issue #15657: Null

[issue20916] ssl.enum_certificates() will not return all certificates trusted by Windows

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue26862] android: SYS_getdents64 does not need to be defined on android API 21

2016-06-12 Thread Stefan Krah
Stefan Krah added the comment: posixmodule_3.patch looks good to me. Gregory has already approved the approach, so I think you can go ahead and commit this. -- ___ Python tracker __

[issue27095] Simplify MAKE_FUNCTION

2016-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Regenerated for review. -- Added file: http://bugs.python.org/file43363/mkfu5.patch ___ Python tracker ___ ___

[issue27289] test_ftp_timeout fails with EOFError

2016-06-12 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue27289] test_ftp_timeout fails with EOFError

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2e3a5770e5f6 by Berker Peksag in branch '3.5': Issue #27289: Prevent test_urllib2net failures due to EOFError raised by ftplib https://hg.python.org/cpython/rev/2e3a5770e5f6 New changeset fc0e8c7235f1 by Berker Peksag in branch 'default': Issue #272

[issue20916] ssl.enum_certificates() will not return all certificates trusted by Windows

2016-06-12 Thread ppperry
Changes by ppperry : -- components: +Windows nosy: +paul.moore, tim.golden, zach.ware ___ Python tracker ___ ___ Python-bugs-list mail

[issue27095] Simplify MAKE_FUNCTION

2016-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, this is why I wanted first push the patch with BUILD_CONST_KEY_MAP. -- ___ Python tracker ___ ___

[issue16182] readline: Wrong tab completion scope indices in Unicode terminals

2016-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. But the test fails with PYTHONIOENCODING=ascii. $ PYTHONIOENCODING=ascii ./python -m test test_readline Run tests sequentially 0:00:00 [1/1] test_readline test test_readline failed -- Traceback (most recent call last): File "/home/serhiy/py/cpython/Li

[issue27095] Simplify MAKE_FUNCTION

2016-06-12 Thread Demur Rumed
Demur Rumed added the comment: Kind of amusing how visit_argannoation logic went full circle. Makes sense considering pre-mkfu patch the ABI was quite similar on that front -- Added file: http://bugs.python.org/file43362/mkfu5.patch ___ Python tracke

[issue25455] Some repr implementations don't check for self-referential structures

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0323b33894f2 by Serhiy Storchaka in branch '3.5': Issue #25455: Clean up reference loops created in tests for recursive https://hg.python.org/cpython/rev/0323b33894f2 New changeset 688edc946ab9 by Serhiy Storchaka in branch '2.7': Issue #25455: Clea

[issue25455] Some repr implementations don't check for self-referential structures

2016-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Indeed, tests for recursive partial objects create reference loops and don't clean them. Thank you Berker. I'll fix this. -- ___ Python tracker _

[issue27295] heaps library does not have support for max heap

2016-06-12 Thread James Lu
James Lu added the comment: It's not a very pythoniic way to simply negate the value. Plus, the majority of heap users want performance (heap was made for speed), so a C version would be much better. On Sat, Jun 11, 2016 at 4:39 PM, Raymond Hettinger wrote: > > Raymond Hettinger added the com

[issue17239] XML vulnerabilities in Python

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue17239] XML vulnerabilities in Python

2016-06-12 Thread Martin Panter
Changes by Martin Panter : -- dependencies: +Avoid entity expansion attacks in Element Tree, xml.sax and xml.dom fetch DTDs by default ___ Python tracker ___ ___

[issue24869] shlex lineno inaccurate with certain inputs

2016-06-12 Thread Christopher Hoadley
Christopher Hoadley added the comment: This problem makes it impossible to use shlex to parse commands where a newline is intended to separate commands. In the attached sample script, I created two input strings with the same tokens in the same order: the only difference is newlines and space

[issue25455] Some repr implementations don't check for self-referential structures

2016-06-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7859742826b2 by Serhiy Storchaka in branch '2.7': Issue #25455: Backported tests for pickling recursive functools.partial objects. https://hg.python.org/cpython/rev/7859742826b2 -- ___ Python tracker

[issue25455] Some repr implementations don't check for self-referential structures

2016-06-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The patch for io classes needed an update. -- Added file: http://bugs.python.org/file43360/io_recursive_repr2.patch ___ Python tracker ___ ___

[issue27289] test_ftp_timeout fails with EOFError

2016-06-12 Thread Berker Peksag
Berker Peksag added the comment: Just saw this again: http://buildbot.python.org/all/builders/x86-64%20Ubuntu%2015.10%20Skylake%20CPU%203.5/builds/543/steps/test/logs/stdio -- ___ Python tracker __

[issue25455] Some repr implementations don't check for self-referential structures

2016-06-12 Thread Berker Peksag
Berker Peksag added the comment: I'm not sure if 17e78918f608 is relevant but test_gc is failing on several buildbots: * http://buildbot.python.org/all/builders/PPC64%20Fedora%203.5/builds/716 http://buildbot.python.org/all/builders/PPC64%20Fedora%203.5/builds/716/steps/test/logs/stdio * ht

[issue27297] Add support for /dev/random to "secrets"

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue26826] Expose new copy_file_range() syscall in os module.

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue27250] Add os.urandom_block()

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue27272] random.Random should not read 2500 bytes from urandom

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue27266] Always use getrandom() in os.random() on Linux and add block=False parameter to os.urandom()

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue27279] Add random.cryptorandom() and random.pseudorandom, deprecate os.urandom()

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue27293] Summarize issues related to urandom, getrandom etc in secrets documentation

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue27292] Warn users that os.urandom() can return insecure values

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue26867] test_ssl test_options fails on ubuntu 16.04

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue17318] xml.sax and xml.dom fetch DTDs by default

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17405] Add _Py_memset_s() to securely clear memory

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18546] ssl.get_server_certificate like addition for cert chain

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20674] Update comments in dictobject.c

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15464] ssl: add set_msg_callback function

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16632] Enable DEP and ASLR

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18550] internal_setblocking() doesn't check return value of fcntl()

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19328] Improve PBKDF2 documentation

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue16234] Implement correct block_size and tests for HMAC-SHA3

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18369] X509 cert class for ssl module

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20916] ssl.enum_certificates() will not return all certificates trusted by Windows

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16487] Allow ssl certificates to be specified from memory rather than files.

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26471] load_verify_locations(cadata) should load AUX ASN.1 to supported trusted certs

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18233] SSLSocket.getpeercertchain()

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18293] ssl.wrap_socket (cert_reqs=...), getpeercert, and unvalidated certificates

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26122] Isolated mode doesn't ignore PYTHONHASHSEED

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

  1   2   >