[issue41559] Add support for PEP 612 (Parameter Specification Variables) to typing.py

2021-01-01 Thread Ken Jin
Ken Jin added the comment: I have just one more PR - one that converts genericalias nested lists to tuples by default. It'll simplify the code a little bit and prepare 3.9.x for PEP 612. -- ___ Python tracker

[issue42807] smtplib send_message should gives more clear exception if the msg is None

2021-01-01 Thread oon arfiandwi
New submission from oon arfiandwi : I want to enhance the error message on the send_message method of class SMTP, in module smtplib. One of the parameters on send_message is msg which is email.message.Message object, this is a required argument. If the msg is None, currently it will raise

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks, Ross Rhodes for the fix! And thanks, Wüstengecko for the report! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 69120613c071e9327a9dc6e4b1ff21b2e94d885e by Ross in branch '3.9': [3.9] bpo-42756: Configure LMTP Unix-domain socket to use global default timeout when timeout not provided (GH-23969) (GH-24050)

[issue7946] Convoy effect with I/O bound threads and New GIL

2021-01-01 Thread David Beazley
Change by David Beazley : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16894] Function attribute access doesn't invoke methods in dict subclasses

2021-01-01 Thread David Beazley
Change by David Beazley : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24844] Python 3.5rc1 compilation error with Apple clang 4.2 included with Xcode 4

2021-01-01 Thread David Beazley
Change by David Beazley : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue32810] Expose ags_gen and agt_gen in asynchronous generators

2021-01-01 Thread David Beazley
Change by David Beazley : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue27436] Strange code in selectors.KqueueSelector

2021-01-01 Thread David Beazley
Change by David Beazley : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16132] ctypes incorrectly encodes .format attribute of memory views

2021-01-01 Thread David Beazley
Change by David Beazley : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41559] Add support for PEP 612 (Parameter Specification Variables) to typing.py

2021-01-01 Thread Guido van Rossum
Guido van Rossum added the comment: Looks like we can close this now, right? You can open a separate issue in the python/typing repo to update typing_extensions. -- ___ Python tracker

[issue41559] Add support for PEP 612 (Parameter Specification Variables) to typing.py

2021-01-01 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 11276cd9c49faea66ce7760f26a238d1edbf6421 by Ken Jin in branch 'master': bpo-41559: Documentation for PEP 612 (GH-24000) https://github.com/python/cpython/commit/11276cd9c49faea66ce7760f26a238d1edbf6421 --

[issue42806] Incorrect offsets in new parser for f-string substitutions

2021-01-01 Thread Anthony Sottile
Anthony Sottile added the comment: I didn't initially, but now I have and it has the same bug in the current master: 3bf05327c2b25d42b92795d9d280288c22a0963d -- ___ Python tracker

[issue42806] Incorrect offsets in new parser for f-string substitutions

2021-01-01 Thread Guido van Rossum
Guido van Rossum added the comment: Did you check this with master? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue30044] shutil.copystat should (allow to) copy ownership, and other attributes

2021-01-01 Thread Rahul Jha
Change by Rahul Jha : -- nosy: +RJ722 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42806] Incorrect offsets in new parser for f-string substitutions

2021-01-01 Thread Anthony Sottile
Anthony Sottile added the comment: +peg parser individuals to nosy -- nosy: +gvanrossum, lys.nikolaou, pablogsal ___ Python tracker ___

[issue34451] docs: tutorial/introduction doesn't mention toggle of prompts

2021-01-01 Thread Rahul Jha
Change by Rahul Jha : -- nosy: +RJ722 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42806] Incorrect offsets in new parser for f-string substitutions

2021-01-01 Thread Anthony Sottile
New submission from Anthony Sottile : here's a sample file. this is distilled down from an example which broke a code formatter here: https://github.com/asottile/add-trailing-comma/issues/106 def f(): x = ( 'PERL_MM_OPT', ( f'INSTALL-BASE={shlex.quote(venv)} '

[issue42805] broken pygame integration into wxpython

2021-01-01 Thread monchy
monchy added the comment: The only thing I changed was the version of python I was using, which means that whatever caused the problem was python itself if something was changed in how the interpreter operates the environmental variables or something then that might do it PYTHON broke MY

[issue42805] broken pygame integration into wxpython

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Pygame and wxpython are not parts of the stdlib. Please use an appropriate bug tracker. -- nosy: +serhiy.storchaka resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

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

