[issue45760] Remove "PyNumber_InMatrixMultiply"

2021-11-26 Thread Dong-hee Na
Change by Dong-hee Na : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue45760] Remove "PyNumber_InMatrixMultiply"

2021-11-26 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset db671b010cb4662011c6e6567a1f4fcd509102b8 by Dong-hee Na in branch 'main': bpo-45760: Remove PyNumber_InMatrixMultiply (GH-29751) https://github.com/python/cpython/commit/db671b010cb4662011c6e6567a1f4fcd509102b8 -- ___

[issue45760] Remove "PyNumber_InMatrixMultiply"

2021-11-24 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch nosy: +corona10 nosy_count: 3.0 -> 4.0 pull_requests: +27988 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29751 ___ Python tracker _

[issue45760] Remove "PyNumber_InMatrixMultiply"

2021-11-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: Alternatively, fix the misspelling in the macro and delete the redundant expanded code below. -- nosy: +rhettinger ___ Python tracker ___

[issue45760] Remove "PyNumber_InMatrixMultiply"

2021-11-08 Thread theeshallnotknowethme
theeshallnotknowethme added the comment: Also with this, could anyone also remove the unused `VISIT_SLICE` macro in 'Python/compile.c'? Thanks. -- nosy: +February291948 ___ Python tracker __

[issue45760] Remove "PyNumber_InMatrixMultiply"

2021-11-08 Thread Brandt Bucher
New submission from Brandt Bucher : Here's a weird one: for the last 8 years, we've defined a function called "PyNumber_InMatrixMultiply" in abstract.c. It's a pretty clear misspelling of "PyNumber_InPlaceMatrixMultiply", which is *also* defined in that file. There's no documentation or tests