[issue24658] open().write() and .read() fails on 2 GB+ data (OS X)

2019-02-15 Thread Ned Deily
Change by Ned Deily : -- assignee: ned.deily -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35746] [ssl][CVE-2019-5010] TALOS-2018-0758 Denial of Service

2019-02-15 Thread Ned Deily
Ned Deily added the comment: New changeset 2a3af94b7e4d7851986043348128e312ddbb2451 by Ned Deily (Victor Stinner) in branch '3.6': bpo-35746: Credit Colin Read and Nicolas Edet (GH-11865) https://github.com/python/cpython/commit/2a3af94b7e4d7851986043348128e312ddbb2451 --

[issue5038] urrlib2/httplib doesn't reset file position between requests

2019-02-15 Thread Martin Panter
Martin Panter added the comment: For 3.7+ (where iterable objects are supported), I suggest: 1. Document the problem as a limitation of handlers like AbstractBasicAuthHandler, and consider raising an exception instead of trying to upload a file or iterable a second time. 2. Clarify the

[issue35899] '_is_sunder' function in 'enum' module fails on empty string

2019-02-15 Thread Brennan D Baraban
Change by Brennan D Baraban <3...@holbertonschool.com>: -- keywords: +patch pull_requests: +11919 stage: needs patch -> patch review ___ Python tracker ___

[issue35798] duplicate SyntaxWarning: "is" with a literal

2019-02-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 4583525835baf8fc7bd49a60725d1e8c49ef92b3 by Serhiy Storchaka in branch 'master': bpo-35798: Fix duplicate SyntaxWarning: "is" with a literal. (GH-11639) https://github.com/python/cpython/commit/4583525835baf8fc7bd49a60725d1e8c49ef92b3

[issue35798] duplicate SyntaxWarning: "is" with a literal

2019-02-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This warning is not special. I'll add a helper for testing that all syntax warnings are emitted only once later. -- ___ Python tracker

[issue34235] PyArg_ParseTupleAndKeywords: support required keyword arguments

2019-02-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > I am missing how my PR changes the current behavior, though? Sorry, I misunderstood your changes to the documentation. Other option is to introduce a special symbol that makes the following parameters required if used after (or instead of) $. Like in

[issue15248] Better explain "TypeError: 'tuple' object is not callable"

2019-02-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 62e4481238b82f111ffb1104a4b97099dd83ae2b by Serhiy Storchaka in branch 'master': bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757)

[issue15248] Better explain "TypeError: 'tuple' object is not callable"

2019-02-15 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35688] "pip install --user numpy" fails on Python from the Windows Store

2019-02-15 Thread Eryk Sun
Eryk Sun added the comment: It may suit the needs of NumPy and SciPy to use an assembly for DLL dependencies. With an assembly it's possible for two DLLs with the same name to load in a process and possible for a DLL to extend the assembly search path with up to nine relative paths at load

[issue34235] PyArg_ParseTupleAndKeywords: support required keyword arguments

2019-02-15 Thread Michael Sullivan
Michael Sullivan added the comment: A downside of the "allow $ twice" approach is that it means splitting up the positional arguments, and a lot of the processing loop is built around the assumption that the index into the keyword list and the index into the argument tuple coincide (for

[issue33618] Support TLS 1.3

2019-02-15 Thread Chih-Hsuan Yen
Change by Chih-Hsuan Yen : -- nosy: -yan12125 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35997] ImportError: dlopen failed: cannot locate symbol "PyBool_Type"

2019-02-15 Thread muhzi
muhzi added the comment: Ah! I used the option -Bsymbolic while linking the extension to make it work and it did, but I figure it is not ideal. I will be checking that patch! -- components: +Extension Modules -Regular Expressions ___ Python

[issue36008] [good first issue] Update documentation for 3.8

2019-02-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Assigning this to me, to be worked on the mentored sprint at PyCon US Cleveland. Thanks. -- assignee: docs@python -> Mariatta nosy: +Mariatta ___ Python tracker

[issue33618] Support TLS 1.3

2019-02-15 Thread Zhiming Wang
Change by Zhiming Wang : -- nosy: +zmwangx ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36008] [good first issue] Update documentation for 3.8