[issue26407] csv.writer.writerows masks exceptions from __iter__

2021-01-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue39068] Base 85 encoding initialization race condition

2021-01-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.8, Python 3.9 -Python 3.6 ___ Python tracker

[issue39068] Base 85 encoding initialization race condition

2021-01-01 Thread miss-islington
miss-islington added the comment: New changeset 0d6e40744ae40ff397883ff90ca235efd3b63f18 by Miss Islington (bot) in branch '3.9': bpo-39068: Fix race condition in base64 (GH-17627) https://github.com/python/cpython/commit/0d6e40744ae40ff397883ff90ca235efd3b63f18 --

[issue42686] include built-in Math functions in SQLite to 3.35.0 of march 2021

2021-01-01 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- keywords: +patch pull_requests: +22888 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24053 ___ Python tracker

[issue42686] include built-in Math functions in SQLite to 3.35.0 of march 2021

2021-01-01 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: Yes, R. Hipp has fixed this here: https://www2.sqlite.org/cgi/src/info/e5d7209e118a8453 We still need to modify PCbuild in order to build the SQLite library with math functions from 3.35.0 and onwards. --

[issue42805] broken pygame integration into wxpython

2021-01-01 Thread monchy
New submission from monchy : in previous python verions a pygame window could be embedded into wxpython by assigning the SDL_WINDOWID to the current wx.Panel.GetHandle() and the SDL_VIDEODRIVER to 'windib' before importing python the same code creates a separate pygame window in the newest

[issue42794] test_nntplib fails on CI

2021-01-01 Thread STINNER Victor
STINNER Victor added the comment: Thanks Dong-hee Na for the fix! We have many tests using external services, like test_ssl that Christian may know ;-) https://pythondev.readthedocs.io/infra.html#services-used-by-unit-tests -- resolution: -> fixed stage: -> resolved status: open

[issue42804] Unable to compile the cpython code x86 windows

2021-01-01 Thread Sunny
Sunny added the comment: I am running using admin rights but still getting the error -- ___ Python tracker ___ ___

[issue42804] Unable to compile the cpython code x86 windows

2021-01-01 Thread Bharath Posa
Bharath Posa added the comment: I just ran the file but got the below error saying permission denied PermissionError: [WinError 5] Access is denied: 'E:\\Libarary\\workspace\\python_dev\\cpython\\PCbuild\\..\\externals\\cpython-bin-deps-tcltk-8.6.9.0' ->

[issue42804] Unable to compile the cpython code x86 windows

2021-01-01 Thread Dennis Sweeney
Dennis Sweeney added the comment: Were you able to run PCbuild\get_externals.bat ? -- ___ Python tracker ___ ___ Python-bugs-list

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Ned Deily
Ned Deily added the comment: New changeset 546baba63a446e261d0248338f9034e56eccfc46 by Miss Islington (bot) in branch '3.6': bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037) (GH-24042)

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Ned Deily
Ned Deily added the comment: New changeset 8200ee66697601a8766f234d6eb8e4c8735216fd by Miss Islington (bot) in branch '3.7': bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037) (GH-24041)

[issue42804] Unable to compile the cpython code x86 windows

2021-01-01 Thread Bharath Posa
Bharath Posa added the comment: Followed the instructions as per the link https://devguide.python.org/setup/#setup While running the command build.bat -- ___ Python tracker

[issue42804] Unable to compile the cpython code x86 windows

2021-01-01 Thread Dennis Sweeney
Dennis Sweeney added the comment: What commands did you enter? Are you following the instructions at https://devguide.python.org/setup/ ? -- nosy: +Dennis Sweeney ___ Python tracker

[issue42804] Unable to compile the cpython code x86 windows

2021-01-01 Thread Bharath Posa
Change by Bharath Posa : -- title: Unable to compile the code x86 windows -> Unable to compile the cpython code x86 windows type: -> compile error ___ Python tracker ___

[issue42804] Unable to compile the code x86 windows

2021-01-01 Thread Bharath Posa
New submission from Bharath Posa : Hi Team, While I am trying to build the cpython in windows 10. I am getting tcl.h file not found error. You can find the screen shot of the error along with the bug. regards Sunny -- components: Build files: error_python_compilation.JPG messages:

[issue42686] include built-in Math functions in SQLite to 3.35.0 of march 2021

2021-01-01 Thread Big Stone
Big Stone added the comment: it seems resolved now, at least with VS 2019 -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue2142] difflib.unified_diff(...) produces invalid patches

