[issue43743] BlockingIOError: [Errno 11] Resource temporarily unavailable: on GPFS.

2021-05-10 Thread Giampaolo Rodola'
Change by Giampaolo Rodola' : -- pull_requests: +24674 pull_request: https://github.com/python/cpython/pull/26024 ___ Python tracker ___ ___

[issue44100] test__xxsubinterpreters: test_one() fails in AMD64 Fedora Stable 3.x: "Fatal Python error: Py_EndInterpreter: thread still has a frame"

2021-05-10 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-37224 "[subinterpreters] test__xxsubinterpreters fails randomly" that I reported 2 years ago and is not fixed yet. -- ___ Python tracker __

[issue44068] Possible divide by zero problems

2021-05-10 Thread STINNER Victor
STINNER Victor added the comment: > Should we add an explicit check on variable char_size before using it in > division? Search for "There are 4 forms of Unicode strings" in Include/cpython/unicodeobject.h. char_size cannot be 0 in resize_compact(): it's checked by 2 assertions: assert

[issue41282] Deprecate and remove distutils

2021-05-10 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-10 Thread STINNER Victor
STINNER Victor added the comment: Thanks Ronald! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue40222] "Zero cost" exception handling

2021-05-10 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: It seems that we have broken the stable ABI of PyCode_NewWithPosOnlyArgs as it has now another parameter. We need to either create a new private constructor or a new public constructor, but the ABI cannot change. -- __

[issue40222] "Zero cost" exception handling

2021-05-10 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +petr.viktorin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue40943] PEP 353: Drop support for PyArg_ParseTuple() "#" formats when PY_SSIZE_T_CLEAN is not defined

2021-05-10 Thread STINNER Victor
STINNER Victor added the comment: commit 4ebf4a6bfad4afcbab3baf9c0159c7767e2a64c0 Author: Inada Naoki Date: Fri May 7 11:56:48 2021 +0900 bpo-40943: Fix skipitem() didn't raise SystemError (GH-25937) `convertitem()` raises `SystemError` when '#' is used without `PY_SSIZE_T_CLE

[issue35633] test_eintr fails on AIX since fcntl functions were modified

2021-05-10 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue44037] Broad performance regression from 3.10a7 to 3.10b1 with python.org macOS binaries

2021-05-10 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue33376] [pysqlite] Duplicate rows can be returned after rolling back a transaction

2021-05-10 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: I believe the former proposed solution is the correct solution. I'm digging though the pysqlite git history (both in the original repo and in CPython), the SQLite changelogs, and different test suites to prove me wrong :) I'm using bpo-44092 to track my f

[issue38250] enum.Flag should be more set-like

2021-05-10 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue44105] tempfile.TemporaryDirectory deleted after call to subprocess.run in threads

2021-05-10 Thread Colas Le Guernic
New submission from Colas Le Guernic : Yet another weird bug when one creates sub-processes from threads. I found several issues mentioning ThreadPoolExecutor and subprocess.run but I believe this one is different. When creating a temporary directory with tempfile.TemporaryDirectory (with or

[issue34367] AsyncResult.get() only notifies one thread

2021-05-10 Thread Irit Katriel
Irit Katriel added the comment: Fixed in Python 3 and Python 2 is past EOL. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___

[issue44070] __file__ is now fully qualified in 3.8 and 3.9

2021-05-10 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +24675 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26025 ___ Python tracker ___

[issue21501] docs: mmap example for use in documentation

2021-05-10 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy title: submitting mmap example for use in documentation -> docs: mmap example for use in documentation versions: +Python 3.11 -Python 2.7 ___ Python tracker __

[issue44105] tempfile.TemporaryDirectory deleted after call to subprocess.run in threads

2021-05-10 Thread Colas Le Guernic
Change by Colas Le Guernic : -- components: +Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue44092] [sqlite3] consider removing special rollback handling

2021-05-10 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +24676 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26026 ___ Python tracker ___ ___

[issue44070] __file__ is now fully qualified in 3.8 and 3.9

2021-05-10 Thread Steve Dower
Steve Dower added the comment: New changeset 23822e2c654e950bcfa563e27b99bcb46187ac8b by Steve Dower in branch '3.9': bpo-44070: No longer eagerly makes import filenames absolute, except for extension modules (GH-26025) https://github.com/python/cpython/commit/23822e2c654e950bcfa563e27b99bcb

[issue44106] [sqlite3] don't use politicians in examples/docs

2021-05-10 Thread Erlend E. Aasland
New submission from Erlend E. Aasland : In GH-25003, we rewrote one of the database examples to use programming languages iso. political persons. However, there are still some politicians lurking in the sqlite3 docs. Suggesting to get rid of those as well. See also Berker's comment: https://g

[issue44106] [sqlite3] don't use politicians in examples/docs

2021-05-10 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- keywords: +patch pull_requests: +24677 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26027 ___ Python tracker __

[issue44070] __file__ is now fully qualified in 3.8 and 3.9

2021-05-10 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +24678 pull_request: https://github.com/python/cpython/pull/26028 ___ Python tracker ___ _

[issue44070] __file__ is now fully qualified in 3.8 and 3.9

2021-05-10 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +24679 pull_request: https://github.com/python/cpython/pull/26029 ___ Python tracker ___ _

[issue44070] __file__ is now fully qualified in 3.8 and 3.9

2021-05-10 Thread Steve Dower
Steve Dower added the comment: New changeset b4884083aed9bfec22c4da0e0223ad6a04a4bef2 by Steve Dower in branch '3.9': bpo-44070: Clarify NEWS message to specify the version when the behaviour was introduced (GH-26029) https://github.com/python/cpython/commit/b4884083aed9bfec22c4da0e0223ad6a0

[issue36841] Supporting customization of float encoding in JSON

2021-05-10 Thread Éric Araujo
Éric Araujo added the comment: I think this should be discussed on the mailing list or Discourse, to get use cases and needs. -- nosy: +eric.araujo versions: +Python 3.11 -Python 3.8 ___ Python tracker _

[issue13657] IDLE doesn't recognize resetting sys.ps1.

2021-05-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Starting with 3.10.0b1, Shell is being reworked in ways that make this issue, as formulated, out of date. Solving the indent problems means that prompt must be removed from the first line of interactive input. #37892. The initial solution is to put >>> an

[issue36216] CVE-2019-9636: urlsplit does not handle NFKC normalization

2021-05-10 Thread dcockcn
Change by dcockcn : -- versions: -Python 2.7, Python 3.4, Python 3.5, Python 3.7, Python 3.8 ___ Python tracker ___ ___ Python-bugs

[issue36216] CVE-2019-9636: urlsplit does not handle NFKC normalization

2021-05-10 Thread dcockcn
Change by dcockcn : -- components: +FreeBSD -Unicode nosy: +koobs ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

<    1   2