[issue28022] SSL releated deprecation for 3.6

2016-09-08 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue26058] PEP 509: Add ma_version to PyDictObject

2016-09-08 Thread STINNER Victor
STINNER Victor added the comment: The PEP 509 has been approved by Guido, I just pushed the implementation. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue26058] PEP 509: Add ma_version to PyDictObject

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset d43f819caea7 by Victor Stinner in branch 'default': Add a new private version to the builtin dict type https://hg.python.org/cpython/rev/d43f819caea7 -- nosy: +python-dev ___ Python tracker

[issue28022] SSL releated deprecation for 3.6

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: memo to me: check if SSLContext.wrap_socket() can deal with a fileno as sock argument. -- ___ Python tracker ___

[issue20328] mailbox: add method to delete mailbox

2016-09-08 Thread R. David Murray
R. David Murray added the comment: Given that there's been no clarification of the problem being solved in several years, I'm going to reject this. If someone wants to sort it out and improve the patch accordingly we can reopen. -- resolution: -> rejected stage: needs patch -> resolv

[issue28025] Use IntEnum and IntFlags in ssl module

2016-09-08 Thread Ethan Furman
Ethan Furman added the comment: A little more research shows this is a problem with inheriting descriptors. -- ___ Python tracker ___

[issue27985] Implement PEP 526

2016-09-08 Thread Guido van Rossum
Guido van Rossum added the comment: Ivan, I have no idea how to integrate your patch and Yury's. I only use Mercurial here, I don't trust the github clone (how far behind is it?). Please sort this out yourself. I am also going through the review on rietveld again. -- _

[issue14965] super() and property inheritance behavior

2016-09-08 Thread Ethan Furman
Changes by Ethan Furman : -- nosy: +ethan.furman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue15016] Add special case for latin messages in email.mime.text

2016-09-08 Thread R. David Murray
R. David Murray added the comment: The new email API (which was just made non-provisional) uses a "sniff" technique to decide what CTE to use for text bodies set via set_content. So I consider this done (finally). It does not change MIMEText, which is now the legacy API. -- resoluti

[issue28029] Replace and empty strings

2016-09-08 Thread Stéphane Henriot
New submission from Stéphane Henriot: A few days ago, the following behavior surprised me. >>> "".replace("", "prefix", 1) '' >>> "".replace("", "prefix") 'prefix' It seems to me this edge case isn't correctly documented/implemented. I tested with python 2.7, 3.4 and 3.5, I guess it applies fo

[issue28025] Use IntEnum and IntFlags in ssl module

2016-09-08 Thread Ethan Furman
Ethan Furman added the comment: See issue14965. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue12553] Add support for using a default CTE of '8bit' to MIMEText

2016-09-08 Thread R. David Murray
R. David Murray added the comment: This is now done, in the new email API that was just made no longer provisional. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python

[issue20100] epoll docs are not clear with regards to CLOEXEC.

2016-09-08 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, priyapappachan. Here is an updated patch. Since EPOLL_CLOEXEC is the only value that can be passed to epoll_create1(), we can also simplify the implementation a bit. -- nosy: +berker.peksag stage: needs patch -> patch review versio

[issue27966] PEP-397 documents incorrect registry path

2016-09-08 Thread Steve Dower
Steve Dower added the comment: I'd rather not document this anyway, and I'm not sure it's true right now. Since 3.5, there is one MSI for the launcher that will be used into the future and handle the reference counting, so this note is irrelevant and solely of historical interest. --

[issue28029] Replace and empty strings

2016-09-08 Thread SilentGhost
Changes by SilentGhost : -- components: +Interpreter Core stage: -> needs patch versions: +Python 3.5, Python 3.6 ___ Python tracker ___

[issue15352] importlib.h should be regenerated when the marshaling code changes

2016-09-08 Thread Meador Inge
Meador Inge added the comment: Hmmm, not sure why I forgot to apply this myself. Thanks for committing it Eric. -- ___ Python tracker ___ __

