[issue31359] `configure` script incorrectly detects symbols as available on Mac w/ Xcode 8+

2017-09-06 Thread Ronald Oussoren
Ronald Oussoren added the comment: An alternative solution, which is more invasive is to explicitly use weak linking, as is already used for some ancient APIs in posixmodule.c (look for "lchown" in Modules/posixmodule.c). This is more invasive, but would be helpful for upstream as well because

[issue31336] Speed up _PyType_Lookup() for class creation

2017-09-06 Thread INADA Naoki
INADA Naoki added the comment: Confirmed: $ ./python-patched -m perf timeit --compare-to `pwd`/python -- 'class C: pass' python: . 11.9 us +- 0.1 us python-patched: . 10.3 us +- 0.1 us Mean +- std dev: [python] 11.9 us +- 0.1 us -> [python-patched] 10.3 us

[issue31362] "async" and "await" are not keyword

2017-09-06 Thread Conor Cal
Conor Cal added the comment: thanks Ammar Askar, I also find this Issue is duplidcate, Issue 26264 has the same question. So I'll just close this oen. -- stage: -> resolved status: open -> closed ___ Python tracker

[issue31363] __PYVENV_LAUNCHER__ breaks calling another venv's interpreter

2017-09-06 Thread Ilya Kulakov
New submission from Ilya Kulakov: There are 2 venvs. One has the pkg_resources (pkgr_venv) package installed, another (venv) doesn't. Venv without pkg_resources is currently active. Works: $ /python -c "import pkg_resources" Doesn't work: $ python -c "import subprocess; subprocess.check_call

[issue31364] Possible problem with PR #3377

2017-09-06 Thread Denis Osipov
New submission from Denis Osipov: It looks like last PR #3377 changing pytime.c (adding #include ) causing problem with compilation. Now on my Win10 i have multiple warnings and errors about ws2def.h, winsock.h and winsock2.h (see attached file). -- components: Windows files: output.tx

[issue31364] Possible problem with PR #3377

2017-09-06 Thread Denis Osipov
Changes by Denis Osipov : -- pull_requests: +3391 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue31353] Implement PEP 553 - built-in debug()

2017-09-06 Thread Ethan Smith
Changes by Ethan Smith : -- nosy: +Ethan Smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue27240] 'UnstructuredTokenList' object has no attribute '_fold_as_ew'

2017-09-06 Thread Raphael Slinckx
Raphael Slinckx added the comment: It happens regularly for emails with long header lines for me too, which makes the python3 email module quite unusable. A workaround which seems to help a bit is to set refold_source='none' on the email policy, although it seems to keep happening, less often.

[issue30403] PEP 547: Running extension modules using -m switch

2017-09-06 Thread Stefan Behnel
Stefan Behnel added the comment: OTOH, if the created "module" is not a module object, then we could argue that the extension implementation is on its own with that case, and has to do its own re-execution safety checks. -- ___ Python tracker

[issue31364] Possible problem with PR #3377

2017-09-06 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue31365] Multiplication issue with 16.1

2017-09-06 Thread Julie
New submission from Julie: Multipy 16.1 by 100 or 1000 returns a result to 13 decimal places. See example - >>> 16.2*1000 16200.0 >>> 16.1*1000 16100.0002 >>> 16.1*100 1610.2 >>> 16.1*10 161.0 >>> 16.2*1000 16200.0 -- assignee: terry.reedy components: IDLE messages

[issue31364] Possible problem with PR #3377

2017-09-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: AppVeyor breaks as well: https://ci.appveyor.com/project/python/cpython/build/3.7.0a0.5986#L200 -- nosy: +pitrou ___ Python tracker ___

[issue31360] argparse mutually_exclusive_group under add_argument_group fails if part of parent_processor

2017-09-06 Thread Martin Panter
Martin Panter added the comment: Seems the same as two other open bugs: Issue 25882 and Issue 16807. -- nosy: +martin.panter resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> argparse help error: arguments created by add_mutually_exclusive_group() are

[issue30316] test_default_timeout() of test_threading.BarrierTests: random failures on AMD64 FreeBSD CURRENT Debug 3.x

2017-09-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: Similar failure on AppVeyor: https://ci.appveyor.com/project/python/cpython/build/3.7.0a0.5987#L1146 -- nosy: +kristjan.jonsson, pitrou, tim.peters ___ Python tracker _

[issue30403] PEP 547: Running extension modules using -m switch

