[issue40051] Give proper link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-11-05 Thread Zachary Ware
Zachary Ware added the comment: This actually turned out to be less effort than I expected (though I still should have been asleep 2 hours ago), so I've gone ahead and opened GH-29419 to implement what I suggested. -- stage: patch review -> test needed

[issue40051] Give proper link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-11-05 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +patch pull_requests: +27672 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/29419 ___ Python tracker

[issue45722] documentation missing information on objects in submodules

2021-11-05 Thread Jens Rapp
New submission from Jens Rapp : Documentation 5.4.2. Submodules tells what happens to modules which are imported inside __init__.py of a package> from .foo import Foo from .bar import Bar then executing the following puts a name binding to foo and bar in the spam module: >>> >>> import

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +27681 pull_request: https://github.com/python/cpython/pull/29425 ___ Python tracker ___

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +27682 pull_request: https://github.com/python/cpython/pull/29425 ___ Python tracker ___

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: -27678 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45716] Confusing parsing error message when trying to use True as keyword argument

2021-11-05 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset e2d65630f36712dbdbf7711520c985c526a5cc25 by Pablo Galindo Salgado in branch 'main': bpo-45716: Improve the error message when using True/False/None as keywords in a call (GH-29413)

[issue45509] Gzip header corruption not properly checked.

2021-11-05 Thread Ruben Vorderman
Ruben Vorderman added the comment: Bump. This is a bug that allows corrupted gzip files to be processed without error. Therefore I bump this issue in the hopes someone will review the PR. -- ___ Python tracker

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +27678 pull_request: https://github.com/python/cpython/pull/29425 ___ Python tracker ___

[issue45724] Segmentation fault

2021-11-05 Thread ghost_in _the_wires
New submission from ghost_in _the_wires : Test -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45727] Parse error when missing commas is inconsistent

2021-11-05 Thread Carl Friedrich Bolz-Tereick
New submission from Carl Friedrich Bolz-Tereick : I found following inconsistency in the error message when there's a missing comma (it behaves that way both on main and 3.10). Here's what happens with numbers, as expected: Python 3.11.0a1+ (heads/main:32f55d1a5d, Nov 5 2021, 13:18:52) [GCC

[issue45729] "history and license" link has wrong target

2021-11-05 Thread Jacob Lifshay
New submission from Jacob Lifshay : https://docs.python.org/3.10/library/csv.html at the bottom the "history and license" link just links back to csv.html, rather than the correct target. -- assignee: docs@python components: Documentation messages: 405807 nosy: docs@python,

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is a duplicate of issue43624. It was also discussed in Discuss. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Add underscore as a decimal separator for string formatting

[issue45727] Parse error when missing commas is inconsistent

2021-11-05 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +27680 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29427 ___ Python tracker

[issue45716] Confusing parsing error message when trying to use True as keyword argument

2021-11-05 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45723] Improve and simplify configure.ac checks

2021-11-05 Thread Christian Heimes
Christian Heimes added the comment: The first PR adds helper macros, AC_CACHE_CHECK() [1] and AS_VAR_IF() [2]. It also unified internal variables to use format "ac_cv_func_$funcname", "ac_cv_func_lib_$library_$funcname", or "ac_cv_header_$headername_h". "ac_cv" stands for autoconf cached

[issue45723] Improve and simplify configure.ac checks

2021-11-05 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +27684 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29429 ___ Python tracker

[issue45728] SharedMemory documentation: System V vs Posix

2021-11-05 Thread jkrupp
New submission from jkrupp : Hi, the documentation for the shared_memory module states that "shared memory refers to “System V style” shared memory". However, I believe it might be clearer to talk about "POSIX style shared memory" here instead. Primed by the "System V style"-comment, I had

[issue45630] Dump CodeObject API for debugging

2021-11-05 Thread Guido van Rossum
Guido van Rossum added the comment: Why not propose a slight extension to the dis module? -- ___ Python tracker ___ ___

[issue45704] string.Formatter.parse does not handle auto-numbered positional fields

