[issue41988] No hyphen in broken up word in documentation

2020-10-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Perhaps send the screenshot to the Brave devs, along with the doc url. -- ___ Python tracker ___

[issue2190] MozillaCookieJar ignores HttpOnly cookies

2020-10-19 Thread Roundup Robot
Change by Roundup Robot : -- nosy: +python-dev nosy_count: 7.0 -> 8.0 pull_requests: +21754 pull_request: https://github.com/python/cpython/pull/22798 ___ Python tracker ___ ___

[issue40133] Provide additional matchers for unittest.mock

2020-10-19 Thread Gregory P. Smith
Gregory P. Smith added the comment: based on the reaction from those who own mock at this point, i'm going to close this. shipping more handy mock matchers with mock makes sense to me as they belong together. but i'm not willing to argue it if anyone thinks it'll be a maintenance burden wi

[issue13501] Make libedit support more generic; port readline / libedit to FreeBSD

2020-10-19 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: +Python 3.10 -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue38912] test_asyncio altered the execution environment

2020-10-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +21757 pull_request: https://github.com/python/cpython/pull/22800 ___ Python tracker ___ __

[issue38912] test_asyncio altered the execution environment

2020-10-19 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +21756 pull_request: https://github.com/python/cpython/pull/22799 ___ Python tracker _

[issue38912] test_asyncio altered the execution environment

2020-10-19 Thread Kyle Stanley
Kyle Stanley added the comment: New changeset de73d432bb29f6439f2db16cb991e15e09c70c26 by Justin Turner Arthur in branch 'master': bpo-38912: fix close before connect callback in test_asyncio SSL tests (GH-22691) https://github.com/python/cpython/commit/de73d432bb29f6439f2db16cb991e15e09c70c

[issue38912] test_asyncio altered the execution environment

2020-10-19 Thread Kyle Stanley
Kyle Stanley added the comment: I've applied Justin's patch, and opened PRs for backporting to 3.9 and 3.8 (currently waiting on CI). Based on my local testing and buildbot fleet results, it definitely reduces the rate at which the failure occurs, but does not 100% resolve the ENV CHANGED

[issue27898] regexp performance degradation between 2.7.6 and 2.7.12

2020-10-19 Thread Gregory P. Smith
Gregory P. Smith added the comment: 2.7 is end of life. if you have regular expression performance issues with something in 3, please open a new issue. -- nosy: +gregory.p.smith resolution: -> wont fix stage: -> resolved status: pending -> closed __

[issue38912] test_asyncio altered the execution environment

2020-10-19 Thread miss-islington
miss-islington added the comment: New changeset e43bee7e114ec361efde34f4b546f984574e6653 by Miss Skeleton (bot) in branch '3.9': bpo-38912: fix close before connect callback in test_asyncio SSL tests (GH-22691) https://github.com/python/cpython/commit/e43bee7e114ec361efde34f4b546f984574e6653

[issue38912] test_asyncio altered the execution environment

2020-10-19 Thread miss-islington
miss-islington added the comment: New changeset 3faef630a44be2d1ea5516e85e95fef4fd027a95 by Miss Skeleton (bot) in branch '3.8': bpo-38912: fix close before connect callback in test_asyncio SSL tests (GH-22691) https://github.com/python/cpython/commit/3faef630a44be2d1ea5516e85e95fef4fd027a95

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-19 Thread Ned Deily
Change by Ned Deily : -- nosy: +ned.deily nosy_count: 5.0 -> 6.0 pull_requests: +21758 pull_request: https://github.com/python/cpython/pull/22801 ___ Python tracker ___ ___

[issue1260171] subprocess: more general (non-buffering) communication

2020-10-19 Thread Gregory P. Smith
Gregory P. Smith added the comment: since the time this was filed, subprocess has evolved a lot and third party options for child process have appeared as well as modern things like: https://docs.python.org/3/library/asyncio-subprocess.html (stdlib) https://trio.readthedocs.io/en/stable/refe

[issue40380] OS-related test failures on Linux in Python 3.8.2

2020-10-19 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue42057] peephole optimizer bug relating to JUMP_IF_NOT_EXC_MATCH

2020-10-19 Thread Inada Naoki
Change by Inada Naoki : -- title: pytest case which catch exceptions become segfault -> peephole optimizer bug relating to JUMP_IF_NOT_EXC_MATCH ___ Python tracker ___ __

[issue38456] Reduce the time test_subprocess takes to complete.

2020-10-19 Thread Gregory P. Smith
Gregory P. Smith added the comment: the slowest tests on Linux today (with number of seconds prepended on my system that runs the suite serially in 34 seconds on a debug build): 3.01 test_check_output_stdout_arg (test.test_subprocess.ProcessTestCaseNoPoll) ... ok 3.01 test_check_output_stdo

[issue42060] Usage of assert in http/client.py