2017-09-06 Thread Petr Viktorin
Petr Viktorin added the comment: Do we have a use case for this? I'd rather avoid making it easy to do the wrong thing, unless it's needed. -- ___ Python tracker ___

[issue31365] Multiplication issue with 16.1

2017-09-06 Thread Martin Panter
Martin Panter added the comment: The floating-point numbers are only accurate to about 16 digits. You probably just found a value that cannot be exactly represented. https://docs.python.org/3.3/faq/design.html#why-are-floating-point-calculations-so-inaccurate -- nosy: +martin.panter re

[issue31365] Multiplication issue with 16.1

2017-09-06 Thread Julie
Julie added the comment: Thank you Martin, makes sense now that I have read the documentation. Julie -- ___ Python tracker ___ ___ Pyt

[issue31330] argparse.RawTextHelpFormatter does not maintain lines separated by more than one newline

2017-09-06 Thread Elena Oat
Elena Oat added the comment: I've created a pull request. Could someone review it please? -- ___ Python tracker ___ ___ Python-bugs-li

[issue31355] Remove Travis CI macOS job: rely on buildbots

2017-09-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I'm not aware of many (any?) instances yet where the Travis macOS instance > has caught a problem. It did help me on some delicate signals/threading issues. -- nosy: +pitrou ___ Python tracker

[issue30403] PEP 547: Running extension modules using -m switch

2017-09-06 Thread Stefan Behnel
Stefan Behnel added the comment: Marcel proposed to disallow main-execution if the extension *might* return anything but a real object (not only if it actually does), but that seems excessive to me. The actual problem is that we consider it unsafe if the module is executed more than once, beca

[issue29781] SSLObject.version returns incorrect value before handshake.

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: New changeset 6da379bde345926e1f7318ead973767f4d791d3e by Christian Heimes in branch '3.6': [3.6] bpo-29781: Fix SSLObject.version before handshake (GH-3364) (#3381) https://github.com/python/cpython/commit/6da379bde345926e1f7318ead973767f4d791d3e -

[issue22559] [2.7] Backport ssl.MemoryBIO to Python 2.7 - PEP 546

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: #29781 must be backported to 2.7 to fix SSLSocket.version() -- dependencies: +SSLObject.version returns incorrect value before handshake. ___ Python tracker _

[issue27340] bytes-like objects with socket.sendall(), SSL, and http.client

2017-09-06 Thread Christian Heimes
Changes by Christian Heimes : -- pull_requests: +3392 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue30867] Add macro `HAVE_OPENSSL_VERIFY_PARAM` to avoid invalid function declaration

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: OpenSSL 0.9.7 and earlier are no longer supported. In fact OpenSSL < 1.0.2 is no longer maintained by upstream OpenSSL developers. 2.7 is known to work with recent releases such as 0.9.8zh. 0.9.7 is definitely out of scope. -- resolution: -> wont fi

[issue30525] Expose SCTs on TLS connections

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: +1 -- stage: -> needs patch type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mai

[issue30437] SSL_shutdown can return meaningless SSL_ERROR_SYSCALL

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: If I understand the man page of SSL_shutdown correctly, than SSL_shutdown() must be called a second time when the first time returned 0. But it does not say how an application shall behave if the second call to SSL_shutdown() also returns 0. OpenSSL does no

[issue30331] TestPOP3_TLSClass: socket.timeout: timed out on AMD64 FreeBSD 10.x Shared 3.x

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: I'm removing the SSL component because it looks like an issue with either tests or buildbot. Please re-add the component if it is a bug in the ssl module. -- components: -SSL ___ Python tracker

[issue31364] Possible problem with PR #3377

2017-09-06 Thread Denis Osipov
Changes by Denis Osipov : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-l

[issue31366] Missing terminator option when using readline with socketserver.StreamRequestHandler

2017-09-06 Thread Thomas Feldmann
New submission from Thomas Feldmann: When using `socketserver.StreamRequestHandler` it should be possible to specify the newline terminator that is passed to `self.connection.makefile()`. This would be greatly appreciated by many people who have to work with network packets ending with `\0`.

[issue19084] No way to use TLS-PSK from python ssl

2017-09-06 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue19084] No way to use TLS-PSK from python ssl

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: This feature request has been idle for almost four years. Although TLS-PSK is nice to have, it is not a priority for protocols such as HTTPS. I neither have time nor motivation to create a patch myself. Therefore I'm closing this issue of lack of activity. P