2021-11-05 Thread Eric V. Smith
Eric V. Smith added the comment: I think your code is rational. But since string.Formatter gets such little use, I'm not sure it's worth adding this to the stdlib. On the other hand, it could be used internal to string.Formatter. We'd need to pick a better name, though. And maybe it should

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset bcb236c19e4ddf5ccf0fc45ab541eabf1f757a64 by Miss Islington (bot) in branch '3.10': bpo-45678: Add more ``singledispatchmethod`` tests (GH-29412) (GH-29424) https://github.com/python/cpython/commit/bcb236c19e4ddf5ccf0fc45ab541eabf1f757a64

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Alex! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45724] Segmentation fault

2021-11-05 Thread ghost_in _the_wires
ghost_in _the_wires added the comment: Oh I see. Thanks for your response! I thought that it's something wrong with python on arm64. -- ___ Python tracker ___

[issue45704] string.Formatter.parse does not handle auto-numbered positional fields

2021-11-05 Thread Sascha Desch
Sascha Desch added the comment: That definition of `.parse()` definitely makes sense. Do you then think this is out of scope for `Formatter` in general or just for `.parse()`?. Just for reference, this is what I currently use to get automatic numbering to work for my use case. ``` def

[issue45716] Confusing parsing error message when trying to use True as keyword argument

2021-11-05 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +27683 pull_request: https://github.com/python/cpython/pull/29428 ___ Python tracker ___

[issue45718] asyncio: MultiLoopWatcher has a race condition (Proposed work-around)

2021-11-05 Thread Chris Jerdonek
Chris Jerdonek added the comment: Since issue 38323 is still open, I think you should just comment on that instead of creating a new issue. -- nosy: +chris.jerdonek ___ Python tracker

[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-05 Thread Ronald Oussoren
Ronald Oussoren added the comment: > Where do you think that "feature" is documented? I'd have to check, but I didn't learn this from Twitter, although it wouldn't surprise me if I learned this from a WWDC talk. The beta for Big Sur never identified itself as 10.16 other than through this

[issue45723] Improve and simplify configure.ac checks

2021-11-05 Thread Christian Heimes
New submission from Christian Heimes : The autoconf-based build system has room for improvements. The configure.ac script can be simplified in several places by using AS and AC macros or by defining new custom macros. For example we have a lot of blocks that look like this:

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +27677 pull_request: https://github.com/python/cpython/pull/29424 ___ Python tracker ___

[issue45507] Small oversight in 3.11 gzip.decompress implementation with regards to backwards compatibility

2021-11-05 Thread Ruben Vorderman
Ruben Vorderman added the comment: bump. This is a regression introduced by https://github.com/python/cpython/pull/27941 -- ___ Python tracker ___

[issue45724] Segmentation fault

2021-11-05 Thread ghost_in _the_wires
Change by ghost_in _the_wires : -- files: log.txt nosy: ghost.in.the.wires priority: normal severity: normal status: open title: Segmentation fault versions: Python 3.10 Added file: https://bugs.python.org/file50426/log.txt ___ Python tracker

[issue45724] Segmentation fault

2021-11-05 Thread ghost_in _the_wires
ghost_in _the_wires added the comment: When trying to run this tool https://github.com/shmilylty/OneForAll in Parallels Desktop virtual environment (Ubuntu 20.0.4 aarch64) I've got segmentation fault in ssl, http client and threading. Full log in file --

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-05 Thread Sander Bollen
Sander Bollen added the comment: Thanks for looking into this so swiftly! As a user, I have found PEP515 to be worded a little ambiguously with regards to formatting using underscores as thousands separators. While it enumerates a collection of types as far as the constructor is concerned,

[issue45292] Implement PEP 654: Exception Groups

2021-11-05 Thread Irit Katriel
Irit Katriel added the comment: New changeset 3509b26c916707363c71a1df040855e395cf4817 by Irit Katriel in branch 'main': bpo-45292: [PEP 654] Update traceback display code to work with exception groups (GH-29207)

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 885e57c148d0b2c34daa2b7e5162dc57cf7e4469 by Miss Islington (bot) in branch '3.9': bpo-27313: Fix ttk_guionly tests failing on Framework builds on macOS (GH-29411) (GH-29423)

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 363ecb36da273ddb0c80ad14f3f1aa5101223bc2 by Miss Islington (bot) in branch '3.10': bpo-27313: Fix ttk_guionly tests failing on Framework builds on macOS (GH-29411) (GH-29422)

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e52f9bee802aa7a7fbd405dcc43bc2d1bea884d9 by Łukasz Langa in branch 'main': bpo-27313: Fix ttk_guionly tests failing on Framework builds on macOS (GH-29411) https://github.com/python/cpython/commit/e52f9bee802aa7a7fbd405dcc43bc2d1bea884d9

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +27675 pull_request: https://github.com/python/cpython/pull/29422 ___ Python tracker ___

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +27676 pull_request: https://github.com/python/cpython/pull/29423 ___ Python tracker ___

[issue38401] Make dataclass attribute docstrings accessible

2021-11-05 Thread Václav Brožík
Václav Brožík added the comment: Note that John Parejko is right that the active PEP 257 clearly specifies attribute docstrings. Here is the excerpt: String literals occurring immediately after a simple assignment at the top level of a module, class, or __init__ method are called "attribute

[issue45721] Improve error message when python shell command is entered at the REPL prompt

2021-11-05 Thread Andre Roberge
Andre Roberge added the comment: I think that "trying to run a shell command" might not be easy to understand by a beginner. If the special case of r"python\s+" is added, perhaps r"pip\s+" should be considered as well since many sites on the Internet suggest to install packages using "pip

[issue45292] Implement PEP 654: Exception Groups

2021-11-05 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +erlendaasland ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45721] Improve error message when python shell command is entered at the REPL prompt

2021-11-05 Thread Alex Waygood
Alex Waygood added the comment: +1 for adding r"pip\s" as a special case as well. A few months ago, I was trying to (remotely) help a beginner friend debug why his attempt to install a library wasn't working. It took me ages before I realised he was entering it into the interactive REPL

[issue45726] Documentation for `@singledispatch` and `@singledispatchmethod` could be improved

2021-11-05 Thread Alex Waygood
New submission from Alex Waygood : The documentation for `functools.singledispatch` and `functools.singledispatchmethod` contains a few small grammar mistakes and instances of slightly inelegant writing. PR to follow shortly. -- assignee: docs@python components: Documentation

[issue45727] Parse error when missing commas is inconsistent

2021-11-05 Thread Alex Waygood
Change by Alex Waygood : -- nosy: +AlexWaygood ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45630] Dump CodeObject API for debugging

2021-11-05 Thread penguin_wwy
Change by penguin_wwy <940375...@qq.com>: -- nosy: +gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-05 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: -mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 32f55d1a5de66f9a86964fc0655d7a006a9d90b9 by Alex Waygood in branch 'main': bpo-45678: Add more ``singledispatchmethod`` tests (GH-29412) https://github.com/python/cpython/commit/32f55d1a5de66f9a86964fc0655d7a006a9d90b9 --

[issue45727] Parse error when missing commas is inconsistent

2021-11-05 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: >(I don't know if these nit-picky parsing issues are too annoying, if they are >please tell me to stop filing them). Don't worry, I think is great to discuss these cases. If there are too many, then maybe it will take a while to correct, but please,

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 54d1e3f72ed1ad8e860888c30ee7a285b931c0d1 by Łukasz Langa in branch 'main': bpo-45160: Fix refleak in test_ttk_guionly introduced in GH-28291 (GH-29416) https://github.com/python/cpython/commit/54d1e3f72ed1ad8e860888c30ee7a285b931c0d1 --

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +27673 pull_request: https://github.com/python/cpython/pull/29420 ___ Python tracker ___

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +27674 pull_request: https://github.com/python/cpython/pull/29421 ___ Python tracker ___

[issue45615] Missing test for type of error when printing traceback for non-exception

2021-11-05 Thread Irit Katriel
Irit Katriel added the comment: It's been merged now, so go ahead. Note that there are two traceback printing functions - in the interpreter in traceback.c and in the library in traceback.py. They are expected to work the same as much as possible. If you add a test to

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 099a94fba3f9437e29d16ed54215ec8cf65de868 by Miss Islington (bot) in branch '3.10': bpo-45160: Fix refleak in test_ttk_guionly introduced in GH-28291 (GH-29416) (GH-29421)

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 276a3a6a16ebf489607db31ad86c58dd89567306 by Miss Islington (bot) in branch '3.9': bpo-45160: Fix refleak in test_ttk_guionly introduced in GH-28291 (GH-29416) (GH-29420)

[issue45725] test_freeze doesn't clean up after itself

2021-11-05 Thread Mark Shannon
New submission from Mark Shannon : test_tools leaves a copy of the source in Tools/freeze/test/outdir/ which messes up grep and other tools used for searching the source. -- components: Tests messages: 405784 nosy: Mark.Shannon, eric.snow priority: normal severity: normal status: open

[issue45726] Documentation for `@singledispatch` and `@singledispatchmethod` could be improved

2021-11-05 Thread Alex Waygood
Change by Alex Waygood : -- keywords: +patch pull_requests: +27679 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29426 ___ Python tracker ___

[issue45615] Missing test for type of error when printing traceback for non-exception

2021-11-05 Thread Nikita Sobolev
Nikita Sobolev added the comment: Thanks! пт, 5 нояб. 2021 г. в 12:47, Irit Katriel : > > Irit Katriel added the comment: > > It's been merged now, so go ahead. > > Note that there are two traceback printing functions - in the interpreter > in traceback.c and in the library in traceback.py.

[issue45677] [doc] improve sqlite3 docs

2021-11-05 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: See also discussion on Discourse: https://discuss.python.org/t/avoid-addressing-the-user-directly-when-writing-docs/11671 -- ___ Python tracker

[issue45724] Segmentation fault

2021-11-05 Thread Eric V. Smith
Eric V. Smith added the comment: I assume this is a problem with the third party library, not with Python itself. If so, you'll have to contact the authors of OneForAll. But if you can create a small program that demonstrates the problem, maybe someone here could take a look at it. As it

[issue23449] Fatal errors rebuilding 3.5 from Visual Studio Windows 8.1 64 bit

2021-11-05 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue32291] Value error for string shared memory in multiprocessing

2021-11-05 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24319] Crash during "make coverage-report"

2021-11-05 Thread Irit Katriel
Irit Katriel added the comment: Please reopen or create a new issue if you see it on a current python version. -- resolution: -> out of date stage: -> resolved status: pending -> closed ___ Python tracker

[issue45675] pkgutil.get_data() doesn't add subpackages to parent packages when importing

2021-11-05 Thread Brett Cannon
Brett Cannon added the comment: FYI the long-term plan is to deprecate pkgutil, so I would use newer APIs as provided by importlib. -- ___ Python tracker ___

[issue43158] uuid won't build when libuuid is installed in a non-standard place

2021-11-05 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27687 status: pending -> open pull_request: https://github.com/python/cpython/pull/29433 ___ Python tracker ___

[issue36281] OSError: handle is closed for ProcessPoolExecutor and run_in_executor

2021-11-05 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45731] Handle --enable-loadable-sqlite-extensions in configure

2021-11-05 Thread Christian Heimes
New submission from Christian Heimes : The --enable-loadable-sqlite-extensions configure option is currently handled by a check in setup.py. The approach is incompatible with Modules/Setup and yields incorrect results for --enable-loadable-sqlite-extensions=no. Instead of reading the value

[issue45730] ERROR: PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl is not a supported wheel on this platform

2021-11-05 Thread Joef Huang
Joef Huang added the comment: Thanks Christian. But why the python installer suddenly started using cp39 of the yaml wheel? It used to be using cp36 of the wheel which was working fine. Trying to gather more information so that I can talk to the 3rd party about this. --

[issue22678] An OSError subclass for "no space left on device" would be nice: NoSpaceError

2021-11-05 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> rejected stage: patch review -> resolved status: pending -> closed ___ Python tracker ___

[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-05 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45731] Handle --enable-loadable-sqlite-extensions in configure

2021-11-05 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +27688 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29434 ___ Python tracker

[issue45730] ERROR: PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl is not a supported wheel on this platform

2021-11-05 Thread Christian Heimes
Christian Heimes added the comment: This is the wrong place to report bugs with third party packages or wheels. The Python bug tracker is only for core development. Please use one of the community channels to get assistance, https://www.python.org/community/ -- nosy:

[issue45679] typing.Literal[True] is implicitly converted to typing.Literal[1]

2021-11-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 60b5333fa936a7e7f078a82e0fa3752cc9b6c5fb by Nikita Sobolev in branch 'main': bpo-45679: add `tuple` tests with `lru_cache` to `test_functools` (GH-29339) https://github.com/python/cpython/commit/60b5333fa936a7e7f078a82e0fa3752cc9b6c5fb

[issue45726] Documentation for `@singledispatch` and `@singledispatchmethod` could be improved

2021-11-05 Thread Alex Waygood
Alex Waygood added the comment: Thanks for reviewing and merging, Łukasz -- appreciate it! -- ___ Python tracker ___ ___

[issue45718] asyncio: MultiLoopWatcher has a race condition (Proposed work-around)

2021-11-05 Thread William Fisher
William Fisher added the comment: Thanks, I will comment on bpo-38323 directly. -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker ___

[issue45630] Dump CodeObject API for debugging

2021-11-05 Thread penguin_wwy
penguin_wwy <940375...@qq.com> added the comment: I hope that this function can be used in the _PyEval_EvalFrameDefault(or other customized eval_frame), for example, after calling the _Py_Quicken to confirm whether the instruction is modified correctly

[issue45243] [sqlite3] add support for changing connection limits

2021-11-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 3d42cd9461e60c7427f3793f640cd975fbd99289 by Erlend Egeberg Aasland in branch 'main': bpo-45243: Use connection limits to simplify `sqlite3` tests (GH-29356) https://github.com/python/cpython/commit/3d42cd9461e60c7427f3793f640cd975fbd99289

[issue38323] asyncio: MultiLoopWatcher has a race condition (test_asyncio: test_close_kill_running() hangs on AMD64 RHEL7 Refleaks 3.x)

2021-11-05 Thread William Fisher
William Fisher added the comment: asyncio.MultiLoopChildWatcher has two problems that create a race condition. 1. The SIGCHLD signal handler does not guard against interruption/re-entry. 2. The SIGCHLD signal handler can interrupt add_child_handler's `self._do_waitpid(pid)`. Symptoms: Log

[issue45699] AttributeError: 'list' object has no attribute 'find'

2021-11-05 Thread Éric Araujo
Éric Araujo added the comment: Also note that Python 3.6 only receives security updates now. Does your problem still happen with a current version? -- components: -Parser nosy: +eric.araujo status: open -> pending type: behavior -> ___ Python

[issue45684] `functools.singledispatchmethod` does not define `__class_getitem__`

2021-11-05 Thread Alex Waygood
Alex Waygood added the comment: To clarify why this is an issue: It's probably quite improbable that anybody would ever need to use `singledispatchmethod` in a type annotation. But, if they do, they'll find themselves in an impossible situation if they're using mypy with the `--strict`

[issue45729] [doc] "history and license" link has wrong target

2021-11-05 Thread Éric Araujo
Éric Araujo added the comment: Tracked to https://github.com/python/python-docs-theme/issues/89 AlexWaygood: can I ask why add pseudo-tags to the title field when we do have structured data (components set to doc) on this tracker? Is it a new practice? -- nosy: +AlexWaygood

[issue41122] functools.singledispatchfunction has confusing error message if no positional arguments are passed in

2021-11-05 Thread Alex Waygood
Change by Alex Waygood : -- nosy: +AlexWaygood, lukasz.langa, rhettinger versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.8 ___ Python tracker ___

[issue45726] Documentation for `@singledispatch` and `@singledispatchmethod` could be improved

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Alex! ✨  ✨ I'm not a native speaker so your review of my language use was helpful 邏 -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue45729] [doc] "history and license" link has wrong target

2021-11-05 Thread Alex Waygood
Alex Waygood added the comment: @Éric: I personally found it difficult to immediately understand what the issue was about when reading only the title on the BPO homepage, and thought the change in title would help clarify, having seen other documentation issues marked similarly on the

[issue45726] Documentation for `@singledispatch` and `@singledispatchmethod` could be improved

2021-11-05 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +27685 pull_request: https://github.com/python/cpython/pull/29430 ___ Python tracker

[issue45726] Documentation for `@singledispatch` and `@singledispatchmethod` could be improved

2021-11-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +27686 pull_request: https://github.com/python/cpython/pull/29431 ___ Python tracker ___

[issue45675] pkgutil.get_data() doesn't add subpackages to parent packages when importing

2021-11-05 Thread Éric Araujo
Change by Éric Araujo : -- nosy: +brett.cannon, eric.snow, ncoghlan versions: +Python 3.11 -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___

[issue45512] [sqlite3] simplify "isolation level"

2021-11-05 Thread Dong-hee Na
Dong-hee Na added the comment: Hmm, now I understood what you intended, The code was hard to read without knowing the condition of the begin_statement. Would this be a trade-off in terms of code readability? -- nosy: +corona10 ___ Python tracker

[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-05 Thread Marc Culler
Marc Culler added the comment: Well, not exactly ... culler@abner ~ % export SYSTEM_VERSION_COMPAT=1 culler@abner ~ % sw_vers ProductName:Mac OS X ProductVersion: 10.16 BuildVersion: 20G224 culler@abner ~ % export SYSTEM_VERSION_COMPAT=0 culler@abner ~ % sw_vers

[issue45704] string.Formatter.parse does not handle auto-numbered positional fields

2021-11-05 Thread Eric V. Smith
Eric V. Smith added the comment: That is, return field_name as an int if it's an int, otherwise as a string. -- ___ Python tracker ___

[issue45729] [doc] "history and license" link has wrong target

2021-11-05 Thread Alex Waygood
Change by Alex Waygood : -- title: "history and license" link has wrong target -> [doc] "history and license" link has wrong target ___ Python tracker ___

[issue45729] "history and license" link has wrong target

2021-11-05 Thread Éric Araujo
Éric Araujo added the comment: It happens on all pages for all versions, because the link is empty. 3.8 doesn’t have that line so doesn’t show the bug. I am trying to find where that is defined. Strangely, I don’t find results looking for `please donate` which is the line below… --

[issue45730] ERROR: PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl is not a supported wheel on this platform

2021-11-05 Thread Joef Huang
New submission from Joef Huang : We have been using this command to install Python to our container: RUN pip3 install -U pip && \ pip install wheel && \ pip wheel -w /tmp/wheels It started failing today with the following error: ERROR:

[issue45731] Handle --enable-loadable-sqlite-extensions in configure

2021-11-05 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +erlendaasland ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45720] Remove shlwapi dependency on Windows

2021-11-05 Thread Steve Dower
Steve Dower added the comment: New changeset a4774f42e35861c4bb16928cffb011c2d8a285ac by Steve Dower in branch 'main': bpo-45720: Drop references to shlwapi.dll on Windows (GH-29417) https://github.com/python/cpython/commit/a4774f42e35861c4bb16928cffb011c2d8a285ac --

[issue45730] ERROR: PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl is not a supported wheel on this platform

2021-11-05 Thread Eric V. Smith
Eric V. Smith added the comment: This is really a question for pip, which is a third party product (despite a version of it shipping with core python). You can find their issue tracker at https://pip.pypa.io/en/stable/ When reporting the bug there, you'll need to provide information about

[issue45720] Remove shlwapi dependency on Windows

2021-11-05 Thread Eryk Sun
Eryk Sun added the comment: > I also don't actually see gdi32 being transitively loaded as > claimed in the Twitter thread, even back to 3.8. So presumably > there's something else going on to cause that issue. Since Windows XP, shlwapi.dll has increasingly made use of delay loading, but up

[issue45732] Update python.org Windows and macOS installers to use Tk 8.6.12

2021-11-05 Thread Ned Deily
New submission from Ned Deily : https://sourceforge.net/p/tcl/mailman/message/37380142/ -- components: Build, Windows, macOS messages: 405834 nosy: ned.deily, paul.moore, ronaldoussoren, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Update

[issue43158] uuid won't build when libuuid is installed in a non-standard place

2021-11-05 Thread Christian Heimes
Christian Heimes added the comment: New changeset 9b0f45c069863517a24239da301a1bf1697ac2e7 by Christian Heimes in branch 'main': bpo-43158: Regenerate configure again (GH-29433) https://github.com/python/cpython/commit/9b0f45c069863517a24239da301a1bf1697ac2e7 --

[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-05 Thread Ned Deily
Ned Deily added the comment: Thanks everyone, especially Marc! python.org macOS installers for 3.9.8, 3.10.0, and 3.11.0a2 with patched versions of Tk to avoid the filedialog problems on macOS 12 Monterey are now released and available for download. We can now close this issue and move on

  1   2   >