2019-02-15 Thread Cheryl Sabella
New submission from Cheryl Sabella : Please save this issue for a new contributor. If you have previously made a pull request to CPython, consider leaving this issue for someone else. Thanks! Similar to what PR 9501 did for updating references in the docs from 3.6 to 3.7, an update needs

[issue27181] Add geometric mean to `statistics` module

2019-02-15 Thread Cheryl Sabella
Cheryl Sabella added the comment: Updating the version in case this wanted to be considered for 3.8. -- versions: +Python 3.8 -Python 3.7 ___ Python tracker ___

[issue21018] [patch] added missing documentation about escaping characters for configparser

2019-02-15 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36004] Add datetime.fromisocalendar

2019-02-15 Thread Paul Ganssle
Paul Ganssle added the comment: I have a first-pass PR, a few questions to address: 1. Should it take three arguments or a single 3-tuple? (I've gone with 3 arguments) 2. Since all three arguments are required, should we make them positional-only? 3. Should we allow time components in the

[issue35813] shared memory construct to avoid need for serialization between processes

2019-02-15 Thread Davin Potts
Davin Potts added the comment: Regarding the API of the SharedMemory class, its flags, mode, and read_only parameters are not universally enforced or simply not implemented on all platforms that offer POSIX Shared Memory or Windows Named Shared Memory. A simplified API for the SharedMemory

[issue36004] Add datetime.fromisocalendar

2019-02-15 Thread Paul Ganssle
Change by Paul Ganssle : -- keywords: +patch pull_requests: +11918 stage: -> patch review ___ Python tracker ___ ___

[issue36007] python3.8 a1 - docs build requires sphinx 1.7 but uses a 1.8 feature

2019-02-15 Thread Mariatta Wijaya
Change by Mariatta Wijaya : -- versions: -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35886] Move PyInterpreterState into Include/internal/pycore_pystate.h

2019-02-15 Thread Eric Snow
Eric Snow added the comment: Thanks, Victor! python-dev: https://mail.python.org/pipermail/python-dev/2019-February/156344.html Also, my PR already has a What's New entry in the porting section. :) -- ___ Python tracker

[issue36007] python3.8 a1 - docs build requires sphinx 1.7 but uses a 1.8 feature

2019-02-15 Thread miss-islington
miss-islington added the comment: New changeset a16ab00c0b8e126ab82e7cb5098af3ea32d315ff by Miss Islington (bot) (Anthony Sottile) in branch 'master': bpo-36007: Bump minimum sphinx version to 1.8 (GH-11887) https://github.com/python/cpython/commit/a16ab00c0b8e126ab82e7cb5098af3ea32d315ff

[issue36007] python3.8 a1 - docs build requires sphinx 1.7 but uses a 1.8 feature

2019-02-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker ___

[issue30449] Improve __slots__ datamodel documentation

2019-02-15 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36007] python3.8 a1 - docs build requires sphinx 1.7 but uses a 1.8 feature

2019-02-15 Thread Anthony Sottile
Change by Anthony Sottile : -- keywords: +patch pull_requests: +11917 stage: -> patch review ___ Python tracker ___ ___

[issue23077] PEP 1: Allow Provisional status for PEPs

2019-02-15 Thread Cheryl Sabella
Cheryl Sabella added the comment: Closing as third party since this moved to the PEP repository. -- resolution: -> third party stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue32808] subprocess.check_output opens an unwanted command line window after fall creator update

2019-02-15 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36007] python3.8 a1 - docs build requires sphinx 1.7 but uses a 1.8 feature

2019-02-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Let's up the sphinx version. Thanks. -- nosy: +Mariatta ___ Python tracker ___ ___

[issue36007] python3.8 a1 - docs build requires sphinx 1.7 but uses a 1.8 feature

2019-02-15 Thread Anthony Sottile
New submission from Anthony Sottile : doctest `:skipif:` was added in https://github.com/sphinx-doc/sphinx/issues/5273 Used here: https://github.com/python/cpython/blame/36433221f06d649dbd7e13f5fec948be8ffb90af/Doc/library/turtle.rst#L252-L253 Sphinx minimum version configured here:

[issue35810] Object Initialization does not incref Heap-allocated Types

2019-02-15 Thread Eric Snow
Change by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35984] test__xxsubinterpreters leaked [3, 4, 3] memory blocks, sum=1

