[issue46249] [sqlite3] move set lastrowid out of the query loop and enable it for executemany()

2022-01-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 11.01.2022 21:30, Erlend E. Aasland wrote: > >> I'd suggest to deprecate the cursor.lastrowid attribute and >> instead point people to the much more useful [...] > > Yes, I think mentioning the RETURNING ROWID trick in the sqlite3 docs is a > very

[issue46354] AttributeError: module 'collections' has no attribute 'Mapping'

2022-01-12 Thread Alex Waygood
New submission from Alex Waygood : Hi -- thanks for the report! You haven't given us many details here, but I think this is intentional behaviour, not a bug -- this was changed in Issue37324. Importing `Mapping` (along with many other names) directly from `collections`, instead of from

[issue46354] AttributeError: module 'collections' has no attribute 'Mapping'

2022-01-12 Thread Marek Ľach
Change by Marek Ľach : -- nosy: mareklachbc priority: normal severity: normal status: open title: AttributeError: module 'collections' has no attribute 'Mapping' type: behavior versions: Python 3.10 ___ Python tracker

[issue46314] Stray RESUME opcode for unused lambda

2022-01-12 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: > This fixes the problems I was seeing, thanks. Good; removing release blocker status. Keeping this open until Mark has added a NEWS item. -- nosy: +erlendaasland priority: release blocker -> ___ Python

[issue46353] 'pydoc -k' fails when some module's loader is not found

2022-01-12 Thread Denis Laxalde
Change by Denis Laxalde : -- keywords: +patch pull_requests: +28758 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30557 ___ Python tracker ___

[issue44133] Some C-API symbols (e.g. Py_FrozenMain) are not always exported

2022-01-12 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +28757 pull_request: https://github.com/python/cpython/pull/30556 ___ Python tracker ___

[issue46331] 3.11: tracing revisits class line after class docstring

2022-01-12 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue46314] Stray RESUME opcode for unused lambda

2022-01-12 Thread Ned Batchelder
Ned Batchelder added the comment: This fixes the problems I was seeing, thanks. -- ___ Python tracker ___ ___ Python-bugs-list

[issue46331] 3.11: tracing revisits class line after class docstring

2022-01-12 Thread Ned Batchelder
Ned Batchelder added the comment: Yes, thanks, this fixes it. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue46335] asyncio.create_subprocess_exec throws RuntimeError yet still executes subprogram

2022-01-12 Thread Andrew Svetlov
Andrew Svetlov added the comment: Yes, your environment is clear. As I see from traceback, you are stuck not with new process creation but with new thread starting. The thread is used for waiting for the started process to finish. It is the default configuration. Maybe you need an

[issue46352] Spam

2022-01-12 Thread Eric V. Smith
Change by Eric V. Smith : Removed file: https://bugs.python.org/file50558/Arlo camera setup.jpg ___ Python tracker ___ ___ Python-bugs-list

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

2022-01-12 Thread Julien Palard
Julien Palard added the comment: I checked on docs.python.org and it's fixed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue46353] 'pydoc -k' fails when some module's loader is not found

2022-01-12 Thread Christian Heimes
Christian Heimes added the comment: An exception is not a crash. We reserve the word "crash" for segfaults. -- nosy: +christian.heimes title: 'pydoc -k' crashes when some module's loader is not found -> 'pydoc -k' fails when some module's loader is not found type: crash -> behavior

[issue46353] 'pydoc -k' crashes when some module's loader is not found

2022-01-12 Thread Denis Laxalde
New submission from Denis Laxalde : On my (Debian 10) system, 'pydoc -k' crashes as follows: $ python3 -m pydoc -k foo Traceback (most recent call last): File "/usr/lib/python3.9/runpy.py", line 197, in _run_module_as_main return

[issue37295] Possible optimizations for math.comb()

2022-01-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: Ran some timings on the pure python version with and without the precomputed diagonal: [C(n, k) for k in range(n+1)] New CodeBaseline - - n=85 156 usec160 usec n=137 632 usec 1.82

[issue39298] add BLAKE3 to hashlib

2022-01-12 Thread Michał Górny
Michał Górny added the comment: I would still find it helpful to have a "proper" "blake3-c" package on normal pypi, for those of us who can't rely on Rust being present immediately. -- ___ Python tracker

<    1   2