[issue11943] Add TLS-SRP (RFC 5054) support to ssl, _ssl, http, and urllib

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: This feature request has been idle for five years. Although TLS-SRP is nice to have, it is not a priority for protocols such as HTTPS. I neither have time nor motivation to create a patch myself. Therefore I'm closing this issue of lack of activity. Please f

[issue13403] Option for XMLPRC Server to support HTTPS

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: This issue hasn't seen any serious activity in five years. The patch is outdated, too. Is anybody interested to take it? -- assignee: christian.heimes -> components: -SSL ___ Python tracker

[issue25115] SSL_set_verify_depth not exposed by the ssl module

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: The patch looks fairly simple, but what is your use case? I don't like to clobber the SSLContext with additional features. I have never been in a situation that required me to change the verify depths for chain building. Why do you want to restrict or enlarg

[issue25115] SSL_set_verify_depth not exposed by the ssl module

2017-09-06 Thread Alex Gaynor
Alex Gaynor added the comment: +1 on making sure we have a concrete use case before expanding the API -- nosy: +Alex Gaynor ___ Python tracker ___ ___

[issue28085] SSL: Add client and server protocols for SSLContext

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: The issue is resolved. I'll address the other PROTOCOL constants in my upcoming PEP. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue27240] 'UnstructuredTokenList' object has no attribute '_fold_as_ew'

2017-09-06 Thread R. David Murray
R. David Murray added the comment: I started rewriting the header folder in response to this bug, because the root problem is a bit deeper than just _fold_as_ew being missing. I will probably work on it some more this week, but if I don't think I'm going to get it finished I'll look at putting

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

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: Not a bug in the SSL module. -- assignee: christian.heimes -> components: -SSL versions: +Python 2.7 -Python 3.5 ___ Python tracker ___

[issue31365] Multiplication issue with 16.1

2017-09-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Also, IDLE wraps Python and is not responsible for what Python calculates. -- assignee: terry.reedy -> ___ Python tracker ___ _

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-09-06 Thread Alexander Mohr
Changes by Alexander Mohr : -- nosy: +thehesiod versions: +Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue15464] ssl: add set_msg_callback function

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: I'm reluctant to add new features to the ssl module unless they increase security. The message callback is a debugging hook to analyse handshake and other low level parts of the protocol. -- assignee: christian.heimes -> components: -Extension Modu

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-09-06 Thread Alexander Mohr
Alexander Mohr added the comment: from 3.6: >>> AddrlistClass('John Smith ').getcomment() '' >>> AddrlistClass('John Smith ').getdomain() 'JohnSmith' totally messed up :) -- ___ Python tracker _

[issue31340] Use VS 2017 compiler for build

2017-09-06 Thread Steve Dower
Steve Dower added the comment: New changeset 5fcd5e64eec9ed67613b8fe7356fb8288151ceba by Steve Dower in branch 'master': bpo-31340: Change to building with MSVC v141 (included with Visual Studio 2017) (#3311) https://github.com/python/cpython/commit/5fcd5e64eec9ed67613b8fe7356fb8288151ceba -

[issue31340] Use VS 2017 compiler for build

2017-09-06 Thread Steve Dower
Changes by Steve Dower : -- pull_requests: +3393 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue21649] Mention "Recommendations for Secure Use of TLS and DTLS"

2017-09-06 Thread Christian Heimes
Changes by Christian Heimes : -- pull_requests: +3394 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue31363] __PYVENV_LAUNCHER__ breaks calling another venv's interpreter

2017-09-06 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily, vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue25404] ssl.SSLcontext.load_dh_params() does not handle unicode filenames properly

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: Patch welcome :) -- assignee: christian.heimes -> keywords: +easy (C) ___ Python tracker ___ ___

[issue28191] Support RFC4985 SRVName in SAN name

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: In the future, hostname matching will be handled by OpenSSL. Let's not over-complicate our implementation. -- resolution: -> postponed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue15464] ssl: add set_msg_callback function

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: I talked with other ssl module maintainers. We agreed that the debug callback is out of scope for Python stdlib. The ssl does not try to be an all-encompassing wrapper of OpenSSL. -- resolution: -> rejected stage: patch review -> resolved status: op

[issue26612] test_ssl: use context manager (with) to fix ResourceWarning

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: Victor, are you still interested to fix this issue? -- assignee: christian.heimes -> haypo versions: +Python 3.7 ___ Python tracker ___ __