2019-02-15 Thread Eric Snow
Eric Snow added the comment: Thanks, Alexey. I've merged the PR. As to finding and fixing leaks, I'd welcome any help you have to offer. :) Feel free to open an separate issue. One issue covering all the ones you find should be enough. If you find any non-trivial leaks or other issues

[issue35984] test__xxsubinterpreters leaked [3, 4, 3] memory blocks, sum=1

2019-02-15 Thread miss-islington
miss-islington added the comment: New changeset 36433221f06d649dbd7e13f5fec948be8ffb90af by Miss Islington (bot) (Alexey Izbyshev) in branch 'master': bpo-35984: _xxsubinterpreters: Fix memory leak in _channel_send() (GH-11845)

[issue35459] Use PyDict_GetItemWithError() instead of PyDict_GetItem()

2019-02-15 Thread Eric Snow
Eric Snow added the comment: Thanks, Serhiy. While the benchmark suite is our best tool available for measuring performance, I'm not sure what slowdown is significant in those results. @Victor, any thoughts? -- ___ Python tracker

[issue22213] Make pyvenv style virtual environments easier to configure when embedding Python

2019-02-15 Thread Eric Snow
Eric Snow added the comment: On Wed, Feb 13, 2019 at 5:09 PM Steve Dower wrote: > This is why I'm keen to design the ideal *user* API first (that is, write the > examples of how you would use it) and then figure out how we can make it fit. > It's kind of the opposite approach from what

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread miss-islington
miss-islington added the comment: New changeset 05f41363d4876a63acd8016cbf56b4f4e809e41f by Miss Islington (bot) in branch '3.7': bpo-36006: Fix versionchanged directive alignment in io module documentation (GH-11881)

[issue35931] pdb: "debug print(" crashes with SyntaxError

2019-02-15 Thread daniel hahler
daniel hahler added the comment: Thanks for the review and backport! -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +11914 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue35996] Optional modulus argument for new math.prod() function

2019-02-15 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +tim.peters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22213] Make pyvenv style virtual environments easier to configure when embedding Python

2019-02-15 Thread Eric Snow
Eric Snow added the comment: On Wed, Feb 13, 2019 at 10:56 AM Steve Dower wrote: > Nick, Victor, Eric, (others?) - are you interested in having a virtual > whiteboard session to brainstorm how the "perfect" initialization looks? And > probably a follow-up to brainstorm how to get there

[issue35931] pdb: "debug print(" crashes with SyntaxError

2019-02-15 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the patch! -- nosy: +zach.ware resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker

[issue35931] pdb: "debug print(" crashes with SyntaxError

2019-02-15 Thread miss-islington
miss-islington added the comment: New changeset 6f352199e4447764bc472e34352d0dff4db8a52d by Miss Islington (bot) in branch '3.7': bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782) https://github.com/python/cpython/commit/6f352199e4447764bc472e34352d0dff4db8a52d

[issue35931] pdb: "debug print(" crashes with SyntaxError

2019-02-15 Thread miss-islington
miss-islington added the comment: New changeset 4327705cfab3eb09073ec828570bbd8f789e1611 by Miss Islington (bot) (Daniel Hahler) in branch 'master': bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782)

[issue35931] pdb: "debug print(" crashes with SyntaxError

2019-02-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +11916 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35899] '_is_sunder' function in 'enum' module fails on empty string

2019-02-15 Thread Brennan D Baraban
Brennan D Baraban <3...@holbertonschool.com> added the comment: Yes, I will submit a new PR today. -- ___ Python tracker ___ ___

[issue35931] pdb: "debug print(" crashes with SyntaxError

2019-02-15 Thread Emmanuel Arias
Emmanuel Arias added the comment: ping reviewer :-) I test this PR and work fine on Ubuntu 18.04 -- nosy: +eamanu ___ Python tracker ___

[issue35925] test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster bot (OpenSSL 1.1.1a)

2019-02-15 Thread Gregory P. Smith
Gregory P. Smith added the comment: FWIW I've just manually confirmed that running Python 2.7's test_ssl with OPENSSL_CONF=/invalid-path set passes on the debian buster buildbot host. -- ___ Python tracker

[issue36004] Add datetime.fromisocalendar

2019-02-15 Thread Emmanuel Arias
Emmanuel Arias added the comment: +1 -- nosy: +eamanu ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35925] test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster bot (OpenSSL 1.1.1a)

