[issue34602] python3 resource.setrlimit strange behaviour under macOS

2019-04-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +12936 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36751] Changes in the inspect module for PEP 570

2019-04-29 Thread Łukasz Langa
Łukasz Langa added the comment: I'm with Steve on this one. Report positional-only args as regular arguments in the old functions. -- ___ Python tracker ___ __

[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-04-29 Thread Ned Deily
Ned Deily added the comment: Thanks, Inada-san, for the pointer. Closing this as a duplicate of Issue34602 -- resolution: -> duplicate stage: test needed -> resolved status: open -> closed superseder: -> python3 resource.setrlimit strange behaviour under macOS _

[issue34602] python3 resource.setrlimit strange behaviour under macOS

2019-04-29 Thread Ned Deily
Ned Deily added the comment: New changeset fbe2a1394bf52f5a4455681e1b1f705a31559585 by Ned Deily (Miss Islington (bot)) in branch '3.6': bpo-34602: Avoid failures setting macOS stack resource limit (GH-13011) (GH-13014) https://github.com/python/cpython/commit/fbe2a1394bf52f5a4455681e1b1f705

[issue18075] Infinite recursion tests triggering a segfault

2019-04-29 Thread Ned Deily
Ned Deily added the comment: New changeset fbe2a1394bf52f5a4455681e1b1f705a31559585 by Ned Deily (Miss Islington (bot)) in branch '3.6': bpo-34602: Avoid failures setting macOS stack resource limit (GH-13011) (GH-13014) https://github.com/python/cpython/commit/fbe2a1394bf52f5a4455681e1b1f705

[issue36540] PEP 570: Python Positional-Only Parameters

2019-04-29 Thread Łukasz Langa
Łukasz Langa added the comment: +1 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue34602] python3 resource.setrlimit strange behaviour under macOS

2019-04-29 Thread Ned Deily
Ned Deily added the comment: Thanks for the analyses everyone! Also see the discussion in duplicate Issue36432. I was never able to reproduce the failure on earlier versions of macOS but then it seemed to become a hard failure with the release of 10.14.4. I haven't gone back and tried run

[issue36707] The "m" ABI flag of SOABI for pymalloc is no longer needed

2019-04-29 Thread STINNER Victor
STINNER Victor added the comment: > No, you didn't document all the changed file names, See, for instance, > /usr/bin/python3* for a start :) Oh, I see. I was thinking at something else. First I proposed to drop the "d" from the SOABI for debug build, but then I changed my mind. So yeah, I

[issue36674] "unittest.TestCase.debug" should honour "skip" (and other test controls)

2019-04-29 Thread Lisa Roach
Lisa Roach added the comment: +1, I think tests should run the same way in debug() and run(), the difference being limited only to how the result is handled. Marking a test as skipped should still be skipped while debugging, else it pollutes the results with tests that will not run with run

[issue26835] Add file-sealing ops to fcntl

2019-04-29 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +12938 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue36632] test_multiprocessing_forkserver: test_rapid_restart() leaked a dangling process on AMD64 FreeBSD 10-STABLE Non-Debug 3.x

2019-04-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: May be related to this failure: https://buildbot.python.org/all/#/builders/58/builds/2292 -- nosy: +pablogsal ___ Python tracker ___

[issue36751] Changes in the inspect module for PEP 570

2019-04-29 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +12939 stage: -> patch review ___ Python tracker ___ ___ Pytho

[issue36751] Changes in the inspect module for PEP 570

2019-04-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: PR 13016 adds the positional-only arguments together with the regular arguments as suggested by Steve and Łukasz and deprecates getfullargspec() in favour of inspect.signature. -- ___ Python tracker

[issue36742] urlsplit doesn't accept a NFKD hostname with a port number

2019-04-29 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +12940 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue36742] urlsplit doesn't accept a NFKD hostname with a port number

2019-04-29 Thread Steve Dower
Steve Dower added the comment: I found the time to get the first patch. Hopefully backports to 3.6 and 3.7 are easy, but I think 2.7 will take manual steps. Chihiro Ito - if you have other test scenarios, it would be great if you could try them out with the fix in PR 13017. It should be easy

[issue36232] Improve error message on dbm.open

2019-04-29 Thread Brett Cannon
Brett Cannon added the comment: New changeset 81c5a905951aaf46f292eb459c32649c0b74ef61 by Brett Cannon (Marco Rougeth) in branch 'master': bpo-36232: Improve error message on dbm.open() when the db doesn't exist (GH-12060) https://github.com/python/cpython/commit/81c5a905951aaf46f292eb459c32

[issue36755] [2.7] test_httplib leaked [8, 8, 8] references with OpenSSL 1.1.1

2019-04-29 Thread STINNER Victor
New submission from STINNER Victor : AMD64 Fedora Rawhide Refleaks 2.7 buildbot: https://buildbot.python.org/all/#/builders/190/builds/18 test_httplib leaked [8, 8, 8] references, sum=24 When I run the test on my Fedora 29 ("OpenSSL 1.1.1b FIPS 26 Feb 2019"), I can reproduce leak: $ ./pyth

[issue36751] Changes in the inspect module for PEP 570

2019-04-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset d5d2b4546939b98244708e5bb0cfccd55b99d244 by Pablo Galindo in branch 'master': bpo-36751: Deprecate getfullargspec and report positional-only args as regular args (GH-13016) https://github.com/python/cpython/commit/d5d2b4546939b98244708e5

[issue36751] Changes in the inspect module for PEP 570

2019-04-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: PR 13016 is fixed, and I will remove the release blocker, but I will leave it open for now until we can check if there is consensus on the status and future of the inspect module after PEP 570 :) -- priority: release blocker -> normal ___

[issue36751] Changes in the inspect module for PEP 570

2019-04-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: PR 13016 is merged, and I will remove the release blocker, but I will leave it open for now until we can check if there is consensus on the status and future of the inspect module after PEP 570 :) -- ___ Py

[issue36751] Changes in the inspect module for PEP 570

2019-04-29 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- Removed message: https://bugs.python.org/msg341129 ___ Python tracker ___ ___ Python-bugs-list

[issue36735] minimize disk size of cross-compiled python3.6

2019-04-29 Thread Michal Gregorczyk
Michal Gregorczyk added the comment: Thank you. I'm closing and will ask on python-list as suggested -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___

[issue35329] Documentation - capitalization issue

2019-04-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset ee0309f3d83ab9ffa02542bcf45ece84f4fb265e by Benjamin Peterson (Utkarsh Gupta) in branch 'master': closes bpo-35329: Change 'Package' to 'package' in accordance with PEP8. (GH-13008) https://github.com/python/cpython/commit/ee0309f3d83ab9ffa0

[issue35329] Documentation - capitalization issue

2019-04-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +12942 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35329] Documentation - capitalization issue

2019-04-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +12941 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35329] Documentation - capitalization issue

2019-04-29 Thread miss-islington
miss-islington added the comment: New changeset 3e5c4a7c804c3ad76a558e5463655c329aee6437 by Miss Islington (bot) in branch '2.7': closes bpo-35329: Change 'Package' to 'package' in accordance with PEP8. (GH-13008) https://github.com/python/cpython/commit/3e5c4a7c804c3ad76a558e5463655c329aee6

[issue35329] Documentation - capitalization issue

2019-04-29 Thread miss-islington
miss-islington added the comment: New changeset 4b5340bb634be2ee2a40242cdf4e3f7a0b6c757a by Miss Islington (bot) in branch '3.7': closes bpo-35329: Change 'Package' to 'package' in accordance with PEP8. (GH-13008) https://github.com/python/cpython/commit/4b5340bb634be2ee2a40242cdf4e3f7a0b6c7

[issue36674] "unittest.TestCase.debug" should honour "skip" (and other test controls)

2019-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: 1. NO SKIP utest.py with debug prints added and @skipIf initially commented out. --- from unittest import TestCase, skipIf #@skipIf(True, "Skip Testing") class Tests(TestCase): def test_skip(self): "this test will fail - if not skipped" print('assert

[issue36750] test_socket leaks file descriptors on macOS

2019-04-29 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: The test failure is reproducible on the PR 12271 merging master branch on Ubuntu with -R 3:3 test_socket. Sorry, I tried it initially on master thinking it was a master branch problem. I don't see C related code in the PR. There was a merge commit [

[issue36018] Add a Normal Distribution class to the statistics module

2019-04-29 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +12943 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue36018] Add a Normal Distribution class to the statistics module

2019-04-29 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset b0a2c0fa83f9b79616ccf451687096542de1e6f8 by Raymond Hettinger in branch 'master': bpo-36018: Test idempotence. Test two methods against one-another. (GH-13021) https://github.com/python/cpython/commit/b0a2c0fa83f9b79616ccf451687096542de1e6f8

<    1   2