2021-01-01 Thread Paul "TBBle" Hampson
Paul "TBBle" Hampson added the comment: I just bounced off this issue and proposed a work-around for it in Black (https://github.com/psf/black/pull/1897). Since it wasn't mentioned here earlier, the `\` marker _is_ documented in the GNU Diffutils documentation, under "Incomplete Lines"

[issue39068] Base 85 encoding initialization race condition

2021-01-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +22887 pull_request: https://github.com/python/cpython/pull/24051 ___ Python tracker ___

[issue26407] csv.writer.writerows masks exceptions from __iter__

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 6dffa67b98f78ae41b596f84478f3379f55d4d03 by Serhiy Storchaka in branch '3.8': [3.8] bpo-26407: Do not mask errors in csv. (GH-20536) (GH-24021) https://github.com/python/cpython/commit/6dffa67b98f78ae41b596f84478f3379f55d4d03 --

[issue39068] Base 85 encoding initialization race condition

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset b863607d303a87e8680149361ac987328b35ca5f by Serhiy Storchaka in branch '3.8': [3.8] bpo-39068: Fix race condition in base64 (GH-17627) (GH-24022) https://github.com/python/cpython/commit/b863607d303a87e8680149361ac987328b35ca5f --

[issue36589] Incorrect error handling in curses.update_lines_cols()

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 187785e2fa2050156a6eda93fb2da31db13f07a6 by Serhiy Storchaka in branch '3.8': [3.8] bpo-36589: Fix the error handling in curses.update_lines_cols(). (GH-12766) (GH-24023)

[issue42425] Possible leak in initialization of errmap for OSError

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 1a544e1dcf8e0880ee35ce78a7f90fc4e5c98c4f by Serhiy Storchaka in branch '3.8': [3.8] bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446). (GH-24025)

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset e3a9adba329681b1b73b7223515e71e94fc35e12 by Serhiy Storchaka in branch '3.8': [3.8] bpo-42759: Fix equality comparison of Variable and Font in Tkinter (GH-23968) (GH-24026)

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Ross Rhodes
Change by Ross Rhodes : -- pull_requests: +22886 pull_request: https://github.com/python/cpython/pull/24050 ___ Python tracker ___

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: -22885 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +22885 pull_request: https://github.com/python/cpython/pull/24049 ___ Python tracker ___

[issue42756] smtplib.LMTP.connect() raises TypeError if `timeout` is not specified

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 3bf05327c2b25d42b92795d9d280288c22a0963d by Ross in branch 'master': bpo-42756: Configure LMTP Unix-domain socket to use global default timeout when timeout not provided (GH-23969)

[issue42802] distutils: Remove bdist_wininst command

2021-01-01 Thread Jeremy Kloth
Change by Jeremy Kloth : -- nosy: +jkloth ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Thanks for the patch, Dong-hee Na. Christian: Tests relying on external resources will always have such issues. This doesn't mean that the code which is being tested is outdated or broken. It's just an issue with the tests. Perhaps we ought to disable

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Christian Heimes
Christian Heimes added the comment: > The test fails because it was relying on an external news server's > configuratoin. This doesn't mean the code itself is broken, just the > test, so clearly: no. Broken and unstable tests are one of two reasons why I listed nntplib in my PEP,

[issue4643] cgitb.html fails if getattr call raises exception

2021-01-01 Thread Irit Katriel
Irit Katriel added the comment: On closer scrutiny I'm not sure this patch should be merged. The getattr call here has a default value, so it should not raise AttributeError. It should also not raise any other exception because a valid implementation of __getattr__ should raise only

[issue4643] cgitb.html fails if getattr call raises exception

2021-01-01 Thread Irit Katriel
Change by Irit Katriel : -- Removed message: https://bugs.python.org/msg384182 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue4643] cgitb.html fails if getattr call raises exception

2021-01-01 Thread Irit Katriel
Irit Katriel added the comment: On closer scrutiny I'm not sure this patch should not be merged. The getattr call here has a default value, so it should not raise AttributeError. It should also not raise any other exception because a valid implementation of __getattr__ should raise only

[issue42802] distutils: Remove bdist_wininst command

2021-01-01 Thread STINNER Victor
STINNER Victor added the comment: I created a https://discuss.python.org/t/remove-bdist-wininst-command/6434 topic to check if anyone wants to keep the command, or if it's ok to remove it right now. -- ___ Python tracker