2019-02-15 Thread Gregory P. Smith
Gregory P. Smith added the comment: release managers are free to defer this blocker. i'm just marking it as such for the purposes of making sure it is a conscious decision. The problem is more likely with our test suite vs the environment than it is with CPython itself. --

[issue35925] test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster bot (OpenSSL 1.1.1a)

2019-02-15 Thread Gregory P. Smith
Change by Gregory P. Smith : -- title: test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster buildbot -> test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster bot (OpenSSL 1.1.1a) ___ Python tracker

[issue35925] test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster buildbot

2019-02-15 Thread Gregory P. Smith
Change by Gregory P. Smith : -- nosy: +benjamin.peterson, ned.deily priority: normal -> release blocker stage: -> needs patch type: -> behavior ___ Python tracker ___

[issue35925] test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster buildbot

2019-02-15 Thread Gregory P. Smith
Gregory P. Smith added the comment: Not on this debian buster bot. look back a couple comments, there is a workaround. it seems to be an OpenSSL configuration issue / test expectations issue. I think we should ultimately get our test suite so that it passes in default OS distro OpenSSL

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread miss-islington
miss-islington added the comment: New changeset 522630a7462f606300f1e6e6818de191d9dc3fdf by Miss Islington (bot) (Emmanuel Arias) in branch 'master': bpo-36006: Fix versionchanged directive alignment in io module documentation (GH-11881)

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +11915 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks! -- nosy: +Mariatta resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35998] test_asyncio: test_start_tls_server_1() TimeoutError on Fedora 29

2019-02-15 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I can confirm that this fails on a fresh fedora 29 VM as of commit 355f16f. The changes in PR 10011 make this test pass. SSL version and OS details $ cat /etc/fedora-release Fedora release 29 (Twenty Nine) $ uname -a Linux

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread Emmanuel Arias
Emmanuel Arias added the comment: I take it -- nosy: +eamanu ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32947] Support OpenSSL 1.1.1

2019-02-15 Thread Chih-Hsuan Yen
Change by Chih-Hsuan Yen : -- nosy: -yan12125 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread Cheryl Sabella
New submission from Cheryl Sabella : In the documentation page for the io module, under the truncate method, there is a version changed directive which is not properly aligned. https://docs.python.org/3/library/io.html#io.IOBase.truncate -- assignee: docs@python components:

[issue33570] OpenSSL 1.1.1 / TLS 1.3 cipher suite changes

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset c3c49ec56890d9d591f8fd1609c8436019f28f96 by Victor Stinner (stratakis) in branch '2.7': [2.7] bpo-33570: Enable OpenSSL 1.1.1 testing within the multissltests (GH-11879)

[issue35928] socket makefile read-write discards received data

2019-02-15 Thread nr
nr added the comment: Added PR 11878, this will pass both this bug report and PR 3918 regression, the commit Ammar noted, it is an addition to this change. -- nosy: +nr ___ Python tracker

[issue35925] test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster buildbot

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: Does test_ssl pass on the master branch? -- nosy: +vstinner ___ Python tracker ___ ___

[issue35998] test_asyncio: test_start_tls_server_1() TimeoutError on Fedora 29

2019-02-15 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Fedora 29 has openssl 1.1.1 which seems to be related. -- nosy: +cstratak ___ Python tracker ___

[issue35998] test_asyncio: test_start_tls_server_1() TimeoutError on Fedora 29

2019-02-15 Thread STINNER Victor
Change by STINNER Victor : -- title: ./python -m test test_asyncio fails -> test_asyncio: test_start_tls_server_1() TimeoutError on Fedora 29 ___ Python tracker ___

[issue36005] [2.7] test_ssl failures on ARMv7 Ubuntu 2.7 with OpenSSL 1.1.1a

2019-02-15 Thread Gregory P. Smith
Gregory P. Smith added the comment: i duped this to the existing issue that was filed after the OS upgrade under the assumption it is the same thing. -- ___ Python tracker

[issue36005] [2.7] test_ssl failures on ARMv7 Ubuntu 2.7 with OpenSSL 1.1.1a