[issue30437] SSL_shutdown can return meaningless SSL_ERROR_SYSCALL

2017-09-06 Thread Nathaniel Smith
Nathaniel Smith added the comment: My reading of the man page is that if SSL_shutdown returns 0, this means that it succeeded at doing the first phase of shutdown. If there are errors then they should be ignored, because it actually succeeded. If you want to then complete the second phase of s

[issue30912] python 3 git master fails to find libffi and build _ctypes on Mageia v6 x86-64

2017-09-06 Thread Zachary Ware
Zachary Ware added the comment: doko, have you seen/have an opinion on GH-2687? -- nosy: +doko ___ Python tracker ___ ___ Python-bugs-

[issue31178] [EASY] subprocess: TypeError: can't concat str to bytes, in _execute_child()

2017-09-06 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- pull_requests: +3395 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue24538] os.setxattr PermissionError on panfs propagates up causing `copystat`, `copytree`, and `pip install .` to fail unhepfully

2017-09-06 Thread Bart Oldeman
Bart Oldeman added the comment: The issue can be avoided by calling _copyxattr *before* instead of after os.chmod in shutil.copystat. That way the file is still writable. The same issue happens on the Lustre parallel file system, with the lustre.lov extended attribute. -- nosy: +Bart

[issue24538] os.setxattr PermissionError on panfs propagates up causing `copystat`, `copytree`, and `pip install .` to fail unhepfully

2017-09-06 Thread Maxime Boissonneault
Changes by Maxime Boissonneault : -- nosy: +Maxime Boissonneault ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29505] Submit the re, json, & csv modules to oss-fuzz testing

2017-09-06 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset c5bace2bf7874cf47ef56e1d8d19f79ad892eef5 by Gregory P. Smith (Devin Jeanpierre) in branch 'master': bpo-29505: Add fuzz tests for float(str), int(str), unicode(str) (#2878) https://github.com/python/cpython/commit/c5bace2bf7874cf47ef56e1d8d19f79

[issue31140] Insufficient error message with incorrect formated string literal

2017-09-06 Thread Łukasz Langa
Changes by Łukasz Langa : -- pull_requests: +3396 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue29505] Submit the re, json, & csv modules to oss-fuzz testing

2017-09-06 Thread Gregory P. Smith
Gregory P. Smith added the comment: alright, with that in, feel free to figure out the oss-fuzz configuration side and fire things up Devin. :) -- assignee: -> gregory.p.smith ___ Python tracker _

[issue31367] [[]]*int gives x of the same list that cannot be appended to or popped from individually

2017-09-06 Thread Andrew Matte
New submission from Andrew Matte: not a big deal but still -- components: Interpreter Core messages: 301496 nosy: mandrew priority: normal severity: normal status: open title: [[]]*int gives x of the same list that cannot be appended to or popped from individually versions: Python 3.5

[issue31361] Update feedparser.py to prevent theano compiling fail in python3

2017-09-06 Thread R. David Murray
R. David Murray added the comment: You did not follow the request I made on the PR to explain in this issue you opened what is failing and why. Unless you convince us that this is actually a bug in python, we will close the issue and PR. -- ___ Pyt

[issue31367] [[]]*int gives x of the same list that cannot be appended to or popped from individually

2017-09-06 Thread Zachary Ware
Zachary Ware added the comment: https://docs.python.org/3/faq/programming.html#how-do-i-create-a-multidimensional-list -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker

[issue31359] `configure` script incorrectly detects symbols as available on Mac w/ Xcode 8+

2017-09-06 Thread Maxime Belanger
Maxime Belanger added the comment: That'd be even better :). I'll also note that this is slightly worse in Python 3 vs Python 2 as there are way more of these to deal with. -- ___ Python tracker __

[issue28191] Support RFC4985 SRVName in SAN name

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: FYI, I opened an upstream PR in OpenSSL to add SRVName: https://github.com/openssl/openssl/pull/4342 -- ___ Python tracker ___ __

[issue28196] ssl.match_hostname() should check for SRV-ID and URI-ID

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: Let OpenSSL handle this in the future. -- resolution: -> wont fix stage: test needed -> resolved status: open -> closed ___ Python tracker __

[issue28453] SSLObject.selected_alpn_protocol() not documented

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: Yes, please. I'd appreciate a PR with a documentation update. -- versions: +Python 2.7 -Python 3.5 ___ Python tracker ___