[issue28022] SSL releated deprecation for 3.6

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: First draft of a patch: https://github.com/tiran/cpython/commits/feature/ssl_deprecation -- ___ Python tracker ___ __

[issue28025] Use IntEnum and IntFlags in ssl module

2016-09-08 Thread Ethan Furman
Ethan Furman added the comment: Evidently the correct form is: super(SSLContext, SSLContext).options.__set__(self, value) Not sure that's any better. :( -- ___ Python tracker

[issue28029] Replace and empty strings

2016-09-08 Thread Stéphane Henriot
Stéphane Henriot added the comment: For what it's worth, here is the behavior in PyPy 2.2.1 "".replace("", "prefix", 1) 'prefix' "".replace("", "prefix") 'prefix' -- ___ Python tracker __

[issue26331] PEP 515: Tokenizer: allow underscores for grouping in numeric literals

2016-09-08 Thread Brett Cannon
Brett Cannon added the comment: Georg, do you think you will be able to get this in for 3.6b1? If not I can commit it while I'm at the core sprint. I'll wait until tomorrow to see if you reply, otherwise I'm just going to address patch comments and then commit it on your behalf. -- no

[issue28029] Replace and empty strings

2016-09-08 Thread SilentGhost
Changes by SilentGhost : -- keywords: +patch Added file: http://bugs.python.org/file44477/issue28029.diff ___ Python tracker ___ ___ P

[issue28029] Replace and empty strings

2016-09-08 Thread SilentGhost
SilentGhost added the comment: Just the least intrusive patch. Also, to me PyPy behaviour doesn't seem correct. -- nosy: +SilentGhost stage: needs patch -> patch review ___ Python tracker __

[issue27080] Implement the formatting part of PEP 515, '_' in numeric literals.

2016-09-08 Thread Brett Cannon
Brett Cannon added the comment: Latest patch LGTM. If Georg isn't able to get to issue #26331 then I'll commit to tomorrow. Do you want me to commit yours on your behalf right after, Chris to make sure this hits b1? -- nosy: +brett.cannon ___ Python

[issue27080] Implement the formatting part of PEP 515, '_' in numeric literals.

2016-09-08 Thread Brett Cannon
Brett Cannon added the comment: Actually, Chris doesn't have commit privileges so I just will. :) -- ___ Python tracker ___ ___ Python

[issue28019] itertools.count() falls back to fast (integer) mode when step rounds to 1

2016-09-08 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: rhettinger -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue28029] Replace and empty strings

2016-09-08 Thread Stéphane Henriot
Stéphane Henriot added the comment: Thanks for your help. However, I'm not sure I would agree, regarding the correct behavior. I guess the main question is « What is an occurrence? ». Are you not convinced that in, count and find indicate occurrences? To my understanding, the empty string occu

[issue28030] Update the language reference for PEP 468.

2016-09-08 Thread Eric Snow
New submission from Eric Snow: Doc/reference/compound_stmts.rst needs to be updated to reflect the changes from PEP 468. -- assignee: eric.snow components: Documentation messages: 275153 nosy: eric.snow priority: normal severity: normal status: open title: Update the language reference

[issue28029] Replace and empty strings

2016-09-08 Thread Eric N. Vander Weele
Changes by Eric N. Vander Weele : -- nosy: +ericvw ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue28030] Update the language reference for PEP 468.

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset cdbc5ee744a1 by Eric Snow in branch 'default': Issue #28030: Update the language reference for PEP 468. https://hg.python.org/cpython/rev/cdbc5ee744a1 -- nosy: +python-dev ___ Python tracker

[issue28030] Update the language reference for PEP 468.

2016-09-08 Thread Eric Snow
Changes by Eric Snow : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue28025] Use IntEnum and IntFlags in ssl module

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: Too bad, but the ugly variant will suffice. >>> import ssl >>> ctx = ssl.create_default_context() >>> ctx.options >>> ctx.verify_flags >>> ctx.verify_mode Latest patch: https://github.com/tiran/cpython/commits/feature/ssl_enum --