2019-02-15 Thread Gregory P. Smith
Gregory P. Smith added the comment: The buildbot was only offline for a few days while I upgraded the OS. do not look at the _delta_ between builds in the buildbot to determine a failure across that change as it went from ubuntu 14.04 to debian buster. 2.7 doesn't change often. --

[issue36005] [2.7] test_ssl failures on ARMv7 Ubuntu 2.7 with OpenSSL 1.1.1a

2019-02-15 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36005] [2.7] test_ssl failures on ARMv7 Ubuntu 2.7 with OpenSSL 1.1.1a

2019-02-15 Thread Gregory P. Smith
Change by Gregory P. Smith : -- superseder: -> test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster buildbot ___ Python tracker ___

[issue35998] ./python -m test test_asyncio fails

2019-02-15 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Not sure if it's related but there was a similar report on failure in freebsd bots with tls1.3 : issue35031 . Can you please add SSL info with ./python -m test.pythoninfo | grep ssl ? Test runs fine on my ubuntu 16.04 machine with below info $

[issue35997] ImportError: dlopen failed: cannot locate symbol "PyBool_Type"

2019-02-15 Thread Xavier de Gaye
Xavier de Gaye added the comment: It is not yet possible to cross-compile python extensions. The reason is that _init_posix() in Lib/sysconfig.py still reads the sysconfigdata module of the native compiler instead of the sysconfigdata of the cross-built one. See the patch in issue #28833.

[issue32947] Support OpenSSL 1.1.1

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset 2149a9ad7a9d39d7d680ec0fb602042c91057484 by Victor Stinner (stratakis) in branch '2.7': [2.7] bpo-32947: Fixes for TLS 1.3 and OpenSSL 1.1.1 (GH-8761) (GH-11876) https://github.com/python/cpython/commit/2149a9ad7a9d39d7d680ec0fb602042c91057484

[issue35998] ./python -m test test_asyncio fails

2019-02-15 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5038] urrlib2/httplib doesn't reset file position between requests

2019-02-15 Thread nr
nr added the comment: PR 11843 should fix the issue in master, I didn't check python 2.6 or prior versions. The problem is that in the first request sent to HTTP service the POST data is sent correctly. After that the HTTP server responds with 401 and the request is resent but the mmap file

[issue35998] ./python -m test test_asyncio fails

2019-02-15 Thread STINNER Victor
Change by STINNER Victor : -- components: +Tests, asyncio nosy: +asvetlov, yselivanov ___ Python tracker ___ ___ Python-bugs-list

[issue33570] OpenSSL 1.1.1 / TLS 1.3 cipher suite changes

2019-02-15 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- pull_requests: +11913 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35813] shared memory construct to avoid need for serialization between processes

2019-02-15 Thread Davin Potts
Davin Potts added the comment: These questions (originally asked in comments on GH-11816) seemed more appropriate to discuss here: Why should the user want to use `SharedMemory` directly? Why not just go through the manager? Also, perhaps a naive question: don't you _always_ need

[issue36005] [2.7] test_ssl failures on ARMv7 Ubuntu 2.7 with OpenSSL 1.1.1a

2019-02-15 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +cstratak, gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36005] [2.7] test_ssl failures on ARMv7 Ubuntu 2.7 with OpenSSL 1.1.1a

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: It seems like this worker was offline for 1 month: build 324 was 1 month ago, whereas build 325 was 3 hours ago. -- ___ Python tracker ___

[issue35880] math.sin has no backward error; this isn't documented

2019-02-15 Thread Mark Dickinson
Mark Dickinson added the comment: @jneb: Please could you clarify what sort of addition to the documentation you're proposing? Again, it's not clear what you mean by "backward error" here, or what sort of addition would be useful given the divergence of math function behaviours across

[issue35996] Optional modulus argument for new math.prod() function

2019-02-15 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35928] socket makefile read-write discards received data

2019-02-15 Thread nr
Change by nr : -- keywords: +patch pull_requests: +11912 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue36005] [2.7] test_ssl failures on ARMv7 Ubuntu 2.7 with OpenSSL 1.1.1a

2019-02-15 Thread STINNER Victor
New submission from STINNER Victor : Extract of pythoninfo: ssl.HAS_SNI: True ssl.OPENSSL_VERSION: OpenSSL 1.1.1a 20 Nov 2018 ssl.OPENSSL_VERSION_INFO: (1, 1, 1, 1, 15) ssl.OP_ALL: -0x7fac ssl.OP_NO_TLSv1_1: 0x1000 https://buildbot.python.org/all/#/builders/92/builds/325 Many tests

