[issue40759] Deprecate the symbol module

2020-05-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: If PEG does not use this file, then not deprecating it along with parser in 3.9 could be considered a bug. -- nosy: +terry.reedy ___ Python tracker

[issue40754] Test installers before releasing (ModuleNotFoundErrors)

2020-05-29 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: We have a bunch of buildbots that test the installed Python. For instance, if you search for "installed" in https://buildbot.python.org/all/#/builders?tags=%2B3.x we have: aarch64 Fedora Rawhide Clang Installed 3.x aarch64 Fedora Stable Clang In

[issue40754] Test installers before releasing (ModuleNotFoundErrors)

2020-05-29 Thread Ned Deily
Ned Deily added the comment: > So it seems that only Linux has "installed" builbot tests. I suppose the next > step is adding some macOS and Windows ones. Having more buildbots test from "installed" locations, rather than the build directory, is good. But that's not the whole issue here. Th

[issue40762] Writing bytes using CSV module results in b prefixed strings

2020-05-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: I make 5 core developers who agree that csv should definitely *not* assume that bytes given to it represent encoded text, reverting to the confusion of Python 1 and 2. (And even it if did, it should not assume that the encoding of the given to it and the enc

[issue29017] Docs: PySide is provided by 'The Qt Company' and not by 'Nokia'

2020-05-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 4649202ea75d48e1496e99911709824ca2d3170e by Samuel Gaist in branch 'master': closes bpo-29017: Update the bindings for Qt information with PySide2 (GH-20149) https://github.com/python/cpython/commit/4649202ea75d48e1496e99911709824ca2d3170e

[issue29017] Docs: PySide is provided by 'The Qt Company' and not by 'Nokia'

2020-05-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +19772 pull_request: https://github.com/python/cpython/pull/20528 ___ Python tracker ___ __

[issue29017] Docs: PySide is provided by 'The Qt Company' and not by 'Nokia'

2020-05-29 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +19770 pull_request: https://github.com/python/cpython/pull/20526 ___ Python tracker _

[issue29017] Docs: PySide is provided by 'The Qt Company' and not by 'Nokia'

2020-05-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +19771 pull_request: https://github.com/python/cpython/pull/20527 ___ Python tracker ___ __

[issue29017] Docs: PySide is provided by 'The Qt Company' and not by 'Nokia'

2020-05-29 Thread miss-islington
miss-islington added the comment: New changeset f165647e3d2addd03d0393f4f5d31bd1cc9b74a2 by Miss Islington (bot) in branch '3.7': closes bpo-29017: Update the bindings for Qt information with PySide2 (GH-20149) https://github.com/python/cpython/commit/f165647e3d2addd03d0393f4f5d31bd1cc9b74a2

[issue29017] Docs: PySide is provided by 'The Qt Company' and not by 'Nokia'

2020-05-29 Thread miss-islington
miss-islington added the comment: New changeset 78cf711d1ff261b6be359d6c12f47dd0997546b2 by Miss Islington (bot) in branch '3.9': closes bpo-29017: Update the bindings for Qt information with PySide2 (GH-20149) https://github.com/python/cpython/commit/78cf711d1ff261b6be359d6c12f47dd0997546b2

[issue29017] Docs: PySide is provided by 'The Qt Company' and not by 'Nokia'

2020-05-29 Thread miss-islington
miss-islington added the comment: New changeset ef2f9acf8fc813f66523e7702654f919d20ff0c3 by Miss Islington (bot) in branch '3.8': closes bpo-29017: Update the bindings for Qt information with PySide2 (GH-20149) https://github.com/python/cpython/commit/ef2f9acf8fc813f66523e7702654f919d20ff0c3

[issue38324] [Windows] test_locale and test__locale failures on Windows

2020-05-29 Thread Tiago Illipronti Girardi
Change by Tiago Illipronti Girardi : -- nosy: +TIGirardi nosy_count: 7.0 -> 8.0 pull_requests: +19773 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20529 ___ Python tracker

[issue38324] [Windows] test_locale and test__locale failures on Windows

2020-05-29 Thread Tiago Illipronti Girardi
Change by Tiago Illipronti Girardi : -- versions: +Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40770] RFE: Run linkchecker on documentation on the CI

2020-05-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Something rebuilds the online docs once a day. That same something might be appropriate for running a link checker (including external links) once a week, say. -- nosy: +terry.reedy ___ Python tracker

[issue40804] Bug report in python3.6.8 using argparse module

2020-05-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.6 has only gotten security fixed for 1.5 years. We need a test file that can be run as is in the master branch to see if there is a current bug. -- nosy: +terry.reedy ___ Python tracker

[issue35621] asyncio.create_subprocess_exec() only works with main event loop

2020-05-29 Thread Kyle Stanley
Kyle Stanley added the comment: > is there a workaround for earlier Python versions that does not involve > patching the standard library? You could potentially try using the new default watcher, `ThreadedChildWatcher`, by implementing it locally and setting it as the child watcher to use (

[issue40805] Can no longer patch flask.g

2020-05-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Sorry, but I believe you were misdirected*. mock, as opposed to unittest.mock, pytest, flask, and werkzeug are 3rd party modules. The error report seems to be missing part of the stacktrace at both ends. What line is your file resulted in the error? (Th

[issue37824] IDLE: Handle Shell input warnings properly.

2020-05-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: To review: Serhiy reported 3 'IDLE' bugs: tripled DeprecationWarning (now joined by SyntaxWarning), printing to console (if available) instead of Shell, and an exit exception. 1. Codeop generates the tripicates; #40807 will fix that. 2. PR-15311 prints warni

[issue37824] IDLE: Handle Shell input warnings properly.

2020-05-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: The new items can be new issues, with 6 maybe the highest priority. Currently :1: DeprecationWarning: invalid escape sequence \e becomes Warning (from warnings module): File "", line 1 '\e' DeprecationWarning: invalid escape sequence \e For both Shell a

[issue27580] CSV Null Byte Error

2020-05-29 Thread Daniel Jewell
Daniel Jewell added the comment: Forgive my frustration, but @Skip I really don't see how the definition of CSV relating to Excel (or Gnumeric or LibreOffice) has any relevance as to whether or not the module (and perhaps Python more generally) supports chr(0x00) as a delimiter. (Neither you

<    1   2