2020-10-19 Thread Benjamin Peterson
Benjamin Peterson added the comment: Are these assertion failures actually reachable due to malformed input? If so, there should be some tests to that effect. Otherwise, if they're actually "impossible" situations, I don't think this change is necessary. -- nosy: +benjamin.peterson

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-19 Thread miss-islington
miss-islington added the comment: New changeset 479553c7c11306a09ce34edb6ef208133b7b95fe by Miss Skeleton (bot) in branch '3.9': bpo-42051: Reject XML entity declarations in plist files (GH-22760) https://github.com/python/cpython/commit/479553c7c11306a09ce34edb6ef208133b7b95fe --

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-19 Thread miss-islington
miss-islington added the comment: New changeset 65894cac0835cb8f469f649e20aa1be8bf89f5ae by Miss Skeleton (bot) in branch '3.8': bpo-42051: Reject XML entity declarations in plist files (GH-22760) https://github.com/python/cpython/commit/65894cac0835cb8f469f649e20aa1be8bf89f5ae --

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-19 Thread Ned Deily
Ned Deily added the comment: New changeset e512bc799e3864fe3b1351757261762d63471efc by Ned Deily in branch '3.7': bpo-42051: Reject XML entity declarations in plist files (#22760) (GH-22801) https://github.com/python/cpython/commit/e512bc799e3864fe3b1351757261762d63471efc -- __

[issue41944] [security] Python testsuite calls eval() on content received via HTTP

2020-10-19 Thread Ned Deily
Ned Deily added the comment: New changeset 43e523103886af66d6c27cd72431b5d9d14cd2a9 by Miss Skeleton (bot) in branch '3.7': bpo-41944: No longer call eval() on content received via HTTP in the CJK codec tests (GH-22566) (GH-22578) https://github.com/python/cpython/commit/43e523103886af66d6c2

[issue42057] peephole optimizer bug relating to JUMP_IF_NOT_EXC_MATCH

2020-10-19 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +21759 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22802 ___ Python tracker ___ _

[issue42090] zipfile.Path.joinpath API inconsistent with pathlib.Path.joinpath

2020-10-19 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +jaraco ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue42093] Add opcode cache for LOAD_ATTR

2020-10-19 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : >From the creators of "opcode cache for LOAD_GLOBAL" >(https://bugs.python.org/issue26219) now it's time for "opcode cache for >LOAD_ATTR: the revenge". This issue/PR builds on top of Yury's original patch >in the same way https://bugs.python.org/is

[issue42093] Add opcode cache for LOAD_ATTR

2020-10-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +21760 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22803 ___ Python tracker __

[issue42093] Add opcode cache for LOAD_ATTR

2020-10-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue42074] setup error on windows

2020-10-19 Thread CaptainMitsumoto
CaptainMitsumoto added the comment: LOG FILE (Occurring yesterday) I have administrator privileges in my laptop. I have the latest .NET framework. I tried installing Python before 3.9.0 and no good luck. I'm using Windows 10 and the version is 1703. I don't think there are problems with OS inst

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +21761 pull_request: https://github.com/python/cpython/pull/22804 ___ Python tracker ___ __

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-19 Thread Ned Deily
Ned Deily added the comment: New changeset a158fb9c5138db94adf24fbc5690467cda811163 by Miss Skeleton (bot) in branch '3.6': bpo-42051: Reject XML entity declarations in plist files (GH-22760) (GH-22801) (GH-22804) https://github.com/python/cpython/commit/a158fb9c5138db94adf24fbc5690467cda811

[issue42051] [security] Avoid plistlib XML vulnerabilities by rejecting entity directives

2020-10-19 Thread Ned Deily
Change by Ned Deily : -- keywords: +security_issue resolution: -> fixed stage: patch review -> resolved status: open -> closed title: plistlib inherits XML vulnerabilities: we should document them -> [security] Avoid plistlib XML vulnerabilities by rejecting entity directives versions

[issue41944] [security] Python testsuite calls eval() on content received via HTTP

2020-10-19 Thread Ned Deily
Ned Deily added the comment: New changeset e912e945f2960029d039d3390ea08835ad39374b by Miss Skeleton (bot) in branch '3.6': bpo-41944: No longer call eval() on content received via HTTP in the CJK codec tests (GH-22566) (GH-22579) https://github.com/python/cpython/commit/e912e945f2960029d039

[issue41944] [security] Python testsuite calls eval() on content received via HTTP

2020-10-19 Thread Ned Deily
Change by Ned Deily : -- keywords: +security_issue resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6, Python 3.7 ___ Python tracker ___

[issue4356] Add "key" argument to "bisect" module functions

2020-10-19 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 871934d4cf00687b3d1411c6e344af311646c1ae by Raymond Hettinger in branch 'master': bpo-4356: Add key function support to the bisect module (GH-20556) https://github.com/python/cpython/commit/871934d4cf00687b3d1411c6e344af311646c1ae -

[issue4356] Add "key" argument to "bisect" module functions

2020-10-19 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41397] Restore default implementation of __ne__ in Counter

2020-10-19 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> not a bug stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue42093] Add opcode cache for LOAD_ATTR

2020-10-19 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 109826c8508dd02e06ae0f1784f1d202495a8680 by Pablo Galindo in branch 'master': bpo-42093: Add opcode cache for LOAD_ATTR (GH-22803) https://github.com/python/cpython/commit/109826c8508dd02e06ae0f1784f1d202495a8680 -- ___

[issue42093] Add opcode cache for LOAD_ATTR

2020-10-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue42037] Documentation confusion in CookieJar functions

2020-10-19 Thread Markus Israelsson
Markus Israelsson added the comment: The way I read the documentation for add_cookie_header is: These methods must exist in the Request object: - get_full_url() - get_host() - get_type() - unverifiable... and so on. The documentation for the request objects claims however that: These methods

[issue38144] Add the root_dir and dir_fd parameters in glob.glob()

2020-10-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +21762 pull_request: https://github.com/python/cpython/pull/22805 ___ Python tracker ___

[issue38144] Add the root_dir and dir_fd parameters in glob.glob()

2020-10-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for catching this. It was an error introduced by merge. -- ___ Python tracker ___ ___

[issue41954] [mock] Recursion on mocking inspect.isfunction

2020-10-19 Thread Stanislav Levin
Stanislav Levin added the comment: I see, thank you for your time. -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ __

<    1   2   3