[issue29136] Add OP_NO_TLSv1_3

2019-02-15 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- pull_requests: +11911 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35132] python-gdb error: Python Exception Type does not have a target

2019-02-15 Thread Dylan Cali
Dylan Cali added the comment: > Hum, Dylan: what is your gdb version? $ gdb --version GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1 > On Fedora 29 with gdb 8.2-6.fc29, it seems like .target() is useless I can confirm removing the .target() call in libpython.py resolved the issue for me with

[issue32947] Support OpenSSL 1.1.1

2019-02-15 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- pull_requests: +11910 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36003] set better defaults for TCPServer options

2019-02-15 Thread Giampaolo Rodola'
Change by Giampaolo Rodola' : -- keywords: +patch pull_requests: +11908 stage: -> patch review ___ Python tracker ___ ___

[issue36004] Add datetime.fromisocalendar

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: +1 -- nosy: +matrixise ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36004] Add datetime.fromisocalendar

2019-02-15 Thread Paul Ganssle
New submission from Paul Ganssle : Datetime has many methods that "serializes" an instance to some other format - toordinal, timestamp, isoformat, etc. Most methods that "serialize" a datetime have a corresponding method that "deserializes" that method, or another way to reverse the

[issue28043] Sane defaults for SSLContext options and ciphers

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset b8eaec697a2b5d9d2def2950a0aa50e8ffcf1059 by Victor Stinner (stratakis) in branch '2.7': [2.7] bpo-28043: improved default settings for SSLContext (GH-10608) https://github.com/python/cpython/commit/b8eaec697a2b5d9d2def2950a0aa50e8ffcf1059

[issue36003] set better defaults for TCPServer options

2019-02-15 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Update: because "request_queue_size" is passed to server_activate() method which can be subclassed, a better default for not breaking backward compatibility is 0 (not None). -- ___ Python tracker

[issue35986] print() documentation typo?

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: not in the CPython repo, just ask to regenerate the PyPI package. thanks -- ___ Python tracker ___

[issue36003] set better defaults for TCPServer options

2019-02-15 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola' : socketserver.TCPServer provides the following defaults: allow_reuse_address = False request_queue_size = 5 Proposal is to: * have "allow_reuse_address = True" on POSIX in order to immediately reuse previous sockets which were bound on the same address

[issue35986] print() documentation typo?

2019-02-15 Thread Cheryl Sabella
Cheryl Sabella added the comment: Yes, but I thought that would be up to @theacodes to release a new version of python-docs-theme to PyPI? Since the last release was 6 months ago and the previous one to that was February 2018, I was hoping the new release would come soon. In any event, I

[issue36002] configure --enable-optimizations with clang fails to detect llvm-profdata

2019-02-15 Thread Martijn Pieters
New submission from Martijn Pieters : This is probably a automake bug. When running CC=clang CXX=clang++ ./configure --enable-optimizations, configure tests for a non-existing -llvm-profdata binary: checking for --enable-optimizations... yes checking for --with-lto... no checking for

[issue33570] OpenSSL 1.1.1 / TLS 1.3 cipher suite changes

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset c49f63c1761ce03df7850b9e0b31a18c432dac64 by Victor Stinner (stratakis) in branch '2.7': [2.7] bpo-33570: TLS 1.3 ciphers for OpenSSL 1.1.1 (GH-6976) (GH-8760) (GH-10607)

[issue35688] "pip install --user numpy" fails on Python from the Windows Store

2019-02-15 Thread mattip
mattip added the comment: Closing. It seems the days of modifying os.environ['PATH'] on windows are over, and packages need to adopt to calling AddDllDirectory. As long as python is built with ctypes, this is easy enough to adopt, even though there are some caveats. See the issue from

[issue35411] FTP tests of test_urllib2net fail on Travis CI: 425 Security: Bad IP connecting.

2019-02-15 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11907 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33376] [pysqlite] Duplicate rows can be returned after rolling back a transaction

2019-02-15 Thread Ma Lin
Change by Ma Lin : -- nosy: +Ma Lin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36000] __debug__ is a keyword but not a keyword

2019-02-15 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

  1   2   >