[issue17602] mingw: default sys.path calculations for windows platforms

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6142d2d3c471 by Steve Dower in branch 'default': Issue #1602: Windows console doesn't input or print Unicode (PEP 528) https://hg.python.org/cpython/rev/6142d2d3c471 -- nosy: +python-dev resolution: -> fixed stage: patch review -> resolved

[issue1602] windows console doesn't print or input Unicode

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6142d2d3c471 by Steve Dower in branch 'default': Issue #1602: Windows console doesn't input or print Unicode (PEP 528) https://hg.python.org/cpython/rev/6142d2d3c471 -- nosy: +python-dev ___ Python tracke

[issue27985] Implement PEP 526

2016-09-08 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Guido, I resolved merge conflicts in patch v4 (if it will complain, this could be because of graminit.c or importlib_external.h, just ignore those, they will be regenerated during build). Please take a look and sorry for a delay. -- Added file: http

[issue28025] Use IntEnum and IntFlags in ssl module

2016-09-08 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: -haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue28029] Replace and empty strings

2016-09-08 Thread STINNER Victor
STINNER Victor added the comment: str.replace("", whatever) doesn't make sense. Why not raising an exception in this case? -- nosy: +haypo ___ Python tracker ___ ___

[issue28010] http.client.HTTPConnection.putrequest incorrect arguments

2016-09-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: This patch fixes this. It makes the documentation consistent with the code. -- keywords: +patch nosy: +orsenthil Added file: http://bugs.python.org/file44479/103351.patch ___ Python tracker

[issue19500] Add client-side SSL session resumption

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: This patch implements a workaround for OpenSSL 1.1.0. -- Added file: http://bugs.python.org/file44480/SSL-client-side-SSL-session-resumption.patch ___ Python tracker ___

[issue27985] Implement PEP 526

2016-09-08 Thread Yury Selivanov
Yury Selivanov added the comment: > Please take a look and sorry for a delay. Ivan, I'll be the one merging the patch. Will be looking over it soon. I might fix some nits myself, so if it applies cleanly to the default branch and all tests pass - then I'll handle the rest. Please also run the

[issue27080] Implement the formatting part of PEP 515, '_' in numeric literals.

2016-09-08 Thread Chris Angelico
Chris Angelico added the comment: Thanks Brett! Sounds like a plan. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue26331] PEP 515: Tokenizer: allow underscores for grouping in numeric literals

2016-09-08 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: +ned.deily priority: deferred blocker -> release blocker ___ Python tracker ___ ___ Python-bugs-lis

[issue28031] Update pathlib.resolve() to match os.path.realpath()

2016-09-08 Thread Brett Cannon
Changes by Brett Cannon : -- priority: normal -> deferred blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue26331] PEP 515: Tokenizer: allow underscores for grouping in numeric literals

2016-09-08 Thread Brett Cannon
Changes by Brett Cannon : -- priority: normal -> deferred blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue28031] Update pathlib.resolve() to match os.path.realpath()

2016-09-08 Thread Brett Cannon
New submission from Brett Cannon: See https://mail.python.org/pipermail/python-ideas/2016-September/042203.html . -- components: Library (Lib) messages: 275164 nosy: brett.cannon, serhiy.storchaka priority: normal severity: normal status: open title: Update pathlib.resolve() to match os.

[issue28029] Replace and empty strings

2016-09-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Agreed with Stéphane. Since count() returns 1, resulting string should contain 1 replacement. Using regular expressions: >>> re.sub('', 'x', '') 'x' >>> re.sub('', 'x', '', 1) 'x' -- nosy: +serhiy.storchaka ___ P

[issue27080] Implement the formatting part of PEP 515, '_' in numeric literals.

2016-09-08 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: +ned.deily priority: normal -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing

[issue25856] The __module__ attribute of non-heap classes is not interned

2016-09-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: I think it's better not write into the type dict in a getter. You might just use PyUnicode_InternFromString every time. FWIW, __name__ also has this behavior. -- ___ Python tracker

