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

2019-02-15 Thread Christian Tismer
Christian Tismer added the comment: Thanks for including me here! We have indeed converted everything to new style types but saw no refcount problems, yet. This will probably come after the patch. We will add an issue to the tracker for Python 3.8. --

[issue31829] Portability issues with pickle

2019-02-15 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- versions: +Python 3.8 -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34235] PyArg_ParseTupleAndKeywords: support required keyword arguments

2019-02-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I thought about this variant. The problem is that you need to scan the format string to the end to determine whether arguments following $ are optional or not. This adds performance penalty for all existing uses of PyArg_ParseTupleAndKeywords() with $.

[issue29712] --enable-optimizations does not work with --enable-shared

2019-02-15 Thread Stefan Ring
Stefan Ring added the comment: I was having the same problem, and I just found out what it was: Because of -Wl,-rpath=..., this path gets baked into the binary, and LD_LIBRARY_PATH is ignored. So if you have a previous build lying around there, it will mess up the build. -- nosy:

[issue31829] Portability issues with pickle

2019-02-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I have simplified the PR. Removed the complex code for detecting pickles written to files in text mode on Windows and for adding optional marks for correct detecting. Currently it does only two things: * Escapes \r, \0 and \x1a (end-of-file on Windows)

[issue35998] ./python -m test test_asyncio fails

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: here is the stderr.txt -- Added file: https://bugs.python.org/file48144/stderr.txt ___ Python tracker ___

[issue35998] ./python -m test test_asyncio fails

2019-02-15 Thread Stéphane Wirtel
New submission from Stéphane Wirtel : == ERROR: test_start_tls_server_1 (test.test_asyncio.test_sslproto.SelectorStartTLSTests) -- Traceback (most recent call

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

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Brennan, Normally, you wanted to work on this issue and you have waited for one week after the last message of Maxwell. Do you want to work on this issue and submit your PR? Have a nice day, Stéphane -- ___

[issue28673] pyro4 with more than 15 threads often crashes 2.7.12

2019-02-15 Thread INADA Naoki
INADA Naoki added the comment: I think this issue is fixed by #21963. -- resolution: -> fixed stage: test needed -> resolved status: open -> closed ___ Python tracker ___

[issue34235] PyArg_ParseTupleAndKeywords: support required keyword arguments

2019-02-15 Thread Michael Sullivan
Michael Sullivan added the comment: The point about a performance penalty is fair---my PR does add a search for the '@' (which I spelled as '`' in my example above) sigil whenever it encounters a '|'. (Though I'm not sure how big the impact would be? Format strings are small so a quick scan

[issue35808] Let's retire pgen

2019-02-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I didn't look at the PR yet, but this is a wonderful idea. I planned to do this just after rewriting generators of token-related data and code in Python (issue30455), but Pablo has overfoot me. Great! -- nosy: +serhiy.storchaka

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

2019-02-15 Thread Berry Schoenmakers
Berry Schoenmakers added the comment: I had the same reservations but after rethinking it several times concluded that the modulus argument would fit really well. Indeed, Mathematica doesn't support the Modulus option for the Product[] function. But they don't even support it for the

[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:

[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:

[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

[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

[issue36000] __debug__ is a keyword but not a keyword

2019-02-15 Thread Steven D'Aprano
Steven D'Aprano added the comment: I'm not sure that __debug__ is a proper keyword. Unlike None, if you monkey-patch builtins, you can modify it: py> builtins.__dict__['__debug__'] = 'Surprise!' py> __debug__ 'Surprise!' py> builtins.__dict__['None'] = 'Surprise!' py> None py> And it is

[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:

[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 ___

[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

[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 ___ ___

[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

[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

[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 ___ ___

[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
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 ___

[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

[issue34791] xml package does not obey sys.flags.ignore_environment

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

[issue34791] xml package does not obey sys.flags.ignore_environment

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

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

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset fe42122d41834746e841b5927154be041fb7afbb by Victor Stinner in branch '3.7': bpo-35746: Credit Colin Read and Nicolas Edet (GH-11864) https://github.com/python/cpython/commit/fe42122d41834746e841b5927154be041fb7afbb --

[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:

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

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

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

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

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

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset 355f16fd4beb36d6a18f7d0982581c93de015c17 by Victor Stinner in branch 'master': bpo-35746: Credit Colin Read and Nicolas Edet (GH-11863) https://github.com/python/cpython/commit/355f16fd4beb36d6a18f7d0982581c93de015c17 --

[issue36001] LIBFFI_INCLUDEDIR is not detected when set into a profile nor in ./configure LIBFFI_INCLUDEDIR="path/to/libffi/include"

2019-02-15 Thread neil pop
New submission from neil pop : Hello, I tried making python 3.7.2 on linux mint without libffi set into my LIBFFI_INCLUDEDIR (usr/local/include) but set into my bashsrc which is basically a profile with export LIBFFI_INCLUDEDIR="-Ipath/to/libff/include" however when i try making python after

[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:

[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

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

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

[issue35986] print() documentation typo?

2019-02-15 Thread Cheryl Sabella
Cheryl Sabella added the comment: This was fixed with https://github.com/python/python-docs-theme/pull/25 by @matrixise. -- nosy: +cheryl.sabella resolution: remind -> third party stage: -> resolved status: open -> closed versions: +Python 3.8 ___

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

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

[issue35999] multpirocessing.Process alive after SIGTERM on parent

2019-02-15 Thread Defert
New submission from Defert : Hello, Using the multiprocessing.Process class on Python 3.5 (untested with other versions), child processes are not killed when the main process is killed. The doc mentions a "daemon" flag

[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: +11906 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36000] __debug__ is a keyword but not a keyword

2019-02-15 Thread Dan Snider
New submission from Dan Snider : keyword.py is used by stuff like the idle colorizer to help determine if an identifier is considered a keyword but it doesn't identify __debug__ despite the fact that the parser treats it exactly the same as None, True, and False. I could not find a more

[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)

[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

[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:

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

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

[issue35986] print() documentation typo?

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thanks @cheryl but we need to have a new package of python-docs-theme. -- ___ Python tracker ___

[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

[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

[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] 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 ___

[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:

[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 ___

[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:

[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 ___ ___

[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 ___ ___

[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:

[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

[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 $

[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
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

[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:

[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

[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. --

[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.

[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)

[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

[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 ___

[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 ___

[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 ___

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

2019-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset 826a8b708165796151ad4135b0ddbd79da6d39f1 by Victor Stinner in branch '2.7': bpo-35746: Credit Colin Read and Nicolas Edet (GH-11866) https://github.com/python/cpython/commit/826a8b708165796151ad4135b0ddbd79da6d39f1 --

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

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

[issue34656] [CVE-2018-20406] memory exhaustion in Modules/_pickle.c:1393

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

[issue34656] [CVE-2018-20406] memory exhaustion in Modules/_pickle.c:1393

2019-02-15 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11902 stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list

[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

[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

[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:

[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 ___ ___

[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 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

[issue36004] Add datetime.fromisocalendar

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

[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

[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

[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 Mariatta Wijaya
Change by Mariatta Wijaya : -- versions: -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 ___

[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

[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 ___

[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

[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

  1   2   >