[issue42802] distutils: Remove bdist_wininst command

2021-01-01 Thread STINNER Victor
STINNER Victor added the comment: Note: bdist_msi is deprecated since Python 3.9 (bpo-39586). I prefer to wait for Python 3.11 to remove it: commit 29b3fc0a18f105de666fdd586b537f34e349766d Author: Hugo van Kemenade Date: Mon Feb 10 15:26:40 2020 +0200 bpo-39586: Deprecate distutils

[issue42802] distutils: Remove bdist_wininst command

2021-01-01 Thread STINNER Victor
STINNER Victor added the comment: FYI last year, I fixed setuptools v45.2 (released in February 2020) when bdist_wininst is missing: https://github.com/pypa/setuptools/commit/5d17586a56077dfa3109a5861cf0ff579095a42e -- ___ Python tracker

[issue42802] distutils: Remove bdist_wininst command

2021-01-01 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +22884 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24043 ___ Python tracker ___

[issue42803] Traced line number is wrong for "if not __debug__"

2021-01-01 Thread Ned Batchelder
New submission from Ned Batchelder : (Using CPython commit 6b1ac809b9) This program never executes line 4, but the "if not __debug__" is partly attributed to line 4, giving an incorrect trace: for value in [True, False]: if value: if not __debug__: 1/0

[issue42794] test_nntplib fails on CI

2021-01-01 Thread miss-islington
miss-islington added the comment: New changeset b20d5e5ce95248e0fa77c5d7bf8f6f5b1231fa53 by Miss Islington (bot) in branch '3.9': bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037) https://github.com/python/cpython/commit/b20d5e5ce95248e0fa77c5d7bf8f6f5b1231fa53

[issue42794] test_nntplib fails on CI

2021-01-01 Thread miss-islington
miss-islington added the comment: New changeset 381f3e4bfd4b1c440f7cb3025972fe0acd0406fc by Miss Islington (bot) in branch '3.8': bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037) https://github.com/python/cpython/commit/381f3e4bfd4b1c440f7cb3025972fe0acd0406fc

[issue42802] distutils: Remove bdist_wininst command

2021-01-01 Thread STINNER Victor
STINNER Victor added the comment: There are 19 issues (+ this one) on bdist_wininst. Once distutils bdist_wininst command will be removed, I propose to all these issues. Search for open issues with "bdist_wininst" in the title. Only bpo-41771 was active recently (3 months ago). The 18 other

[issue42801] Exception catching function crashes on recursive list

2021-01-01 Thread Steve Stagg
Steve Stagg added the comment: This is fixed by https://github.com/python/cpython/pull/23744 -- nosy: +stestagg ___ Python tracker ___

[issue42802] distutils: Remove bdist_wininst command

2021-01-01 Thread STINNER Victor
New submission from STINNER Victor : Attached PR removes it. The bdist_wininst command was deprecated in Python 3.8: commit 1da4462765b084dfa8d869b6cb5855e8f6014a11 Author: Victor Stinner Date: Fri Jul 5 10:44:12 2019 +0200 bpo-37481: Deprecate distutils bdist_wininst command

[issue42796] tempfile doesn't seem to play nicely with os.chdir on Windows

2021-01-01 Thread Eryk Sun
Eryk Sun added the comment: > def test_chdir(): > with tempfile.TemporaryDirectory() as tempdir: > old = os.getcwd() > os.chdir(tempdir) > with open(os.path.join(tempdir, "delme")) as fout: > fout.write("Hello") > os.chdir(old) The open() call

[issue42794] test_nntplib fails on CI

2021-01-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +22883 pull_request: https://github.com/python/cpython/pull/24042 ___ Python tracker ___

[issue42794] test_nntplib fails on CI

2021-01-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +22882 pull_request: https://github.com/python/cpython/pull/24041 ___ Python tracker ___

[issue42794] test_nntplib fails on CI

2021-01-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +22881 pull_request: https://github.com/python/cpython/pull/24040 ___ Python tracker ___

[issue42794] test_nntplib fails on CI

2021-01-01 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +22880 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24039 ___ Python tracker

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset ec3165320e81ac87edcb85c86c452528ddbaec1c by Dong-hee Na in branch 'master': bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037) https://github.com/python/cpython/commit/ec3165320e81ac87edcb85c86c452528ddbaec1c