[issue28671] SSL server requesting client certificates should send CA list

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: It sounds like a sensible request. Documentation links: https://wiki.openssl.org/index.php/Manual:SSL_CTX_set_client_CA_list(3) https://wiki.openssl.org/index.php/Manual:SSL_load_client_CA_file(3) -- nosy: +alex, dstufft, janssen ___

[issue28671] SSL server requesting client certificates should send CA list

2017-09-06 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> stage: -> needs patch versions: +Python 3.7 ___ Python tracker ___ __

[issue29236] 'an ASCII string of one or more PEM-encoded certificates' needs to be unicode

2017-09-06 Thread Christian Heimes
Changes by Christian Heimes : -- components: -SSL ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-09-06 Thread Alexander Mohr
Alexander Mohr added the comment: looks like these were meant to be internal methods, retracting new issues -- ___ Python tracker ___ __

[issue29413] ssl.SSLSocket.unwrap() is not flexible enough

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: Patches welcome! I don't have resources to work on a patch -- assignee: christian.heimes -> nosy: +alex, dstufft, janssen versions: +Python 3.7 -Python 3.5 ___ Python tracker __

[issue29470] ssl: SNI callbacks should not modify context objects

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: OK, let's update the documentation with a better example. Are you still interested to contribute a simple example? -- assignee: christian.heimes -> docs@python components: +Documentation -SSL nosy: +docs@python resolution: not a bug -> type: crash ->

[issue29588] importing ssl can fail with NameError: name 'PROTOCOL_TLS' is not defined

2017-09-06 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> works for me stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker ___ ___

[issue31368] RWF_NONBLOCK

2017-09-06 Thread YoSTEALTH
New submission from YoSTEALTH: Asynchronous, Non-blocking Buffered File Read "RWF_NONBLOCK" flag for os.open() Link: https://lwn.net/Articles/612483/ https://lwn.net/Articles/613068/ https://lwn.net/Articles/636967/ -- messages: 301508 nosy: YoSTEALTH priority: normal severity: normal

[issue29394] Cannot tunnel TLS connection through TLS connection

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: A documentation update wouldn't hurt, though. -- assignee: christian.heimes -> docs@python components: +Documentation -SSL nosy: +docs@python versions: -Python 3.5 ___ Python tracker

[issue29824] Hostname validation in SSL match_hostname()

2017-09-06 Thread Alex Gaynor
Alex Gaynor added the comment: An additional problem in (2) is that a cert for *.google _is_ legal if the CA can prove that a single organization controls the entire TLD: https://crt.sh/?id=7668286 -- nosy: +Alex Gaynor ___ Python tracker

[issue29824] Hostname validation in SSL match_hostname()

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: Thanks Alex! Let's get not in the business to verify TLDs. -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker _

[issue31120] [2.7] Python 64 bit _ssl compile fails due missing buildinf_amd64.h

2017-09-06 Thread Christian Heimes
Changes by Christian Heimes : -- components: -SSL stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue30381] test_smtpnet.test_connect_using_sslcontext_verified() randomly failed with "smtplib.SMTPServerDisconnected: Connection unexpectedly closed" on AMD64 FreeBSD CURRENT Debug 3.x

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: Probably not a bug in the SSL module -- assignee: christian.heimes -> components: -SSL type: -> behavior ___ Python tracker ___ ___

[issue30912] python 3 git master fails to find libffi and build _ctypes on Mageia v6 x86-64

2017-09-06 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the patch! -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ _

[issue30912] python 3 git master fails to find libffi and build _ctypes on Mageia v6 x86-64

2017-09-06 Thread Zachary Ware
Zachary Ware added the comment: New changeset 6d51b876121e472d4372496d609a26d7e3081c51 by Zachary Ware (Shlomi Fish) in branch 'master': bpo-30912: Don't check the content of ffi.h (GH-2687) https://github.com/python/cpython/commit/6d51b876121e472d4372496d609a26d7e3081c51 --

[issue30737] Update devguide link to the new URL

2017-09-06 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +3397 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue22365] SSLContext.load_verify_locations(cadata) does not accept CRLs

2017-09-06 Thread Christian Heimes
Christian Heimes added the comment: I'd rather not overload cadata with cert and CRL loading. It makes both code and usage messy. How about crldata argument? This would be a new feature, though. -- versions: -Python 3.6 ___ Python tracker

[issue31178] [EASY] subprocess: TypeError: can't concat str to bytes, in _execute_child()

2017-09-06 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 3bad1650a03fdc8cfdd4cce154e1b2c07e3e4fa0 by Gregory P. Smith in branch '3.6': [3.6] bpo-31178: Avoid concatenating bytes with str in subprocess error (GH-3066) (#3388) https://github.com/python/cpython/commit/3bad1650a03fdc8cfdd4cce154e1b2c07e3

[issue31178] [EASY] subprocess: TypeError: can't concat str to bytes, in _execute_child()

2017-09-06 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bu

[issue29212] Python 3.6 logging thread name regression with concurrent.future threads

2017-09-06 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bu

[issue31369] re.RegexFlag is not included in __all__

2017-09-06 Thread Pieter-Jan Briers
New submission from Pieter-Jan Briers: It exists and its flags are exported, but not the direct classes itself. This seems inconsistent to me and fixing it would make things like using static typing on it just a little bit easier. -- components: Regular Expressions messages: 301516 nos

[issue22536] subprocess should include filename in FileNotFoundError exception

2017-09-06 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6, Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker ___

[issue23863] Fix EINTR Socket Module issues in 2.7

2017-09-06 Thread Gregory P. Smith
Gregory P. Smith added the comment: Unassigning because i'm unlikely to get to this in 2.7, it is better to concentrate on ensuring that 3.x stays signal safe. -- assignee: gregory.p.smith -> ___ Python tracker _

[issue31370] Remove support for threads-less builds

2017-09-06 Thread Antoine Pitrou
New submission from Antoine Pitrou: The --without-threads option has a lot of repercussions on the code base, forcing us to maintain specific paths for builds with threads disabled, for no useful purpose. -- components: Build, Interpreter Core messages: 301518 nosy: gregory.p.smith, ha

[issue31370] Remove support for threads-less builds

2017-09-06 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- pull_requests: +3398 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue29396] Re-opening /dev/tty breaks readline

2017-09-06 Thread Martin Panter
Martin Panter added the comment: I think the difference between Python 2 and 3 here is that Python 2’s file objects, including sys.stdin, wrap C library FILE objects, which is supported by the Readline library. However Python 3 has its own kind of file objects, independent of standard C and Re

[issue31370] Remove support for threads-less builds

2017-09-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: See discussion in https://mail.python.org/pipermail/python-dev/2017-September/149156.html -- ___ Python tracker ___ ___

[issue31370] Remove support for threads-less builds

2017-09-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: Question: should we keep Modules/Setup.config.in? It's going to become empty: https://github.com/python/cpython/blob/master/Modules/Setup.config.in -- ___ Python tracker _

[issue31370] Remove support for threads-less builds

2017-09-06 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue31361] Update feedparser.py to prevent theano compiling fail in python3

2017-09-06 Thread Wei-Shun Lo
Wei-Shun Lo added the comment: Hi David, A led, I may try to reproduce this error, but it may take a while. Thanks On Wed, Sep 6, 2017 at 11:31 AM R. David Murray wrote: > > R. David Murray added the comment: > > You did not follow the request I made on the PR to explain in this issue > you

[issue30737] Update devguide link to the new URL

2017-09-06 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker ___ ___

[issue30737] Update devguide link to the new URL

2017-09-06 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 98ceece8f4cd797ec28078b6247529f01549687d by Mariatta (Miss Islington (bot)) in branch '3.6': [3.6] bpo-30737: Update DevGuide links to new URL (GH-3228) (GH-3390) https://github.com/python/cpython/commit/98ceece8f4cd797ec28078b6247529f01549687d

[issue31371] Remove deprecated tkinter.ttx module in 3.7

2017-09-06 Thread Ned Deily
New submission from Ned Deily: Tix is an old Tk widget extension set that has long been superseded by the ttk widgets that were added in Tk 8.5, officially released 10 years ago and since superseded by Tk 8.6. Tix was useful for users of Tk 8.4 but tkinter is no longer built, tested, or suppo

[issue31371] Remove deprecated tkinter.ttx module in 3.7

2017-09-06 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +3399 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue31371] Remove deprecated tkinter.tix module in 3.7

2017-09-06 Thread Zachary Ware
Changes by Zachary Ware : -- title: Remove deprecated tkinter.ttx module in 3.7 -> Remove deprecated tkinter.tix module in 3.7 ___ Python tracker ___ ___

  1   2   >