[issue28010] http.client.HTTPConnection.putrequest incorrect arguments

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset f6b62cf4a436 by Senthil Kumaran in branch '3.5': Issue28010 - Make http.client.HTTPConnection.putrequest documentation consistent with the code. https://hg.python.org/cpython/rev/f6b62cf4a436 New changeset 93c7a893f9b4 by Senthil Kumaran in branch

[issue28029] Replace and empty strings

2016-09-08 Thread R. David Murray
R. David Murray added the comment: Victor: because it would break backward compatibility to raise an error where one wasn't raised before. There's not enough motivation for that. I'm not sure about the 1 case; it would again be a change in behavior. Probably we should just document it as th

[issue28010] http.client.HTTPConnection.putrequest incorrect arguments

2016-09-08 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed versions: +Python 3.6 ___ Python tracker ___ _

[issue27985] Implement PEP 526

2016-09-08 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Thank you Yury, I usually do ./python -m test -R : test___all__ test_dis test_grammar test_opcodes test_parser test_pydoc test_symtable test_tools test_typing and then ./python -m test -j3 -u all I just run tests with -R3:3 it also works. -- ___

[issue28032] --with-lto builds segfault in many situations

2016-09-08 Thread Gregory P. Smith
New submission from Gregory P. Smith: configure --with-optimizations is failing on the Debian --with-optimizations buildbot: http://buildbot.python.org/all/builders/AMD64%20Debian%20PGO%203.x/builds/2448/steps/compile/logs/stdio The compiled python is segfaulting when it goes to run the interp

[issue28031] Update pathlib.resolve() to match os.path.realpath()

2016-09-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Duplicate of issue19717? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28032] --with-lto builds segfault in many situations

2016-09-08 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- nosy: +alecsandru.patrascu stage: -> needs patch type: -> crash ___ Python tracker ___ ___ Python-b

[issue26359] CPython build options for out-of-the box performance

2016-09-08 Thread Gregory P. Smith
Gregory P. Smith added the comment: see https://bugs.python.org/issue28032 for flaws with --with-optimizations builds. -- ___ Python tracker ___

[issue19717] resolve() fails when the path doesn't exist

2016-09-08 Thread Brett Cannon
Brett Cannon added the comment: Guido has kept his opinion that it should resolve until the path no longer exists and then just stop: https://mail.python.org/pipermail/python-ideas/2016-September/042203.html -- nosy: +brett.cannon ___ Python tracker

[issue25856] The __module__ attribute of non-heap classes is not interned

2016-09-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is what my first path does. But this slows down retrieving the __module__ attribute (from 0.2 usec to 0.4 usec on my computer). Maybe I haven't bother. Interning __name__ and __qualname__ is less important, because different functions and classes usuall

[issue19717] resolve() fails when the path doesn't exist

2016-09-08 Thread Brett Cannon
Changes by Brett Cannon : -- priority: normal -> deferred blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue28031] Update pathlib.resolve() to match os.path.realpath()

2016-09-08 Thread Brett Cannon
Brett Cannon added the comment: Yep, it's a duplicate. I updated the other issue with the same link of Guido's decision. -- resolution: -> duplicate status: open -> closed superseder: -> resolve() fails when the path doesn't exist ___ Python tracke

[issue25856] The __module__ attribute of non-heap classes is not interned

2016-09-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: I'm not too worried about slowing down __module__ especially since it's not any slower for heap types or types in builtins. On Thu, Sep 8, 2016, at 14:39, Serhiy Storchaka wrote: > > Serhiy Storchaka added the comment: > > This is what my first path does. B

[issue28032] --with-lto builds segfault in many situations

2016-09-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can we just split --with-optimizations into --with-pgo and --with-lto, and let users choose whichever combination they want? -- nosy: +pitrou ___ Python tracker __

[issue26020] set_display evaluation order doesn't match documented behaviour

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0967531fc762 by Raymond Hettinger in branch '3.5': Issue #26020: Fix evaluation order for set literals https://hg.python.org/cpython/rev/0967531fc762 -- nosy: +python-dev ___ Python tracker

[issue27867] various issues due to misuse of PySlice_GetIndicesEx

2016-09-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yet one possible solution is to make slice constructor converting arguments to exact ints. This allows to leave user code unchanged. But this is 3.6-only solution of course. I would like to know Mark's thoughts on this. -- __

[issue17394] Add slicing support to collections.deque

2016-09-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue14976] queue.Queue() is not reentrant, so signals and GC can cause deadlocks

2016-09-08 Thread mike bayer
mike bayer added the comment: SQLAlchemy suffered from this issue long ago as we use a Queue for connections, which can be collected via weakref callback and sent back to put(), which we observed can occur via gc.For many years (like since 2007 or so) we've packaged a complete copy of Queu

[issue28032] --with-lto builds segfault in many situations

2016-09-08 Thread Gregory P. Smith
Gregory P. Smith added the comment: That is effectively what this devolves to. i'm going to try "gcc and gcc > 5.4" implies --with-lto as part of --with-optimizations for now. but if that causes problems, i'll just remove the --with-lto implication from --with-optimizations entirely. --

[issue28029] Replace and empty strings

2016-09-08 Thread Stéphane Henriot
Stéphane Henriot added the comment: I understand it might be a rather rare case. Nevertheless, don't you think the inconsistency Serhiy pointed out makes it look like a bug needing a fix? -- ___ Python tracker __

[issue27985] Implement PEP 526

2016-09-08 Thread Guido van Rossum
Guido van Rossum added the comment: (I've renamed the patches so they line up with the numbering in the code review tool.) -- ___ Python tracker ___

[issue24254] Make class definition namespace ordered by default

2016-09-08 Thread Eric Snow
Eric Snow added the comment: Note that most of the changes here have been reverted in changeset 103366:a964b8d2324e9f22a66e458ea72e6d5c8c1fcc93. -- ___ Python tracker ___ __

[issue26020] set_display evaluation order doesn't match documented behaviour

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset a8d504600c18 by Raymond Hettinger in branch '2.7': Issue #26020: Fix evaluation order for set literals https://hg.python.org/cpython/rev/a8d504600c18 -- ___ Python tracker

[issue26020] set_display evaluation order doesn't match documented behaviour

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset aa2bf603a9bd by Raymond Hettinger in branch '2.7': Issue #26020: Add news entry https://hg.python.org/cpython/rev/aa2bf603a9bd -- ___ Python tracker __

[issue24254] Make class definition namespace ordered by default

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9aa5424fd1df by Eric Snow in branch 'default': Issue #24254: Drop cls.__definition_order__. https://hg.python.org/cpython/rev/9aa5424fd1df -- ___ Python tracker __

[issue26020] set_display evaluation order doesn't match documented behaviour

2016-09-08 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue24254] Make class definition namespace ordered by default

2016-09-08 Thread Eric Snow
Changes by Eric Snow : -- Removed message: http://bugs.python.org/msg275185 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue28027] Remove Lib/plat-*/* files

2016-09-08 Thread Zachary Ware
Zachary Ware added the comment: None of the buildbots have complained about this (they've been too busy complaining about other things), so I'm closing it. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

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

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0a52c66f31f5 by Christian Heimes in branch 'default': Issue 18550: Check return value of ioctl() / fnctl() in internal_setblocking https://hg.python.org/cpython/rev/0a52c66f31f5 -- nosy: +python-dev ___ P

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

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue27985] Implement PEP 526

2016-09-08 Thread Yury Selivanov
Yury Selivanov added the comment: Ivan, is "hg-pep-526-v5.diff" patch the one I can commit? -- ___ Python tracker ___ ___ Python-bugs-

[issue24254] Make class definition namespace ordered by default

2016-09-08 Thread Ethan Furman
Changes by Ethan Furman : -- nosy: +ethan.furman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue27985] Implement PEP 526

2016-09-08 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Yes, This is the latest patch that I tested and with resolved merge conflicts. -- ___ Python tracker ___ _

[issue13446] imaplib, fetch: improper behaviour on read-only selected mailboxes

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: This patch has been languishing for five year. Do you still like to fix your problem? Please provide a new patch (unified diff) against 3.6. -- nosy: +christian.heimes status: open -> pending versions: +Python 3.6, Python 3.7 -Python 2.6, Python 2.7,

[issue17121] SSH upload for distutils

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: I retract my proposal. We don't need ssh upload any more. -- resolution: -> wont fix stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue28032] --with-lto builds segfault in many situations

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset b77465544f28 by Gregory P. Smith in branch '3.5': issue28032: never imply --with-lto as part of --with-optimizations. https://hg.python.org/cpython/rev/b77465544f28 New changeset 4a50d87808a6 by Gregory P. Smith in branch 'default': issue28032: neve

[issue18329] for line in socket.makefile() speed degradation

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: Is this still a problem in 3.5 and newer? -- status: open -> pending versions: +Python 3.6, Python 3.7 -Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker ___

[issue15631] Python 3.3/3.4 installation issue on OpenSUSE lib/lib64 folders

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: Can we close the ticket or is it still relevant? -- nosy: +christian.heimes status: open -> pending ___ Python tracker ___ ___

[issue28032] --with-lto builds segfault in many situations

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7e89469e4342 by Gregory P. Smith in branch '2.7': issue28032: never imply --with-lto as part of --with-optimizations. https://hg.python.org/cpython/rev/7e89469e4342 -- ___ Python tracker

[issue28032] --with-lto builds segfault in many situations

2016-09-08 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ __

[issue19057] Sometimes urllib2 raises URLError when trying POST with httpS

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: I'm closing this ticket. It's old and hasn't seen any activity in almost three years. -- nosy: +christian.heimes resolution: -> not a bug status: open -> closed ___ Python tracker

[issue19180] some RFC references could be updated

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- stage: -> needs patch type: -> enhancement versions: +Python 3.6, Python 3.7 ___ Python tracker ___ ___

[issue20000] SSLContext.get_ca_certs() and self-signed certs

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- status: open -> pending versions: +Python 3.7 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list

[issue20762] SSLSocket.read() not documented

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: Sounds good, let's deprecate them with #28022. -- superseder: -> SSL releated deprecation for 3.6 versions: +Python 3.6, Python 3.7 -Python 3.5 ___ Python tracker __

[issue20784] 'collections.abc' is no longer defined when collections is imported

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue13856] xmlrpc / httplib changes to allow for certificate verification

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: xmlrpc.client.SafeTransport() accepts a context object. You can pass a SSLContext in to perform cert validation and even client cert auth. -- resolution: -> out of date status: open -> closed ___ Python tracker <

[issue7836] Add /usr/sfw/lib to OpenSSL search path for Solaris.

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: I'm closing this old ticket without patch. Please reopen it with a patch if you still want to change the search path. -- nosy: +christian.heimes resolution: -> out of date status: open -> closed ___ Python tracker

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> out of date status: open -> closed superseder: -> Provide configure option --with-ssl for compilation with custom openssl ___ Python tracker ___

[issue13564] ftplib and sendfile()

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- versions: +Python 3.6, Python 3.7 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue12378] smtplib.SMTP_SSL leaks socket connections on SSL error

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- stage: needs patch -> patch review versions: +Python 3.5, Python 3.6, Python 3.7 -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker ___

[issue12197] non-blocking SSL write fails if a partial write was issued

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- stage: -> needs patch versions: +Python 3.6, Python 3.7 -Python 3.5 ___ Python tracker ___ ___ Pytho

[issue10572] Move test sub-packages to Lib/test

2016-09-08 Thread Christian Heimes
Changes by Christian Heimes : -- versions: +Python 3.6 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue22252] ssl blocking IO errors should inherit BlockingIOError

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: I agree with Antoine, let's not subclass io.BlockingIOError. -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___

<    1   2   3   4   >