[issue4643] cgitb.html fails if getattr call raises exception

2021-01-01 Thread karl
karl added the comment: Converted into GitHub PR https://github.com/python/cpython/pull/24038 -- ___ Python tracker ___ ___

[issue4643] cgitb.html fails if getattr call raises exception

2021-01-01 Thread karl
Change by karl : -- nosy: +karlcow nosy_count: 4.0 -> 5.0 pull_requests: +22878 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/24038 ___ Python tracker

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 01.01.2021 13:57, Christian Heimes wrote: > > Does this issue mean that I should include nntplib in PEP 594 again? The test fails because it was relying on an external news server's configuratoin. This doesn't mean the code itself is broken, just the

[issue42796] tempfile doesn't seem to play nicely with os.chdir on Windows

2021-01-01 Thread Eryk Sun
Eryk Sun added the comment: > Windows doesn't let you remove files and directories that are used > by a process. Windows does allow deleting open files/directories, but read/execute, write/append, and delete/rename access have to be explicitly shared when opening a file or directory.

[issue25479] Increase unit test coverage for abc.py

2021-01-01 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue25479] Increase unit test coverage for abc.py

2021-01-01 Thread Irit Katriel
Irit Katriel added the comment: This PR probably doesn't improve test coverage because the feature is tested indirectly (and directly from test_typing). But I think this test should be added nevertheless for completeness and to demonstrate how the feature works. That said, this test shows

[issue42796] tempfile doesn't seem to play nicely with os.chdir on Windows

2021-01-01 Thread Gabriele Tornetta
Gabriele Tornetta added the comment: That makes sense, but I wonder what the "right" behaviour should be in this case. Surely the infinite recursion should be fixed at the very minimum. Perhaps the code on Windows could be enhanced to catch the case whereby one is trying to delete the cwd

[issue42796] tempfile doesn't seem to play nicely with os.chdir on Windows

2021-01-01 Thread Christian Heimes
Christian Heimes added the comment: The code fails because TemporaryDirectory.__exit__() is unable to remove the directory. Windows doesn't let you remove files and directories that are used by a process. On POSIX-like operating systems like Linux support removing of opened files. For

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Christian Heimes
Christian Heimes added the comment: Does this issue mean that I should include nntplib in PEP 594 again? -- nosy: +christian.heimes ___ Python tracker ___

[issue34752] warnings.warn fails silently with unicode input

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: > For tests with the external environment, How about skipping tests if servers are not available? Hmm, I change my mind this is not a good idea :( -- ___ Python tracker

[issue42801] Exception catching function crashes on recursive list

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: FYI,I am able to reproduce on Python 3.9 The master version is not able to reproduce. -- nosy: +corona10 ___ Python tracker ___

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: > How to handle similar breakage of external servers? For tests with the external environment, How about skipping tests if servers are not available? It is assumed that if there is a change related to NNTP, it is well checked in the CI and review. This is

[issue34752] warnings.warn fails silently with unicode input

2021-01-01 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2.7 is no longer supported, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker ___

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The test was passed on my computer because test.test_nntplib.NetworkedNNTP_SSLTests was skipped because of the configuration of SSL on Ubuntu 20.04 (see issue41561). After using custom openssl.cnf I get the same errors. $ OPENSSL_CONF=~/py/openssl.cnf

[issue42797] Allow doctest to select tests via -m/--match option

2021-01-01 Thread Costas Basdekis
Costas Basdekis added the comment: Thanks for the thorough feedback Steven (and happy new year). About -m flag: we could use -k as other testing frameworks use (pytest), or even -t. About selecting multiple indexes: what you described is my exact use case, as I have a lot of failing

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: I submit the patch to use group_name which is mentioned from https://news.aioe.org/manual/aioe-hierarchy/ IMHO, it will be not changed frequently than what we used before. -- stage: patch review -> ___ Python

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +22877 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24037 ___ Python tracker ___

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: 4 ways / 2 ways -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Dong-hee Na added the comment: == CPython 3.10.0a3+ (heads/master:c8a7b8fa1b, Jan 1 2021, 08:28:41) [GCC 7.5.0] == Linux-5.4.0-1031-azure-x86_64-with-glibc2.27 little-endian == cwd: /home/corona10/cpython/build/test_python_66899æ == CPU count: 2 == encodings: locale=UTF-8, FS=utf-8 0:00:00 load

[issue42794] test_nntplib fails on CI

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: