From report at bugs.python.org Fri Apr 1 01:45:58 2022 From: report at bugs.python.org (Ma Lin) Date: Fri, 01 Apr 2022 05:45:58 +0000 Subject: [issue23689] Memory leak in Modules/sre_lib.h In-Reply-To: <1426611380.23.0.46113718722.issue23689@psf.upfronthosting.co.za> Message-ID: <1648791958.68.0.226706458774.issue23689@roundup.psfhosted.org> Change by Ma Lin : ---------- pull_requests: +30298 pull_request: https://github.com/python/cpython/pull/32223 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 02:33:14 2022 From: report at bugs.python.org (=?utf-8?b?VmVkcmFuIMSMYcSNacSH?=) Date: Fri, 01 Apr 2022 06:33:14 +0000 Subject: [issue39090] Document various options for getting the absolute path from pathlib.Path objects In-Reply-To: <1576693250.66.0.453775762211.issue39090@roundup.psfhosted.org> Message-ID: <1648794794.06.0.274869333471.issue39090@roundup.psfhosted.org> Vedran ?a?i? added the comment: > First, I hope we all agree: > 'C:\Windows\..\Program Files' and '/usr/../bin' == relative path I don't agree. To me, absolute means regardless of a reference point. So, absolute path would be a path that refers to the same entity from whichever directory you reference it. And that is surely the case for these two. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:17:02 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 08:17:02 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648801022.72.0.155253235861.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30299 pull_request: https://github.com/python/cpython/pull/32224 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:17:23 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 08:17:23 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648801043.47.0.270071347932.issue47152@roundup.psfhosted.org> STINNER Victor added the comment: sre_constants, sre_compile and sre_parse are not tested and are not documented. I don't consider them as public API currently. If someone has good reason to use them, IMO we must clearly define which exact API is needed, properly document and test it. If we expose something, I don't think that the API would be exposed as re.sre_xxx.xxx, but as re.xxx. I suggest to hide sre_xxx submodules by adding an underscore to their name. Moreover, the "sre_" prefix is now redundant. I suggest renaming: * sre_constants => re._constants * sre_compile => re._compile * sre_parse => re._parse ---------- nosy: +vstinner _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:18:08 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 08:18:08 +0000 Subject: [issue46850] [C API] Move _PyEval_EvalFrameDefault() to the internal C API In-Reply-To: <1645716984.87.0.22272006941.issue46850@roundup.psfhosted.org> Message-ID: <1648801088.89.0.777395523912.issue46850@roundup.psfhosted.org> STINNER Victor added the comment: New changeset b9a5522dd952125a99ff554f01f311cae25f5a91 by Victor Stinner in branch 'main': bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052) https://github.com/python/cpython/commit/b9a5522dd952125a99ff554f01f311cae25f5a91 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:32:18 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 08:32:18 +0000 Subject: [issue32547] csv.DictWriter emits strange errors if fieldnames is an iterator In-Reply-To: <1515890504.43.0.467229070634.issue32547@psf.upfronthosting.co.za> Message-ID: <1648801938.06.0.807029960816.issue32547@roundup.psfhosted.org> Sam Ezeh added the comment: I've submitted a patch that introduces code that raises TypeError at construction if `fieldnames` is not a sequence ---------- keywords: +patch nosy: +sam_ezeh Added file: https://bugs.python.org/file50709/sam_ezeh.patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:33:05 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 08:33:05 +0000 Subject: [issue32547] csv.DictWriter emits strange errors if fieldnames is an iterator In-Reply-To: <1515890504.43.0.467229070634.issue32547@psf.upfronthosting.co.za> Message-ID: <1648801985.19.0.944136144347.issue32547@roundup.psfhosted.org> Change by Sam Ezeh : Removed file: https://bugs.python.org/file50709/sam_ezeh.patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:33:33 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 08:33:33 +0000 Subject: [issue32547] csv.DictWriter emits strange errors if fieldnames is an iterator In-Reply-To: <1515890504.43.0.467229070634.issue32547@psf.upfronthosting.co.za> Message-ID: <1648802013.26.0.418970543805.issue32547@roundup.psfhosted.org> Change by Sam Ezeh : Added file: https://bugs.python.org/file50710/sam_ezeh.patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:34:54 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 08:34:54 +0000 Subject: [issue32547] csv.DictWriter emits strange errors if fieldnames is an iterator In-Reply-To: <1515890504.43.0.467229070634.issue32547@psf.upfronthosting.co.za> Message-ID: <1648802094.25.0.687353279966.issue32547@roundup.psfhosted.org> Change by Sam Ezeh : Removed file: https://bugs.python.org/file50710/sam_ezeh.patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:35:10 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 08:35:10 +0000 Subject: [issue32547] csv.DictWriter emits strange errors if fieldnames is an iterator In-Reply-To: <1515890504.43.0.467229070634.issue32547@psf.upfronthosting.co.za> Message-ID: <1648802110.88.0.459621324303.issue32547@roundup.psfhosted.org> Change by Sam Ezeh : Added file: https://bugs.python.org/file50711/sam_ezeh.patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:41:33 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 08:41:33 +0000 Subject: [issue32547] csv.DictWriter emits strange errors if fieldnames is an iterator In-Reply-To: <1515890504.43.0.467229070634.issue32547@psf.upfronthosting.co.za> Message-ID: <1648802493.52.0.496102562606.issue32547@roundup.psfhosted.org> Change by Sam Ezeh : ---------- pull_requests: +30300 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32225 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:45:05 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 08:45:05 +0000 Subject: [issue47182] _PyUnicode_Fini should invalidate ucnhash_capi capsule pointer In-Reply-To: <1648733655.32.0.129667440403.issue47182@roundup.psfhosted.org> Message-ID: <1648802705.54.0.956002689852.issue47182@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 55d5c96c57738766eb6f3b5ccfa6599d5f094c18 by Christian Heimes in branch '3.10': [3.10] bpo-47182: Fix crash by named unicode characters after interpreter reinitialization (GH-32212) (GH-32216) https://github.com/python/cpython/commit/55d5c96c57738766eb6f3b5ccfa6599d5f094c18 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:55:02 2022 From: report at bugs.python.org (Jakub Kulik) Date: Fri, 01 Apr 2022 08:55:02 +0000 Subject: [issue44133] Some C-API symbols (e.g. Py_FrozenMain) are not always exported on Unix In-Reply-To: <1621011524.07.0.0957325647121.issue44133@roundup.psfhosted.org> Message-ID: <1648803302.8.0.491417004334.issue44133@roundup.psfhosted.org> Jakub Kulik added the comment: Yes, it still does, and PyThread_get_thread_native_id is the only symbol missing. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:55:13 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 08:55:13 +0000 Subject: [issue46850] [C API] Move _PyEval_EvalFrameDefault() to the internal C API In-Reply-To: <1645716984.87.0.22272006941.issue46850@roundup.psfhosted.org> Message-ID: <1648803313.67.0.25733581402.issue46850@roundup.psfhosted.org> STINNER Victor added the comment: New changeset f877b40e3f7e0d97878884d80fbec879a85ab7e8 by Victor Stinner in branch 'main': bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API (GH-32054) https://github.com/python/cpython/commit/f877b40e3f7e0d97878884d80fbec879a85ab7e8 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:55:48 2022 From: report at bugs.python.org (Jakub Kulik) Date: Fri, 01 Apr 2022 08:55:48 +0000 Subject: [issue47169] Stable ABI: Some optional (#ifdef'd) functions aren't handled correctly In-Reply-To: <1648655557.05.0.882264493098.issue47169@roundup.psfhosted.org> Message-ID: <1648803348.44.0.79191451928.issue47169@roundup.psfhosted.org> Change by Jakub Kulik : ---------- nosy: +kulikjak _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 04:57:03 2022 From: report at bugs.python.org (Jakub Kulik) Date: Fri, 01 Apr 2022 08:57:03 +0000 Subject: [issue47169] Stable ABI: Some optional (#ifdef'd) functions aren't handled correctly In-Reply-To: <1648655557.05.0.882264493098.issue47169@roundup.psfhosted.org> Message-ID: <1648803423.5.0.220952948222.issue47169@roundup.psfhosted.org> Jakub Kulik added the comment: Solaris is affected by missing `PyThread_get_thread_native_id`; all other symbols from the SYMBOL_NAMES tuple (in test_stable_abi_ctypes.py) are available. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 05:04:13 2022 From: report at bugs.python.org (mike mcleod) Date: Fri, 01 Apr 2022 09:04:13 +0000 Subject: [issue47183] Cant compile html docs In-Reply-To: <1648743423.29.0.273944494848.issue47183@roundup.psfhosted.org> Message-ID: <1648803853.02.0.189420148272.issue47183@roundup.psfhosted.org> mike mcleod added the comment: Works for me. The command installed the correct version of Sphinx. Thanks. ---------- stage: -> resolved status: pending -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 05:31:33 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 09:31:33 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 Message-ID: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> New submission from STINNER Victor : Since bpo-40222 "Zero cost exception handling", code object created by from bytecode with code.replace(co_code=new_code) no longer catch exceptions on Python 3.11, unless an exception table is set explicitly. Example: --- def f(): try: print("raise") raise ValueError except ValueError: print("except") else: print("else") print("exit func") def g(): pass if 1: code = f.__code__ g.__code__ = g.__code__.replace( co_code=code.co_code, co_consts=code.co_consts, co_names=code.co_names, co_flags=code.co_flags, co_stacksize=code.co_stacksize) else: g.__code__ = f.__code__ # this code path works on Python 3.11 g() --- Output with Python 3.10 (ok): --- raise except exit func --- Output with Python 3.11 (oops): --- raise Traceback (most recent call last): ... ValueError --- Would it make sense to automatically compute co_exceptiontable on code.replace(co_code=new_code)? If it's computed automatically, I don't know if it makes still sense to call code.replace(co_code=new_code, co_exceptiontable=new_table). It seems like currently, the only implementation to build an exception table lives in Python/compile.c which compiles AST to bytecode. It cannot be reused for code.replace() which takes bytecode as input, not AST. -- If code.replace() is not updated to recompute co_exceptiontable, at least, it would be nice to document the bpo-40222 changes in What's New in Python 3.11 and in the CodeType documentation: * https://docs.python.org/dev/library/types.html#types.CodeType * https://docs.python.org/dev/whatsnew/3.11.html ---------- components: Interpreter Core messages: 416479 nosy: vstinner priority: normal severity: normal status: open title: code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 05:32:03 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 09:32:03 +0000 Subject: [issue40222] "Zero cost" exception handling In-Reply-To: <1586338863.3.0.393749013734.issue40222@roundup.psfhosted.org> Message-ID: <1648805523.39.0.834924405841.issue40222@roundup.psfhosted.org> STINNER Victor added the comment: See bpo-47185: code.replace(co_code=new_code) no longer catch exceptions on Python 3.11. ---------- nosy: +vstinner _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 06:24:13 2022 From: report at bugs.python.org (Mark Shannon) Date: Fri, 01 Apr 2022 10:24:13 +0000 Subject: [issue47009] Streamline list.append for the common case In-Reply-To: <1647233858.4.0.304324509353.issue47009@roundup.psfhosted.org> Message-ID: <1648808653.18.0.385512473319.issue47009@roundup.psfhosted.org> Mark Shannon added the comment: New changeset a0ea7a116ce52a178c02d42b684089758bd7f355 by Dennis Sweeney in branch 'main': bpo-47009: Streamline list.append for the common case (GH-31864) https://github.com/python/cpython/commit/a0ea7a116ce52a178c02d42b684089758bd7f355 ---------- nosy: +Mark.Shannon _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 06:27:04 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 10:27:04 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648808824.73.0.202998321809.issue45847@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30301 pull_request: https://github.com/python/cpython/pull/32229 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 06:42:54 2022 From: report at bugs.python.org (Mark Shannon) Date: Fri, 01 Apr 2022 10:42:54 +0000 Subject: [issue46841] Inline bytecode caches In-Reply-To: <1645669034.5.0.77775951626.issue46841@roundup.psfhosted.org> Message-ID: <1648809774.52.0.186985980259.issue46841@roundup.psfhosted.org> Mark Shannon added the comment: New changeset bd2e47c8830d1b2869f2b4345945a5e0c3b4e3fb by Brandt Bucher in branch 'main': bpo-46841: Avoid unnecessary allocations in code object comparisons (GH-32222) https://github.com/python/cpython/commit/bd2e47c8830d1b2869f2b4345945a5e0c3b4e3fb ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 06:54:22 2022 From: report at bugs.python.org (mike mcleod) Date: Fri, 01 Apr 2022 10:54:22 +0000 Subject: [issue32658] Metacharacter (\) documentation suggestion In-Reply-To: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> Message-ID: <1648810462.44.0.198141554506.issue32658@roundup.psfhosted.org> Change by mike mcleod : ---------- keywords: +patch pull_requests: +30302 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32230 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 07:29:28 2022 From: report at bugs.python.org (Mark Shannon) Date: Fri, 01 Apr 2022 11:29:28 +0000 Subject: [issue46841] Inline bytecode caches In-Reply-To: <1645669034.5.0.77775951626.issue46841@roundup.psfhosted.org> Message-ID: <1648812568.68.0.870868496928.issue46841@roundup.psfhosted.org> Mark Shannon added the comment: New changeset ae9de82e321581e1906c6ef2a7ad83ab30ae3325 by Brandt Bucher in branch 'main': bpo-46841: Use a `bytes` object for `_co_code_adaptive` (GH-32205) https://github.com/python/cpython/commit/ae9de82e321581e1906c6ef2a7ad83ab30ae3325 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 07:48:57 2022 From: report at bugs.python.org (Irit Katriel) Date: Fri, 01 Apr 2022 11:48:57 +0000 Subject: [issue47186] split JUMP_IF_NOT_EXC/EG_MATCH into CHECK_EXC/EG_MATCH + jump Message-ID: <1648813737.43.0.969911623865.issue47186@roundup.psfhosted.org> New submission from Irit Katriel : It would help issue47120 to reduce the number of jump opcodes. The exception matching opcodes JUMP_IF_NOT_EXC_MATCH and JUMP_IF_NOT_EG_MATCH are not hot, and we can split them into a check + ordinary jump. For JUMP_IF_NOT_EXC_MATCH this is simple because the stack effect is the same for the jump and non-jump case. For JUMP_IF_NOT_EG_MATCH the stack effect will need to be made the same, and the opcodes emitted around it adapted. ---------- assignee: iritkatriel components: Interpreter Core messages: 416484 nosy: iritkatriel priority: normal severity: normal status: open title: split JUMP_IF_NOT_EXC/EG_MATCH into CHECK_EXC/EG_MATCH + jump versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 07:52:49 2022 From: report at bugs.python.org (Irit Katriel) Date: Fri, 01 Apr 2022 11:52:49 +0000 Subject: [issue47186] split JUMP_IF_NOT_EXC/EG_MATCH into CHECK_EXC/EG_MATCH + jump In-Reply-To: <1648813737.43.0.969911623865.issue47186@roundup.psfhosted.org> Message-ID: <1648813969.04.0.955308721497.issue47186@roundup.psfhosted.org> Change by Irit Katriel : ---------- keywords: +patch pull_requests: +30303 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32231 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 08:59:48 2022 From: report at bugs.python.org (Mark Shannon) Date: Fri, 01 Apr 2022 12:59:48 +0000 Subject: [issue47186] split JUMP_IF_NOT_EXC/EG_MATCH into CHECK_EXC/EG_MATCH + jump In-Reply-To: <1648813737.43.0.969911623865.issue47186@roundup.psfhosted.org> Message-ID: <1648817988.68.0.613153361951.issue47186@roundup.psfhosted.org> Mark Shannon added the comment: New changeset 04e07c258f4f2ac85e25355242a113f98a706f04 by Irit Katriel in branch 'main': bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231) https://github.com/python/cpython/commit/04e07c258f4f2ac85e25355242a113f98a706f04 ---------- nosy: +Mark.Shannon _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 09:10:15 2022 From: report at bugs.python.org (Jack DeVries) Date: Fri, 01 Apr 2022 13:10:15 +0000 Subject: [issue32658] Metacharacter (\) documentation suggestion In-Reply-To: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> Message-ID: <1648818615.02.0.0691912995835.issue32658@roundup.psfhosted.org> Jack DeVries added the comment: Did you run ``make venv`` to setup your virtual environment? Sphynx themes are usually pip dependencies, so if you're getting a "missing theme" error, it sounds like your virtual environment is not setup right. ---------- nosy: +jack__d _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 09:31:49 2022 From: report at bugs.python.org (Jack DeVries) Date: Fri, 01 Apr 2022 13:31:49 +0000 Subject: [issue38668] Update os.path documentation regarding recommended types In-Reply-To: <1572716464.69.0.00560937952319.issue38668@roundup.psfhosted.org> Message-ID: <1648819909.16.0.535455690944.issue38668@roundup.psfhosted.org> Change by Jack DeVries : ---------- keywords: +patch nosy: +jack__d nosy_count: 2.0 -> 3.0 pull_requests: +30304 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32232 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 09:45:07 2022 From: report at bugs.python.org (Sylvain Marie) Date: Fri, 01 Apr 2022 13:45:07 +0000 Subject: [issue47187] locale module example is wrong for some platforms Message-ID: <1648820707.2.0.705668784444.issue47187@roundup.psfhosted.org> New submission from Sylvain Marie : The example in the doc shows ```python >>> import locale >>> loc = locale.getlocale() # get current locale # use German locale; name might vary with platform >>> locale.setlocale(locale.LC_ALL, 'de_DE') >>> locale.strcoll('f\xe4n', 'foo') # compare a string containing an umlaut >>> locale.setlocale(locale.LC_ALL, '') # use user's preferred locale >>> locale.setlocale(locale.LC_ALL, 'C') # use default (C) locale >>> locale.setlocale(locale.LC_ALL, loc) # restore saved locale ``` However locale.getlocale() does not return the locale for all categories (locale.LC_ALL is even not allowed) but the locale for the LC_CTYPE category. Therefore restoring it using `locale.setlocale(locale.LC_ALL, loc)` does not actually restore the initial settings, and may even fail on some platforms (on mine it does). The correct example should have the first line of code replaced with ``` >>> loc = locale.setlocale(locale.LC_ALL) # get current locale ``` Note: this issue was first reported in the `pandas` library at https://github.com/pandas-dev/pandas/issues/46595 ---------- assignee: docs at python components: Documentation messages: 416487 nosy: docs at python, smarie priority: normal severity: normal status: open title: locale module example is wrong for some platforms versions: Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 09:48:58 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 13:48:58 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648820938.03.0.521241836304.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30305 pull_request: https://github.com/python/cpython/pull/32233 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 10:09:00 2022 From: report at bugs.python.org (Eryk Sun) Date: Fri, 01 Apr 2022 14:09:00 +0000 Subject: [issue39090] Document various options for getting the absolute path from pathlib.Path objects In-Reply-To: <1576693250.66.0.453775762211.issue39090@roundup.psfhosted.org> Message-ID: <1648822140.44.0.972281200899.issue39090@roundup.psfhosted.org> Eryk Sun added the comment: > Now a file that doesn't exist: > >>> mike = Path("palin.jpg") > >>> mike.resolve() > WindowsPath('palin.jpg') This is a bug in resolve(). It was fixed in 3.10+ by switching to ntpath.realpath(). I don't remember why a fix for 3.9 was never applied. Work on the PR may have stalled due to a minor disagreement. > 'C:\Windows\..\Program Files' and '/usr/../bin' == relative path No, a relative path depends on either the current working directory or, for a symlink target, the path of the directory that contains the symlink. In Windows, a rooted path such as r"\spam" is a relative path because it depends on the drive of the current working directory. For example, if the current working directory is r"Z:\eggs", then r"\spam" resolves to r"Z:\spam". Also, a drive-relative paths such as "Z:spam" depends on the working directory of the given drive. Windows supports a separate working directory for each drive. For example, if the working directory of drive "Z:" is r"Z:\eggs", then "Z:spam" resolves to r"Z:\eggs\spam". ---------- nosy: +eryksun _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 10:13:34 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 14:13:34 +0000 Subject: [issue46023] Modules/makesetup generated rules ignore *disabled* In-Reply-To: <1639041830.9.0.701619101169.issue46023@roundup.psfhosted.org> Message-ID: <1648822414.06.0.503816598743.issue46023@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30306 pull_request: https://github.com/python/cpython/pull/32234 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 10:26:55 2022 From: report at bugs.python.org (Eryk Sun) Date: Fri, 01 Apr 2022 14:26:55 +0000 Subject: [issue47161] pathlib method relative_to doesnt work with // in paths In-Reply-To: <1648638112.11.0.570529320382.issue47161@roundup.psfhosted.org> Message-ID: <1648823215.53.0.311335853672.issue47161@roundup.psfhosted.org> Eryk Sun added the comment: > Hmm..., I get it, but Im not gonna lie it's pretty confusing given > that in other places `//` works as a substitute for `/`. Maybe it > should be mentioned in the documentation? In Linux, the system resolves "//" as just "/". In other POSIX systems, such as Cygwin or MSYS2 (running in Windows), "//" is a UNC path of the form "//server/share/filepath". I would expect resolve() to handle this. For example: Linux: >>> p = pathlib.Path('//tmp') >>> p PosixPath('//tmp') >>> p.resolve() PosixPath('/tmp') However, resolve() is broken for a UNC path in 3.9 under MSYS2: >>> p = pathlib.Path('//localhost/C$/temp') >>> p.exists() True >>> p.resolve() PosixPath('/localhost/C$/temp') >>> p.resolve().exists() False realpath() is also broken for this case in 3.9 under MSYS2: >>> os.path.realpath(p) '/localhost/C$/temp' ---------- nosy: +eryksun _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 10:50:27 2022 From: report at bugs.python.org (Mark Shannon) Date: Fri, 01 Apr 2022 14:50:27 +0000 Subject: [issue47172] Make virtual opcodes in the compiler negative and is_jump() identify only proper jumps In-Reply-To: <1648661334.4.0.0596431149271.issue47172@roundup.psfhosted.org> Message-ID: <1648824627.34.0.8797402025.issue47172@roundup.psfhosted.org> Mark Shannon added the comment: New changeset 997ba5d126f5040d5b7536f73bc89049e9f9421d by Irit Katriel in branch 'main': bpo-47172: Compiler enhancements (GH-32200) https://github.com/python/cpython/commit/997ba5d126f5040d5b7536f73bc89049e9f9421d ---------- nosy: +Mark.Shannon _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 10:52:14 2022 From: report at bugs.python.org (Irit Katriel) Date: Fri, 01 Apr 2022 14:52:14 +0000 Subject: [issue47172] Make virtual opcodes in the compiler negative and is_jump() identify only proper jumps In-Reply-To: <1648661334.4.0.0596431149271.issue47172@roundup.psfhosted.org> Message-ID: <1648824734.09.0.729016990385.issue47172@roundup.psfhosted.org> Change by Irit Katriel : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 10:53:25 2022 From: report at bugs.python.org (Eric V. Smith) Date: Fri, 01 Apr 2022 14:53:25 +0000 Subject: [issue46992] If use textwrap.dedent with string formatting, may get unintended sentences. In-Reply-To: <1647061298.28.0.525583998057.issue46992@roundup.psfhosted.org> Message-ID: <1648824805.35.0.0957640262846.issue46992@roundup.psfhosted.org> Eric V. Smith added the comment: I'm going to close this. If you have a more concrete proposal, either re-open this or bring it up on python-ideas. ---------- resolution: -> rejected stage: -> resolved status: pending -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 11:19:20 2022 From: report at bugs.python.org (Petr Viktorin) Date: Fri, 01 Apr 2022 15:19:20 +0000 Subject: [issue47168] Improvements for stable ABI definition files In-Reply-To: <1648654772.36.0.475029979354.issue47168@roundup.psfhosted.org> Message-ID: <1648826360.53.0.514544076432.issue47168@roundup.psfhosted.org> Petr Viktorin added the comment: New changeset 079143df7e40c4d336cb5c385b166aa91058d050 by Petr Viktorin in branch 'main': bpo-47168: Mark files generated by `make regen-limited-abi` as generated (GH-32195) https://github.com/python/cpython/commit/079143df7e40c4d336cb5c385b166aa91058d050 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 11:23:21 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 15:23:21 +0000 Subject: [issue46023] Modules/makesetup generated rules ignore *disabled* In-Reply-To: <1639041830.9.0.701619101169.issue46023@roundup.psfhosted.org> Message-ID: <1648826601.21.0.383447330814.issue46023@roundup.psfhosted.org> Christian Heimes added the comment: New changeset abdd69c95c1711c2dc75be4e784c6d6c80a409b9 by Christian Heimes in branch 'main': bpo-46023: makesetup: skip all duplicate modules (GH-32234) https://github.com/python/cpython/commit/abdd69c95c1711c2dc75be4e784c6d6c80a409b9 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 11:24:04 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 15:24:04 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648826644.2.0.0807848488073.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 17245c815e44e79d4dad6a99b54000956a4a7229 by Christian Heimes in branch 'main': bpo-40280: Add debug Emscripten flavors (GH-32233) https://github.com/python/cpython/commit/17245c815e44e79d4dad6a99b54000956a4a7229 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 11:25:59 2022 From: report at bugs.python.org (=?utf-8?q?Martin_Li=C5=A1ka?=) Date: Fri, 01 Apr 2022 15:25:59 +0000 Subject: [issue47188] ncurses: *** buffer overflow detected ***: terminated with -D_FORTIFY_SOURCE=3 Message-ID: <1648826759.01.0.991092472889.issue47188@roundup.psfhosted.org> New submission from Martin Li?ka : Note -D_FORTIFY_SOURCE=3 will come newly with GCC12. So I noticed the following error: demo.py: ```python import curses curses.initscr() curses.unget_wch('a') ``` Error message: *** buffer overflow detected ***: terminated Backtrace: #0 __pthread_kill_implementation (threadid=, signo=signo at entry=6, no_tid=no_tid at entry=0) at pthread_kill.c:44 #1 0x00007ffff7d1e1e3 in __pthread_kill_internal (signo=6, threadid=) at pthread_kill.c:78 #2 0x00007ffff7cce306 in __GI_raise (sig=sig at entry=6) at ../sysdeps/posix/raise.c:26 #3 0x00007ffff7cb7813 in __GI_abort () at abort.c:79 #4 0x00007ffff7d111b7 in __libc_message (action=action at entry=do_abort, fmt=fmt at entry=0x7ffff7e573cf "*** %s ***: terminated\n") at ../sysdeps/posix/libc_fatal.c:155 #5 0x00007ffff7db630a in __GI___fortify_fail (msg=msg at entry=0x7ffff7e57375 "buffer overflow detected") at fortify_fail.c:26 #6 0x00007ffff7db48b6 in __GI___chk_fail () at chk_fail.c:28 #7 0x00007ffff7db5be8 in __wcrtomb_chk (s=s at entry=0xaae440 "\376\271\255", wchar=wchar at entry=97 L'a', ps=ps at entry=0x7fffffffd4f0, buflen=buflen at entry=1) at wcrtomb_chk.c:31 #8 0x00007ffff7a18b31 in wcrtomb (__ps=, __wchar=, __s=, __s=, __wchar=, __ps=) at /usr/include/bits/wchar2.h:402 #9 unget_wch_sp (sp=0xab0920, wch=97 L'a') at ../ncurses/./widechar/lib_unget_wch.c:89 #10 0x00007ffff7a18b61 in unget_wch (wch=) at ../ncurses/./widechar/lib_unget_wch.c:113 #11 0x00007ffff7a55be5 in _curses_unget_wch (module=, ch='a') at /home/marxin/Programming/cpython/Modules/_cursesmodule.c:4497 #12 0x00000000006f6669 in cfunction_vectorcall_O (func=, args=0x7ffff7b355b0, nargsf=, kwnames=0x0) at Objects/methodobject.c:512 #13 0x000000000042d0e8 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=, args=, callable=, tstate=) at ./Include/cpython/abstract.h:114 #14 PyObject_Vectorcall (kwnames=0x0, nargsf=, args=, callable=) at ./Include/cpython/abstract.h:123 #15 call_function (kwnames=0x0, oparg=, pp_stack=, bounds=0x7fffffffd640, tstate=0xa70520) at Python/ceval.c:5379 #16 _PyEval_EvalFrameDefault (tstate=, f=, throwflag=) at Python/ceval.c:3772 So as seen __wcrtomb_chk is called with buflen == 1 and the function aborts if: size_t __wcrtomb_chk (char *s, wchar_t wchar, mbstate_t *ps, size_t buflen) { /* We do not have to implement the full wctomb semantics since we know that S cannot be NULL when we come here. */ if (buflen < MB_CUR_MAX) __chk_fail (); return __wcrtomb (s, wchar, ps); } Where MB_CUR_MAX == 6. So the question is if the issue is in libcurses library (that is compiler with -D_FORTIFY_SOURCE=3), or in Modules/_cursesmodule.c? ---------- messages: 416495 nosy: Martin Li?ka priority: normal severity: normal status: open title: ncurses: *** buffer overflow detected ***: terminated with -D_FORTIFY_SOURCE=3 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 11:37:10 2022 From: report at bugs.python.org (Eric Snow) Date: Fri, 01 Apr 2022 15:37:10 +0000 Subject: [issue47146] PR check "Check if generated files are up to date" failing intermittently In-Reply-To: <1648486208.6.0.128579800544.issue47146@roundup.psfhosted.org> Message-ID: <1648827430.76.0.284404133796.issue47146@roundup.psfhosted.org> Eric Snow added the comment: Looks like gh-32218 worked. ---------- status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 11:38:13 2022 From: report at bugs.python.org (Barney Gale) Date: Fri, 01 Apr 2022 15:38:13 +0000 Subject: [issue47161] pathlib method relative_to doesnt work with // in paths In-Reply-To: <1648638112.11.0.570529320382.issue47161@roundup.psfhosted.org> Message-ID: <1648827493.22.0.498935519343.issue47161@roundup.psfhosted.org> Change by Barney Gale : ---------- nosy: +barneygale _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 11:55:28 2022 From: report at bugs.python.org (Ken Jin) Date: Fri, 01 Apr 2022 15:55:28 +0000 Subject: [issue47189] What's new in Python 3.11: Faster CPython Message-ID: <1648828528.46.0.606089696241.issue47189@roundup.psfhosted.org> Change by Ken Jin : ---------- assignee: docs at python components: Documentation nosy: docs at python, kj priority: normal severity: normal status: open title: What's new in Python 3.11: Faster CPython versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 11:56:42 2022 From: report at bugs.python.org (Ken Jin) Date: Fri, 01 Apr 2022 15:56:42 +0000 Subject: [issue47189] What's new in Python 3.11: Faster CPython Message-ID: <1648828602.61.0.170960072077.issue47189@roundup.psfhosted.org> Change by Ken Jin : ---------- keywords: +patch pull_requests: +30307 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32235 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 12:03:36 2022 From: report at bugs.python.org (Guido van Rossum) Date: Fri, 01 Apr 2022 16:03:36 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648829016.34.0.787656112188.issue47152@roundup.psfhosted.org> Guido van Rossum added the comment: I don't mind reorganizing this, but I would insist that we keep code using old undocumented things (like the sre_* modules) working for several releases, using the standard deprecation approach. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 12:05:01 2022 From: report at bugs.python.org (Eric Snow) Date: Fri, 01 Apr 2022 16:05:01 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1648829101.22.0.900702011534.issue47185@roundup.psfhosted.org> Change by Eric Snow : ---------- nosy: +Mark.Shannon _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 12:23:10 2022 From: report at bugs.python.org (Guido van Rossum) Date: Fri, 01 Apr 2022 16:23:10 +0000 Subject: [issue40222] "Zero cost" exception handling In-Reply-To: <1586338863.3.0.393749013734.issue40222@roundup.psfhosted.org> Message-ID: <1648830190.0.0.603901249429.issue40222@roundup.psfhosted.org> Guido van Rossum added the comment: > See bpo-47185: code.replace(co_code=new_code) no longer catch exceptions on Python 3.11. Surely the bigger issue is that the contents of new_code itself must be totally different? Also there are other tables that need to be adjusted if you really do change co_code, e.g. the debugging tables. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 12:24:21 2022 From: report at bugs.python.org (Guido van Rossum) Date: Fri, 01 Apr 2022 16:24:21 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1648830261.32.0.222427404747.issue47185@roundup.psfhosted.org> Guido van Rossum added the comment: How would you compute the exception table from the bytecode? There are no clues in the bytecode about where the try and except blocks are. ---------- nosy: +gvanrossum _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 13:18:03 2022 From: report at bugs.python.org (Skip Montanaro) Date: Fri, 01 Apr 2022 17:18:03 +0000 Subject: [issue47190] Integrating tkinter and asyncio event loops Message-ID: <1648833483.36.0.0222315119123.issue47190@roundup.psfhosted.org> New submission from Skip Montanaro : After looking around and asking, it appears there is no built-in integration of the tkinter and asyncio event loops. That would seem to be a good thing, at least as an example. I wrote a simple hello world which creates an AsyncTk class and uses asyncio-driven event handling. This is clearly incomplete, but might be a useful starting point, even if just as a seed for discussion or as an example for tkinter or asyncio documentation. Discussion/thread references: https://mail.python.org/pipermail/python-list/2022-March/905783.html https://discuss.python.org/t/connecting-asyncio-and-tkinter-event-loops/14722/7 The code in its most basic form is attached. (I have another version which uses pynput to track keyboard and mouse events.) ---------- components: Tkinter files: tkasyncio.py messages: 416500 nosy: skip.montanaro priority: normal severity: normal status: open title: Integrating tkinter and asyncio event loops versions: Python 3.11 Added file: https://bugs.python.org/file50712/tkasyncio.py _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 13:47:13 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 17:47:13 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1648835232.99.0.101277985852.issue47185@roundup.psfhosted.org> STINNER Victor added the comment: > How would you compute the exception table from the bytecode? There are no clues in the bytecode about where the try and except blocks are. Disassemble the bytecode to rebuild basic blocks and detect which ones are except blocks. I don't know how the exception table works :-) It's just a guess. Or do you think that this job should be done by the caller? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 13:50:47 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Fri, 01 Apr 2022 17:50:47 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648835447.69.0.519502583864.issue47152@roundup.psfhosted.org> Serhiy Storchaka added the comment: Modules with old names are kept (deprecated). The questions are: 1. Should we keep the sre_ prefix in new submodules? Should we prefix them with underscores? 2. Should we keep only non-underscored names in the sre_* modules or undescored names too? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 14:05:04 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 18:05:04 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1648836304.15.0.435986460147.issue47185@roundup.psfhosted.org> STINNER Victor added the comment: python-dev thread: https://mail.python.org/archives/list/python-dev at python.org/thread/KWSPCLXDHBAP2U4LBSMLQEOC7LREDMPB/ Mark wrote: "You can pass the exception table the same way you pass all the other arguments. The exception table depends on the code, but that is nothing new. The bytecode library already recomputes the consts, names, etc." Constants and names are easy to build, it's just an array and the bytecode refers to their index. Building the exception table is more complicated. It's nice that the format is documented in https://github.com/python/cpython/blob/main/Objects/exception_handling_notes.txt but it would be more convenient to put it in the regular Python documentation (docs.python.org), no? I discovered that file by mistake with filename completion in my editor while looking for Objects/exceptions.c :-) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 14:13:11 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 18:13:11 +0000 Subject: [issue47089] Avoid sporadic failure of test_compileall on Windows In-Reply-To: <1647898446.37.0.407539254542.issue47089@roundup.psfhosted.org> Message-ID: <1648836791.02.0.839928250843.issue47089@roundup.psfhosted.org> STINNER Victor added the comment: New changeset 76b8a075b8a79b08468fd0ed06a489a5c815bc11 by Jeremy Kloth in branch 'main': bpo-47089: Avoid test_compileall failures on Windows (GH-32037) https://github.com/python/cpython/commit/76b8a075b8a79b08468fd0ed06a489a5c815bc11 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 14:13:32 2022 From: report at bugs.python.org (miss-islington) Date: Fri, 01 Apr 2022 18:13:32 +0000 Subject: [issue47089] Avoid sporadic failure of test_compileall on Windows In-Reply-To: <1647898446.37.0.407539254542.issue47089@roundup.psfhosted.org> Message-ID: <1648836812.71.0.0423718192184.issue47089@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +30308 pull_request: https://github.com/python/cpython/pull/32237 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 14:29:22 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 18:29:22 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648837762.92.0.539714172025.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30309 pull_request: https://github.com/python/cpython/pull/32238 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 14:37:04 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Fri, 01 Apr 2022 18:37:04 +0000 Subject: [issue47009] Streamline list.append for the common case In-Reply-To: <1647233858.4.0.304324509353.issue47009@roundup.psfhosted.org> Message-ID: <1648838224.23.0.191771732016.issue47009@roundup.psfhosted.org> Change by Dennis Sweeney : ---------- pull_requests: +30310 pull_request: https://github.com/python/cpython/pull/32239 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 14:40:34 2022 From: report at bugs.python.org (Animatea Animatea) Date: Fri, 01 Apr 2022 18:40:34 +0000 Subject: [issue47191] inspect - getasyncgeneratorstate, getasyncgeneratorlocals Message-ID: <1648838434.06.0.105356419034.issue47191@roundup.psfhosted.org> New submission from Animatea Animatea : Create inspect introspection functions for asyncgen. ```py ASYNCGEN_CREATED = 'ASYNCGEN_CREATED' ASYNCGEN_RUNNING = 'ASYNCGEN_RUNNING' ASYNCGEN_SUSPENDED = 'ASYNCGEN_SUSPENDED' ASYNCGEN_CLOSED = 'ASYNCGEN_CLOSED' def getasyncgeneratorstate(asyncgenerator): """Get current state of a async generator-iterator. Possible states are: ASYNCGEN_CREATED: Waiting to start execution. ASYNCGEN_RUNNING: Currently being executed by the interpreter. ASYNCGEN_SUSPENDED: Currently suspended at a yield expression. ASYNCGEN_CLOSED: Execution has completed. """ if asyncgenerator.ag_running: return ASYNCGEN_RUNNING if asyncgenerator.ag_frame is None: return ASYNCGEN_CLOSED if asyncgenerator.ag_frame.f_lasti == -1: return ASYNCGEN_CREATED return ASYNCGEN_SUSPENDED def getasyncgeneratorlocals(asyncgenerator): """ Get the mapping of async generator local variables to their current values. A dict is returned, with the keys the local variable names and values the bound values.""" if not isasyncgen(asyncgenerator): raise TypeError("{!r} is not a Python generator".format(asyncgenerator)) frame = getattr(asyncgenerator, "ag_frame", None) if frame is not None: return asyncgenerator.ag_frame.f_locals else: return {} ``` ---------- components: Library (Lib) messages: 416505 nosy: animatea.programming priority: normal severity: normal status: open title: inspect - getasyncgeneratorstate, getasyncgeneratorlocals type: enhancement versions: Python 3.10, Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 14:47:06 2022 From: report at bugs.python.org (Dutcho) Date: Fri, 01 Apr 2022 18:47:06 +0000 Subject: [issue47192] sys._getframe audit event has frame as argument in 3.8-3.10 Message-ID: <1648838826.48.0.057451572293.issue47192@roundup.psfhosted.org> New submission from Dutcho : Documentation (https://docs.python.org/3/library/audit_events.html and https://docs.python.org/3/library/sys.html#sys._getframe) states that `sys._getframe()` "raises [...] an auditing event with no arguments". However, Python 3.8-3.10 provide the frame as argument to the hook function. Python 3.11 behaves consistently with documentation. But I couldn't find the change mentioned in the change log. Therefore, I'm uncertain whether that's intentional or not, so whether it'll remain in the release version. This is demonstrated by running snippet `audit.py` ``` import sys sys.addaudithook(print) print(sys.version) sys._getframe() ``` in various versions: ``` 3.8.10 (tags/v3.8.10:3d8993a, May 3 2021, 11:48:03) [MSC v.1928 64 bit (AMD64)] sys._getframe (>,) 3.9.11 (tags/v3.9.11:2de452f, Mar 16 2022, 14:33:45) [MSC v.1929 64 bit (AMD64)] sys._getframe (>,) 3.10.3 (tags/v3.10.3:a342a49, Mar 16 2022, 13:07:40) [MSC v.1929 64 bit (AMD64)] sys._getframe (>,) 3.11.0a6 (main, Mar 7 2022, 16:46:19) [MSC v.1929 64 bit (AMD64)] sys._getframe () ``` ---------- messages: 416506 nosy: Dutcho priority: normal severity: normal status: open title: sys._getframe audit event has frame as argument in 3.8-3.10 versions: Python 3.10, Python 3.8, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 14:59:49 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 18:59:49 +0000 Subject: [issue47135] Allow decimal.localcontext to accept keyword arguments to set context attributes In-Reply-To: <1648376164.23.0.483054740742.issue47135@roundup.psfhosted.org> Message-ID: <1648839589.64.0.393207588993.issue47135@roundup.psfhosted.org> Sam Ezeh added the comment: I'm looking into adding this > Seems reasonable to me, but I think a full implementation would want to throw an error for keyword args that don't already exist as context attributes (otherwise typos would fail silently) For _pydecimal, I think this would automatically happen automatically as Context.__setattr__ raises AttributeError when it's passed a name that isn't a context attribute. For _decimal this can be done with keyword arguments and `PyArg_ParseTupleAndKeywords`. ---------- nosy: +sam_ezeh _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:03:39 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Fri, 01 Apr 2022 19:03:39 +0000 Subject: [issue47089] Avoid sporadic failure of test_compileall on Windows In-Reply-To: <1647898446.37.0.407539254542.issue47089@roundup.psfhosted.org> Message-ID: <1648839819.69.0.312259615977.issue47089@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- pull_requests: +30311 pull_request: https://github.com/python/cpython/pull/32240 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:19:24 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Fri, 01 Apr 2022 19:19:24 +0000 Subject: [issue47193] Use zlib-ng rather than zlib in binary releases Message-ID: <1648840764.27.0.970523906795.issue47193@roundup.psfhosted.org> New submission from Gregory P. Smith : zlib-ng is an optimized zlib library with better performance on most architectures (with contributions from the likes of Google, Cloudflare, and Intel). It is API compatible with zlib. https://github.com/zlib-ng/zlib-ng I believe the only platform we don't use the OS's own zlib on is Windows so I'm tagging this issue Windows. ---------- components: Windows messages: 416508 nosy: gregory.p.smith, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal stage: needs patch status: open title: Use zlib-ng rather than zlib in binary releases type: performance versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:21:13 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 19:21:13 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648840873.37.0.624554921345.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 082d3495d0c820972f09f6109a98ed7eb5a7b79f by Christian Heimes in branch 'main': bpo-40280: Emscripten fork_exec now fails early (GH-32224) https://github.com/python/cpython/commit/082d3495d0c820972f09f6109a98ed7eb5a7b79f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:23:54 2022 From: report at bugs.python.org (Brett Cannon) Date: Fri, 01 Apr 2022 19:23:54 +0000 Subject: [issue39090] Document various options for getting the absolute path from pathlib.Path objects In-Reply-To: <1576693250.66.0.453775762211.issue39090@roundup.psfhosted.org> Message-ID: <1648841034.0.0.284268765827.issue39090@roundup.psfhosted.org> Change by Brett Cannon : ---------- nosy: +barneygale _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:25:42 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Fri, 01 Apr 2022 19:25:42 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases Message-ID: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> New submission from Gregory P. Smith : zlib v1.2.11 as used in Windows binary releases contains a security issue that, while fixed in its git repo years ago, never wound up in a release or a CVE until just now. Folllow the https://www.openwall.com/lists/oss-security/2022/03/24/1 thread and the and recently assigned CVE-2018-25032. I believe we only ship our own zlib on Windows so this issue is tagged as such. The above oss-security thread is where an idea of severity will come out. ---------- components: Extension Modules, Windows messages: 416510 nosy: gregory.p.smith, lukasz.langa, ned.deily, pablogsal, paul.moore, steve.dower, tim.golden, zach.ware priority: release blocker severity: normal stage: needs patch status: open title: Upgrade to zlib v1.2.12 in CPython binary releases type: security versions: Python 3.10, Python 3.11, Python 3.7, Python 3.8, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:26:32 2022 From: report at bugs.python.org (Oleg Iarygin) Date: Fri, 01 Apr 2022 19:26:32 +0000 Subject: [issue47193] Use zlib-ng rather than zlib in binary releases In-Reply-To: <1648840764.27.0.970523906795.issue47193@roundup.psfhosted.org> Message-ID: <1648841192.75.0.375024584187.issue47193@roundup.psfhosted.org> Change by Oleg Iarygin : ---------- nosy: +arhadthedev _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:30:59 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 19:30:59 +0000 Subject: [issue47135] Allow decimal.localcontext to accept keyword arguments to set context attributes In-Reply-To: <1648376164.23.0.483054740742.issue47135@roundup.psfhosted.org> Message-ID: <1648841459.06.0.329608696697.issue47135@roundup.psfhosted.org> Sam Ezeh added the comment: I've uploaded a patch and it seems to work, which I'm very proud of. I'll create some tests, amend documentation and create a news entry. After that, I'll create a pull request on GitHub. ---------- keywords: +patch Added file: https://bugs.python.org/file50713/sam_ezeh.patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:33:47 2022 From: report at bugs.python.org (Eryk Sun) Date: Fri, 01 Apr 2022 19:33:47 +0000 Subject: [issue47170] py launcher on windows opens new terminal window when parsing python script with shebang In-Reply-To: <1648657715.1.0.645220705406.issue47170@roundup.psfhosted.org> Message-ID: <1648841627.05.0.496483662486.issue47170@roundup.psfhosted.org> Eryk Sun added the comment: > This is Windows (shell) behaviour. To avoid this, you need to > add the .py extension to the PATHEXT environment variable. PowerShell reuses the current console session only if .PY is set in PATHEXT. Otherwise Python gets executed with a flag that tells the system to allocate a new console session. For CMD, PATHEXT only affects the file search, not how the file is executed. If the internal START command isn't used, CMD reuses the current console session. The START command defaults to making the system allocate a new console, unless the /B option is used. ---------- nosy: +eryksun _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:35:28 2022 From: report at bugs.python.org (Steven D'Aprano) Date: Fri, 01 Apr 2022 19:35:28 +0000 Subject: [issue47135] Allow decimal.localcontext to accept keyword arguments to set context attributes In-Reply-To: <1648650988.42.0.243255414448.issue47135@roundup.psfhosted.org> Message-ID: <20220401193454.GF27890@ando.pearwood.info> Steven D'Aprano added the comment: I'm not sure what the implementation uses to enforce this, but decimal contexts already seem to reject arbitrary attributes. So a naive implementation that just setattr()'s the keyword arguments will automatically fail: >>> from decimal import getcontext >>> ctx = getcontext() >>> setattr(ctx, 'precision', 10) Traceback (most recent call last): File "", line 1, in AttributeError: 'decimal.Context' object has no attribute 'precision' But you are absolutely correct that however we enforce it, we should avoid allowing typos to silently fail. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 15:51:26 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 19:51:26 +0000 Subject: [issue47135] Allow decimal.localcontext to accept keyword arguments to set context attributes In-Reply-To: <1648376164.23.0.483054740742.issue47135@roundup.psfhosted.org> Message-ID: <1648842686.19.0.630947381938.issue47135@roundup.psfhosted.org> Sam Ezeh added the comment: This is what functionality looks like when supplying incorrect attribute names with the patch. Python 3.11.0a6+ (heads/bpo-47135-dirty:d4bb38f82b, Apr 1 2022, 20:01:56) [GCC 11.1.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import _pydecimal >>> ctx = _pydecimal.getcontext() >>> ctx.precision = 10 Traceback (most recent call last): File "", line 1, in File "/run/media/sam/OS/Git/cpython/Lib/_pydecimal.py", line 3974, in __setattr__ raise AttributeError( ^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'decimal.Context' object has no attribute 'precision' >>> with _pydecimal.localcontext(precision=10) as ctx: ... pass ... Traceback (most recent call last): File "", line 1, in File "/run/media/sam/OS/Git/cpython/Lib/_pydecimal.py", line 506, in localcontext setattr(ctx, key, value) ^^^^^^^^^^^^^^^^^^^^^^^^ File "/run/media/sam/OS/Git/cpython/Lib/_pydecimal.py", line 3974, in __setattr__ raise AttributeError( ^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'decimal.Context' object has no attribute 'precision' >>> import decimal >>> ctx = decimal.getcontext() >>> ctx.precision = 10 Traceback (most recent call last): File "", line 1, in AttributeError: 'decimal.Context' object has no attribute 'precision' >>> with decimal.localcontext(precision=10) as ctx: ... pass ... Traceback (most recent call last): File "", line 1, in TypeError: 'precision' is an invalid keyword argument for this function >>> ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:00:10 2022 From: report at bugs.python.org (Zachary Ware) Date: Fri, 01 Apr 2022 20:00:10 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1648843210.77.0.385932235738.issue47194@roundup.psfhosted.org> Change by Zachary Ware : ---------- keywords: +patch pull_requests: +30312 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32241 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:02:38 2022 From: report at bugs.python.org (Hood Chatham) Date: Fri, 01 Apr 2022 20:02:38 +0000 Subject: [issue47162] Add call trampoline to work around bad fpcasts on Emscripten In-Reply-To: <1648638700.22.0.607965445304.issue47162@roundup.psfhosted.org> Message-ID: <1648843358.13.0.604166940326.issue47162@roundup.psfhosted.org> Hood Chatham added the comment: Note that there are still Python test suite failures in emscripten without these trampolines enabled, for instance test_imp fails. The only trampoline needed to pass the core test suite is _PyImport_InitFunc_TrampolineCall. ---------- nosy: +hoodchatham _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:03:22 2022 From: report at bugs.python.org (mike bayer) Date: Fri, 01 Apr 2022 20:03:22 +0000 Subject: [issue47174] Define behavior of descriptor-typed fields on dataclasses In-Reply-To: <1648666812.33.0.43566752411.issue47174@roundup.psfhosted.org> Message-ID: <1648843402.69.0.116596452576.issue47174@roundup.psfhosted.org> Change by mike bayer : ---------- nosy: +zzzeek _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:04:34 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 20:04:34 +0000 Subject: [issue46023] Modules/makesetup generated rules ignore *disabled* In-Reply-To: <1639041830.9.0.701619101169.issue46023@roundup.psfhosted.org> Message-ID: <1648843474.87.0.220064125912.issue46023@roundup.psfhosted.org> Change by Christian Heimes : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:20:37 2022 From: report at bugs.python.org (Karthikeyan Singaravelan) Date: Fri, 01 Apr 2022 20:20:37 +0000 Subject: [issue47191] inspect - getasyncgeneratorstate, getasyncgeneratorlocals In-Reply-To: <1648838434.06.0.105356419034.issue47191@roundup.psfhosted.org> Message-ID: <1648844437.35.0.993859195682.issue47191@roundup.psfhosted.org> Karthikeyan Singaravelan added the comment: Seems to be duplicate of https://bugs.python.org/issue35759 ---------- nosy: +xtreak _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:23:24 2022 From: report at bugs.python.org (Richard Purdie) Date: Fri, 01 Apr 2022 20:23:24 +0000 Subject: [issue47195] importlib lock race issue in deadlock handling code Message-ID: <1648844604.18.0.0986113969555.issue47195@roundup.psfhosted.org> New submission from Richard Purdie : We've seen tracebacks in production like: File "", line 1004, in _find_and_load(name='oe.gpg_sign', import_=) File "", line 158, in _ModuleLockManager.__enter__() File "", line 110, in _ModuleLock.acquire() KeyError: 139622474778432 and File "", line 1004, in _find_and_load(name='oe.path', import_=) File "", line 158, in _ModuleLockManager.__enter__() File "", line 110, in _ModuleLock.acquire() KeyError: 140438942700992 I've attached a reproduction script which shows that if an import XXX is in progress and waiting at the wrong point when an interrupt arrives (in this case a signal) and triggers it's own import YYY, _blocking_on[tid] in importlib/_bootstrap.py gets overwritten and lost, triggering the traceback we see above upon exit from the second import. I'm using a signal handler here as the interrupt, I don't know what our production source is as yet but this reproducer proves it is possible. ---------- components: Interpreter Core files: testit2.py messages: 416517 nosy: rpurdie priority: normal severity: normal status: open title: importlib lock race issue in deadlock handling code versions: Python 3.10 Added file: https://bugs.python.org/file50714/testit2.py _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:26:07 2022 From: report at bugs.python.org (Karthikeyan Singaravelan) Date: Fri, 01 Apr 2022 20:26:07 +0000 Subject: [issue47192] sys._getframe audit event has frame as argument in 3.8-3.10 In-Reply-To: <1648838826.48.0.057451572293.issue47192@roundup.psfhosted.org> Message-ID: <1648844767.84.0.13089608594.issue47192@roundup.psfhosted.org> Change by Karthikeyan Singaravelan : ---------- nosy: +steve.dower _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:38:46 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 01 Apr 2022 20:38:46 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1648845526.82.0.282401294912.issue47185@roundup.psfhosted.org> STINNER Victor added the comment: Guido (msg416498) > Surely the bigger issue is that the contents of new_code itself must be totally different? Also there are other tables that need to be adjusted if you really do change co_code, e.g. the debugging tables. Do you consider that .replace() must reject changing co_code if other tables are not updated? Debugging tables are not strictly required just to *execute* code, no? If you consider that the caller *must* update co_exceptiontable, replace() must raise an exception in this case, to prevent creating a code object which would behave in a strange way (broken exception handling). If someone really wants testing an empty exception table just for fun, it would still be possible to pass co_exceptiontable=b''. My concern is more about people upgrading to Python 3.11 and who "suddenly" don't get their exceptions handled anymore. I would prefer catching such bug at the replace() call, rather than having to execute the code (and only notice the bug in production? oops). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:38:52 2022 From: report at bugs.python.org (miss-islington) Date: Fri, 01 Apr 2022 20:38:52 +0000 Subject: [issue47089] Avoid sporadic failure of test_compileall on Windows In-Reply-To: <1647898446.37.0.407539254542.issue47089@roundup.psfhosted.org> Message-ID: <1648845532.54.0.770202200959.issue47089@roundup.psfhosted.org> miss-islington added the comment: New changeset 1069d529590850e87a11b8c559a7fb296e9c626a by Miss Islington (bot) in branch '3.10': bpo-47089: Avoid test_compileall failures on Windows (GH-32037) https://github.com/python/cpython/commit/1069d529590850e87a11b8c559a7fb296e9c626a ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 16:49:19 2022 From: report at bugs.python.org (Sam Ezeh) Date: Fri, 01 Apr 2022 20:49:19 +0000 Subject: [issue47135] Allow decimal.localcontext to accept keyword arguments to set context attributes In-Reply-To: <1648376164.23.0.483054740742.issue47135@roundup.psfhosted.org> Message-ID: <1648846159.14.0.323516118372.issue47135@roundup.psfhosted.org> Change by Sam Ezeh : ---------- pull_requests: +30313 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32242 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 17:11:12 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 21:11:12 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648847472.3.0.973538456411.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30314 pull_request: https://github.com/python/cpython/pull/32243 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 17:14:59 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 01 Apr 2022 21:14:59 +0000 Subject: [issue47162] Add call trampoline to work around bad fpcasts on Emscripten In-Reply-To: <1648638700.22.0.607965445304.issue47162@roundup.psfhosted.org> Message-ID: <1648847699.52.0.892329115815.issue47162@roundup.psfhosted.org> Christian Heimes added the comment: Interesting, can you pin point the buggy function pointer? If you link with -gsource-map and deploy the map file, your browser should give you a decent stack trace. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 17:56:18 2022 From: report at bugs.python.org (Hood Chatham) Date: Fri, 01 Apr 2022 21:56:18 +0000 Subject: [issue47162] Add call trampoline to work around bad fpcasts on Emscripten In-Reply-To: <1648638700.22.0.607965445304.issue47162@roundup.psfhosted.org> Message-ID: <1648850178.03.0.016905418234.issue47162@roundup.psfhosted.org> Hood Chatham added the comment: I'm having trouble pinpointing the bad function pointer because chrome cuts off the end of the wasm file with: ``` ;; .... text is truncated due to size ``` Maybe I should follow the directions here, since this is a consistent nuisance. https://www.diverto.hr/en/blog/2020-08-15-WebAssembly-limit/ I have a stack trace but the key info of what function is being called is missing. If chrome didn't truncate the wasm I could figure out what the callee is too. I looked into this before at some point and IIRC the issue is that one initialization code path hands the Init function a spec but the a different path doesn't give it the spec. It wasn't obvious how to fix the problem. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 19:48:49 2022 From: report at bugs.python.org (Hood Chatham) Date: Fri, 01 Apr 2022 23:48:49 +0000 Subject: [issue47162] Add call trampoline to work around bad fpcasts on Emscripten In-Reply-To: <1648638700.22.0.607965445304.issue47162@roundup.psfhosted.org> Message-ID: <1648856929.27.0.649883261355.issue47162@roundup.psfhosted.org> Hood Chatham added the comment: As an update, building the chrome devtools with the wasm limit set to 12Mb following that guide worked fantastic. Highly recommend it. (Though there are a few paths that are out of date, I had to consult google's devtools docs.) The problem is that `PyInit_imp_dummy` takes a spec argument which it ignores. Then the test calls it without a spec. https://github.com/python/cpython/blob/082d3495d0c820972f09f6109a98ed7eb5a7b79f/Modules/_testmultiphase.c#L897 Minimized trigger: ``` import importlib import imp spec = importlib.util.find_spec('_testmultiphase') imp.load_dynamic("test.imp_dummy", spec.origin) ``` Causes `RuntimeError: null function or function signature mismatch` ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 19:53:02 2022 From: report at bugs.python.org (Guido van Rossum) Date: Fri, 01 Apr 2022 23:53:02 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648857182.6.0.0660302786761.issue47152@roundup.psfhosted.org> Guido van Rossum added the comment: 1. If we're reorganizing anyway, I see no reason to keep the old names. 2. For maximum backwards compatibility, I'd say keep as much as you can, as long as keeping it won't interfere with the reorganization. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 20:01:51 2022 From: report at bugs.python.org (Hood Chatham) Date: Sat, 02 Apr 2022 00:01:51 +0000 Subject: [issue47196] Function pointer cast in test_imp Message-ID: <1648857711.17.0.141077263636.issue47196@roundup.psfhosted.org> New submission from Hood Chatham : The function PyInit_imp_dummy is declared as void f(PyObject* spec) and ignores the argument. In the test, it is called via imp.load_dynamic as void f(void). On wasm targets without the call trampolines added in https://bugs.python.org/issue47162 this causes a fatal error. (There's a bit more discussion about this issue in that thread.) ---------- messages: 416524 nosy: christian.heimes, hoodchatham priority: normal severity: normal status: open title: Function pointer cast in test_imp _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 20:02:59 2022 From: report at bugs.python.org (Hood Chatham) Date: Sat, 02 Apr 2022 00:02:59 +0000 Subject: [issue47196] Function pointer cast in test_imp In-Reply-To: <1648857711.17.0.141077263636.issue47196@roundup.psfhosted.org> Message-ID: <1648857779.27.0.0500831912244.issue47196@roundup.psfhosted.org> Change by Hood Chatham : ---------- keywords: +patch nosy: +hoodmane nosy_count: 2.0 -> 3.0 pull_requests: +30315 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32244 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 20:25:32 2022 From: report at bugs.python.org (Hood Chatham) Date: Sat, 02 Apr 2022 00:25:32 +0000 Subject: [issue47196] Function pointer cast in test_imp In-Reply-To: <1648857711.17.0.141077263636.issue47196@roundup.psfhosted.org> Message-ID: <1648859132.85.0.375934638411.issue47196@roundup.psfhosted.org> Hood Chatham added the comment: Every other `PyInit` function in that module also needs the spec argument to be removed in order for test_importlib to pass. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 21:14:09 2022 From: report at bugs.python.org (Hood Chatham) Date: Sat, 02 Apr 2022 01:14:09 +0000 Subject: [issue47197] ctypes mishandles `void` return type Message-ID: <1648862049.34.0.311220561963.issue47197@roundup.psfhosted.org> New submission from Hood Chatham : On wasm targets, `test_code` fails. It's because of a bad function pointer cast. The problematic code is as follows: ```py import ctypes py = ctypes.pythonapi freefunc = ctypes.CFUNCTYPE(None, ctypes.c_voidp) RequestCodeExtraIndex = py._PyEval_RequestCodeExtraIndex RequestCodeExtraIndex.argtypes = (freefunc,) RequestCodeExtraIndex.restype = ctypes.c_ssize_t SetExtra = py._PyCode_SetExtra SetExtra.argtypes = (ctypes.py_object, ctypes.c_ssize_t, ctypes.c_voidp) SetExtra.restype = ctypes.c_int LAST_FREED = None def myfree(ptr): global LAST_FREED LAST_FREED = ptr FREE_FUNC = freefunc(myfree) FREE_INDEX = RequestCodeExtraIndex(FREE_FUNC) # Verify that the provided free function gets invoked # when the code object is cleaned up. f = eval('lambda:42') SetExtra(f.__code__, FREE_INDEX, ctypes.c_voidp(100)) del f # crashes!! ``` The problem: `freefunc = ctypes.CFUNCTYPE(None, ctypes.c_voidp)` declares a function with signature `int f(void*)`. However, the definition of `freefunc` is `void f(void*)`. These function signatures do not agree, and trying to make the call crashes. Due to a bug(?) ctypes can produce closures that have `void` return type but it can't produce simple functions with void return type. Closures code: checks if `restype == Py_None` and if so gives the callback a void return type https://github.com/python/cpython/blob/main/Modules/_ctypes/callbacks.c#L381 Direct call code: calls `_ctypes_get_ffi_type` which never returns `ffi_type_void`: https://github.com/python/cpython/blob/b183f486493e7e4c332566392ef18c6b346a6561/Modules/_ctypes/callproc.c#L1212 ---------- components: ctypes messages: 416526 nosy: christian.heimes, hoodchatham priority: normal severity: normal status: open title: ctypes mishandles `void` return type _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 21:39:59 2022 From: report at bugs.python.org (David Goncalves) Date: Sat, 02 Apr 2022 01:39:59 +0000 Subject: [issue12387] IDLE save keyboard shortcut problem In-Reply-To: <1308765598.77.0.79184481064.issue12387@psf.upfronthosting.co.za> Message-ID: <1648863599.92.0.503609940903.issue12387@roundup.psfhosted.org> Change by David Goncalves : ---------- nosy: +dpg nosy_count: 9.0 -> 10.0 pull_requests: +30316 pull_request: https://github.com/python/cpython/pull/32245 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 21:40:31 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 01:40:31 +0000 Subject: [issue47089] Avoid sporadic failure of test_compileall on Windows In-Reply-To: <1647898446.37.0.407539254542.issue47089@roundup.psfhosted.org> Message-ID: <1648863631.69.0.892616207343.issue47089@roundup.psfhosted.org> STINNER Victor added the comment: New changeset 306a93b4819db611041da735ca3b34117a3bc961 by Jeremy Kloth in branch '3.9': [3.9] bpo-47089: Avoid test_compileall failures on Windows (GH-32037). (GH-32240) https://github.com/python/cpython/commit/306a93b4819db611041da735ca3b34117a3bc961 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 21:41:38 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 01:41:38 +0000 Subject: [issue47089] Avoid sporadic failure of test_compileall on Windows In-Reply-To: <1647898446.37.0.407539254542.issue47089@roundup.psfhosted.org> Message-ID: <1648863698.15.0.820265434863.issue47089@roundup.psfhosted.org> STINNER Victor added the comment: Thanks for this enhancement. I close the issue. Do you know if it does fix the old bpo-37387 issue? ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 21:54:08 2022 From: report at bugs.python.org (Pablo Galindo Salgado) Date: Sat, 02 Apr 2022 01:54:08 +0000 Subject: [issue47131] Speedup test_unparse In-Reply-To: <1648322149.94.0.511947690727.issue47131@roundup.psfhosted.org> Message-ID: <1648864448.47.0.946750151785.issue47131@roundup.psfhosted.org> Pablo Galindo Salgado added the comment: New changeset 0f68c208fa6a36b6c8ad3d775e64292a665ba108 by Jeremy Kloth in branch 'main': bpo-47131: Speedup AST comparisons in test_unparse by using node traversal (GH-32132) https://github.com/python/cpython/commit/0f68c208fa6a36b6c8ad3d775e64292a665ba108 ---------- nosy: +pablogsal _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 21:59:45 2022 From: report at bugs.python.org (Hood Chatham) Date: Sat, 02 Apr 2022 01:59:45 +0000 Subject: [issue47197] ctypes mishandles `void` return type In-Reply-To: <1648862049.34.0.311220561963.issue47197@roundup.psfhosted.org> Message-ID: <1648864785.33.0.674066359137.issue47197@roundup.psfhosted.org> Change by Hood Chatham : ---------- keywords: +patch nosy: +hoodmane nosy_count: 2.0 -> 3.0 pull_requests: +30317 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32246 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 22:37:08 2022 From: report at bugs.python.org (Hood Chatham) Date: Sat, 02 Apr 2022 02:37:08 +0000 Subject: [issue47162] Add call trampoline to work around bad fpcasts on Emscripten In-Reply-To: <1648638700.22.0.607965445304.issue47162@roundup.psfhosted.org> Message-ID: <1648867028.5.0.629122732388.issue47162@roundup.psfhosted.org> Hood Chatham added the comment: Actually, I think the _PyImport_InitFunc trampoline call is only there as a work around for the problematic `test_imp` and `test_import` Python tests. I don't know of any third party code with a problem there. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 22:43:26 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Sat, 02 Apr 2022 02:43:26 +0000 Subject: [issue47147] Allow `return yield from` In-Reply-To: <1648489692.27.0.109128044871.issue47147@roundup.psfhosted.org> Message-ID: <1648867406.22.0.097343406927.issue47147@roundup.psfhosted.org> Terry J. Reedy added the comment: I think that this should be closed as rejected, and that Patrick should remove the 'return's that are in front of 'yield from ...'. Then 'yield from x' will be a statement, not an expression, and the ()s will not be needed, as they are used to differentiate yield expressions from yield statements. Generator functions return generators, not return expressions. The latter are only used for the StopIteration .value attribute, which I believe is always None for Patrick's code and in any case is never used. So his code should run the same without these 'return's. The exception for '= yield ...' is similar to '= a, ...' not needing ()s. This is the only exception for yield expressions because this is normally the only place a yield expression should be used by itself instead of with other operators or functions, where ()s are needed. The python-ideas thread archive is at https://mail.python.org/archives/list/python-ideas at python.org/thread/L6XRQ5YWAE535JGZH2MF2TD32C65K5ZI/ Andrew Svetlov objected (-1) because to him ()s make the statement more readable. Michael Smith got to the real problem, which is that one should not be using "return (yield from x)" unless one is accessing a possibly non-None value attribute of the implicitly raised StopIteration exception. I oppose adding a second no-() exception for such rare (and somewhat confusing) expert uses. In a generator function, the return value is a generator based on the entire body of the function. Any return statement value becomes the value attribute of the StopIteration raised when the generator is exhausted. In other words, 'return x' in this context translates to "raise StopIteration(x)' (which is illegal to write directly). I am pretty sure that in your code, the value of 'yield from func' is always None. In any case, StopIteration().value is never used. To illustrate: def g0(): return (yield from ()) # Immediately raise StopIteration(None). try: next(g0()) except StopIteration as e: print(e.value) # Prints 'None'. ---------- nosy: +terry.reedy versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 22:44:28 2022 From: report at bugs.python.org (Francis Johnson) Date: Sat, 02 Apr 2022 02:44:28 +0000 Subject: [issue44660] email.feedparser: support RFC 6532 section 3.5 In-Reply-To: <1626493971.02.0.0360385916287.issue44660@roundup.psfhosted.org> Message-ID: <1648867468.41.0.0874767503919.issue44660@roundup.psfhosted.org> Francis Johnson added the comment: Hello, I haven't had the time to complete @r.david.murrary's recommendation and unfortunately don't anticipate that I will for now. Any objection to me resubmitting the pull request as-is? Alone, it still delivers business value so to speak. Thanks ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 23:03:19 2022 From: report at bugs.python.org (Siddhesh Poyarekar) Date: Sat, 02 Apr 2022 03:03:19 +0000 Subject: [issue47188] ncurses: *** buffer overflow detected ***: terminated with -D_FORTIFY_SOURCE=3 In-Reply-To: <1648826759.01.0.991092472889.issue47188@roundup.psfhosted.org> Message-ID: <1648868599.42.0.639692641666.issue47188@roundup.psfhosted.org> Change by Siddhesh Poyarekar : ---------- nosy: +siddhesh _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 23:03:40 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Sat, 02 Apr 2022 03:03:40 +0000 Subject: [issue47190] Integrating tkinter and asyncio event loops In-Reply-To: <1648833483.36.0.0222315119123.issue47190@roundup.psfhosted.org> Message-ID: <1648868620.17.0.725629389838.issue47190@roundup.psfhosted.org> Terry J. Reedy added the comment: I did some somewhat similar experiments a few years ago. I will try to find the code sometime. ---------- nosy: +terry.reedy _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 1 23:51:52 2022 From: report at bugs.python.org (Joe Cool) Date: Sat, 02 Apr 2022 03:51:52 +0000 Subject: [issue47198] os.stat on windows doesn't take an open file even though os.stat in os.supports_fd Message-ID: <1648871512.58.0.519594308427.issue47198@roundup.psfhosted.org> New submission from Joe Cool : os.stat on windows doesn't take an open file even though os.stat in os.supports_fd >>> fd = open('tmp.tmp', 'w') >>> fd <_io.TextIOWrapper name='tmp.tmp' mode='w' encoding='cp1252'> >>> os.stat(fd) Traceback (most recent call last): File "", line 1, in TypeError: stat: path should be string, bytes, os.PathLike or integer, not TextIOWrapper >>> os.stat in os.supports_fd True ---------- messages: 416535 nosy: snoopyjc priority: normal severity: normal status: open title: os.stat on windows doesn't take an open file even though os.stat in os.supports_fd type: behavior versions: Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 00:31:08 2022 From: report at bugs.python.org (Eryk Sun) Date: Sat, 02 Apr 2022 04:31:08 +0000 Subject: [issue47198] os.stat on windows doesn't take an open file even though os.stat in os.supports_fd In-Reply-To: <1648871512.58.0.519594308427.issue47198@roundup.psfhosted.org> Message-ID: <1648873868.9.0.343710438113.issue47198@roundup.psfhosted.org> Eryk Sun added the comment: You're mistaken about what `fd` is. It's a TextIOWrapper, which wraps a BufferedWriter, which buffers a FileIO raw file object, which accesses the open file number fd.fileno(). For example: >>> f = open('tmp.tmp','w') >>> os.stat(f.fileno()).st_size 0 ---------- nosy: +eryksun resolution: -> not a bug stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 02:15:14 2022 From: report at bugs.python.org (Patrick Reader) Date: Sat, 02 Apr 2022 06:15:14 +0000 Subject: [issue47147] Allow `return yield from` In-Reply-To: <1648489692.27.0.109128044871.issue47147@roundup.psfhosted.org> Message-ID: <1648880114.9.0.614175009461.issue47147@roundup.psfhosted.org> Patrick Reader added the comment: As the one who wrote the code, I can guarantee you that the StopIteration value is not always None. But I understand your point that for most other users it is always None, and therefore having special syntax might be misleading. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 02:28:23 2022 From: report at bugs.python.org (Ma Lin) Date: Sat, 02 Apr 2022 06:28:23 +0000 Subject: [issue47199] multiprocessing: micro-optimize Connection.send_bytes() method Message-ID: <1648880903.17.0.104458885779.issue47199@roundup.psfhosted.org> New submission from Ma Lin : `bytes(m)` can be replaced by memoryview.cast('B'), then no need for data copying. m = memoryview(buf) # HACK for byte-indexing of non-bytewise buffers (e.g. array.array) if m.itemsize > 1: m = memoryview(bytes(m)) n = len(m) https://github.com/python/cpython/blob/v3.11.0a6/Lib/multiprocessing/connection.py#L190-L194 ---------- components: Library (Lib) messages: 416538 nosy: malin priority: normal severity: normal status: open title: multiprocessing: micro-optimize Connection.send_bytes() method type: resource usage versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 02:29:49 2022 From: report at bugs.python.org (Ma Lin) Date: Sat, 02 Apr 2022 06:29:49 +0000 Subject: [issue47199] multiprocessing: micro-optimize Connection.send_bytes() method In-Reply-To: <1648880903.17.0.104458885779.issue47199@roundup.psfhosted.org> Message-ID: <1648880989.77.0.860459842699.issue47199@roundup.psfhosted.org> Change by Ma Lin : ---------- keywords: +patch pull_requests: +30318 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32247 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 02:56:46 2022 From: report at bugs.python.org (Richard Purdie) Date: Sat, 02 Apr 2022 06:56:46 +0000 Subject: [issue47195] importlib lock race issue in deadlock handling code In-Reply-To: <1648844604.18.0.0986113969555.issue47195@roundup.psfhosted.org> Message-ID: <1648882606.11.0.662855836206.issue47195@roundup.psfhosted.org> Richard Purdie added the comment: This is a production backtrace after I inserted code to traceback if tid was already in _blocking_on. It is being triggered by a warning about an unclosed asyncio event loop and confirms my theory about nested imports, in the production case I'd guess being triggered by gc given the __del__. File "/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/classes/base.bbclass", line 26, in oe_import import oe.data File "", line 1024, in _find_and_load File "", line 171, in __enter__ File "/home/pokybuild/yocto-worker/oe-selftest-fedora/build/bitbake/lib/bb/cooker.py", line 168, in acquire return orig_acquire(self) File "", line 110, in acquire File "/usr/lib64/python3.10/asyncio/base_events.py", line 685, in __del__ _warn(f"unclosed event loop {self!r}", ResourceWarning, source=self) File "/usr/lib64/python3.10/warnings.py", line 112, in _showwarnmsg _showwarnmsg_impl(msg) File "/usr/lib64/python3.10/warnings.py", line 28, in _showwarnmsg_impl text = _formatwarnmsg(msg) File "/usr/lib64/python3.10/warnings.py", line 128, in _formatwarnmsg return _formatwarnmsg_impl(msg) File "/usr/lib64/python3.10/warnings.py", line 56, in _formatwarnmsg_impl import tracemalloc File "", line 1024, in _find_and_load File "", line 171, in __enter__ File "/home/pokybuild/yocto-worker/oe-selftest-fedora/build/bitbake/lib/bb/cooker.py", line 167, in acquire bb.warn("\n".join(traceback.format_stack())) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 04:00:58 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 08:00:58 +0000 Subject: [issue47196] Function pointer cast in test_imp In-Reply-To: <1648857711.17.0.141077263636.issue47196@roundup.psfhosted.org> Message-ID: <1648886458.36.0.278658648907.issue47196@roundup.psfhosted.org> miss-islington added the comment: New changeset 7000cd70164707e28ba045b5c036ca7ed73f5dc4 by Hood Chatham in branch 'main': bpo-47196: Fix function pointer cast in test_imp (GH-32244) https://github.com/python/cpython/commit/7000cd70164707e28ba045b5c036ca7ed73f5dc4 ---------- nosy: +miss-islington _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 04:12:51 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 08:12:51 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648887171.95.0.400352571042.issue40280@roundup.psfhosted.org> miss-islington added the comment: New changeset 59be9cd748728b03ac61287681c3010bcec5e558 by Christian Heimes in branch 'main': bpo-40280: Detect if WASM platform supports threading (GH-32243) https://github.com/python/cpython/commit/59be9cd748728b03ac61287681c3010bcec5e558 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 04:13:55 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 08:13:55 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648887235.2.0.0291744747478.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 4ed8a9a589d2eee7442e0c9417515a707e504faa by Christian Heimes in branch 'main': bpo-40280: Enable most file-at() and nanosleep APIs again (GH-32238) https://github.com/python/cpython/commit/4ed8a9a589d2eee7442e0c9417515a707e504faa ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 04:35:27 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Sat, 02 Apr 2022 08:35:27 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648888527.11.0.361970460866.issue47152@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset 1be3260a90f16aae334d993aecf7b70426f98013 by Serhiy Storchaka in branch 'main': bpo-47152: Convert the re module into a package (GH-32177) https://github.com/python/cpython/commit/1be3260a90f16aae334d993aecf7b70426f98013 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 05:48:33 2022 From: report at bugs.python.org (Dong-hee Na) Date: Sat, 02 Apr 2022 09:48:33 +0000 Subject: [issue47193] Use zlib-ng rather than zlib in binary releases In-Reply-To: <1648840764.27.0.970523906795.issue47193@roundup.psfhosted.org> Message-ID: <1648892913.07.0.302034267867.issue47193@roundup.psfhosted.org> Change by Dong-hee Na : ---------- nosy: +corona10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 06:57:52 2022 From: report at bugs.python.org (=?utf-8?q?Lum=C3=ADr_Balhar?=) Date: Sat, 02 Apr 2022 10:57:52 +0000 Subject: [issue47143] Add types.copy_class() which updates closures In-Reply-To: <1648475497.69.0.517848943478.issue47143@roundup.psfhosted.org> Message-ID: <1648897072.45.0.604341918056.issue47143@roundup.psfhosted.org> Lum?r Balhar added the comment: Do you think it's a good idea to start a PR with a copy of the implementation from attrs for Python 3.11? We can then add tests for the new function and also some for dataclasses where this new function is needed and try to find all corner cases. ---------- nosy: +frenzy _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 07:59:25 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 11:59:25 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648900765.54.0.313018686457.issue47152@roundup.psfhosted.org> STINNER Victor added the comment: $ ls Lib/re/ _compiler.py _constants.py __init__.py _parser.py Thanks, that's a nice enhancement! Serhiy: Would you mind to explicitly document the 3 deprecated modules in What's New in Python 3.11? https://docs.python.org/dev/whatsnew/3.11.html#deprecated ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 08:01:07 2022 From: report at bugs.python.org (=?utf-8?q?=C5=81ukasz_Langa?=) Date: Sat, 02 Apr 2022 12:01:07 +0000 Subject: [issue34480] _markupbase.py fails with UnboundLocalError on invalid keyword in marked section In-Reply-To: <1535045437.7.0.56676864532.issue34480@psf.upfronthosting.co.za> Message-ID: <1648900867.59.0.738178527678.issue34480@roundup.psfhosted.org> ?ukasz Langa added the comment: Marek, I can merge a fix for 3.9 for this. I don't think we should be removing _markupbase.ParserBase.error() in 3.9 as GH-8562 is doing. So we'd need a new patch, like GH-17643. However, that will need a test as well. Would you be interested in creating the patch? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 08:01:28 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 12:01:28 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648900888.09.0.462844050353.issue47152@roundup.psfhosted.org> STINNER Victor added the comment: Is the "import _locale" still used in re/__init__.py? It cannot see any reference to it in the code and test_re still if it's removed. The last reference to the _locale module has been removed in 2017 by the commit 898ff03e1e7925ecde3da66327d3cdc7e07625ba. diff --git a/Lib/re/__init__.py b/Lib/re/__init__.py index c47a2650e3..b887722bbb 100644 --- a/Lib/re/__init__.py +++ b/Lib/re/__init__.py @@ -124,10 +124,6 @@ import enum from . import _compiler, _parser import functools -try: - import _locale -except ImportError: - _locale = None # public symbols ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 08:05:55 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 12:05:55 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648901155.02.0.42648954644.issue47152@roundup.psfhosted.org> STINNER Victor added the comment: It's funny to still see mentions of "experimental stuff" in Python 3.11 (2022), whereas these "experimental stuff" are there for 20 years. *Maybe* it's time to consider that re.template() and re.Scanner are no longer experimental? Maybe change their status to alpha or beta? :-D commit 770617b23e286f1147f9480b5f625e88e7badd50 Author: Fredrik Lundh Date: Sun Jan 14 15:06:11 2001 +0000 SRE fixes for 2.1 alpha: +# sre extensions (experimental, don't rely on these) +T = TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking commit 7cafe4d7e466996d5fc32e871fe834e0e0c94282 Author: Fredrik Lundh Date: Sun Jul 2 17:33:27 2000 +0000 - actually enabled charset anchors in the engine (still not used by the code generator) - changed max repeat value in engine (to match earlier array fix) - added experimental "which part matched?" mechanism to sre; see http://hem.passagen.se/eff/2000_07_01_bot-archive.htm#416954 or python-dev for details. +# experimental stuff (see python-dev discussions for details) + +class Scanner: (...) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 08:08:35 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 12:08:35 +0000 Subject: [issue47143] Add types.copy_class() which updates closures In-Reply-To: <1648475497.69.0.517848943478.issue47143@roundup.psfhosted.org> Message-ID: <1648901315.05.0.822348237861.issue47143@roundup.psfhosted.org> STINNER Victor added the comment: Lum?r Balhar: > Do you think it's a good idea to start a PR with a copy of the implementation from attrs for Python 3.11? We can then add tests for the new function and also some for dataclasses where this new function is needed and try to find all corner cases. I'm worried that attrs license is MIT with an "advertisement clause" (the MIT license must be mentioned), whereas Python has a different license. I'm planning to contact the 3 authors of the code to ask their permission. Also, I expect more feedback on this "idea" first: > I would like to implement this function, but first I would like to discuss if it makes sense to add such function and check if it's the right abstraction. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 08:21:15 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sat, 02 Apr 2022 12:21:15 +0000 Subject: [issue47200] Add ZipInfo.mode property Message-ID: <1648902075.65.0.178369010782.issue47200@roundup.psfhosted.org> New submission from Sam Ezeh : Initially, I was looking at bpo-18262 and saw the following Stack Overflow thread that was linked. https://stackoverflow.com/questions/434641/how-do-i-set-permissions-attributes-on-a-file-in-a-zip-file-using-pythons-zip/6297838 I've attached a patch that gives ZipInfo objects a `ZipInfo.mode` property getter and setter to get and set the file mode. I considered adding ZipFile.chmod but I didn't know how it would work given that archives can contain duplicate files. As an aside, I wondered if there's a way to update file attributes inside zip archives without deleting and rewriting them and if not, whether it would be worthwhile to add one. ---------- components: Library (Lib) files: sam_ezeh.patch keywords: patch messages: 416550 nosy: sam_ezeh priority: normal severity: normal status: open title: Add ZipInfo.mode property type: enhancement versions: Python 3.11 Added file: https://bugs.python.org/file50715/sam_ezeh.patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 08:43:00 2022 From: report at bugs.python.org (Irit Katriel) Date: Sat, 02 Apr 2022 12:43:00 +0000 Subject: [issue27817] tkinter string variable misinterpreted as boolean In-Reply-To: <1471711827.55.0.419886306441.issue27817@psf.upfronthosting.co.za> Message-ID: <1648903380.04.0.271556808908.issue27817@roundup.psfhosted.org> Change by Irit Katriel : ---------- stage: test needed -> resolved status: pending -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 08:46:17 2022 From: report at bugs.python.org (Ma Lin) Date: Sat, 02 Apr 2022 12:46:17 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648903577.8.0.458400290779.issue47152@roundup.psfhosted.org> Ma Lin added the comment: In `Modules` folder, there are _sre.c/sre.h/sre_constants.h/sre_lib.h files. Will them be put into a folder? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:10:27 2022 From: report at bugs.python.org (Steve Dower) Date: Sat, 02 Apr 2022 13:10:27 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1648905027.24.0.583022837428.issue47194@roundup.psfhosted.org> Steve Dower added the comment: New changeset 6066739ff7794e54c98c08b953a699cbc961cd28 by Zachary Ware in branch 'main': bpo-47194: Update zlib to v1.2.12 on Windows to resolve CVE-2018-25032 (GH-32241) https://github.com/python/cpython/commit/6066739ff7794e54c98c08b953a699cbc961cd28 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:11:04 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 13:11:04 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1648905064.11.0.875175772666.issue47194@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +30319 pull_request: https://github.com/python/cpython/pull/32248 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:11:09 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 13:11:09 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1648905069.68.0.358223242526.issue47194@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30320 pull_request: https://github.com/python/cpython/pull/32249 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:11:17 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 13:11:17 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1648905077.48.0.618332990261.issue47194@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30321 pull_request: https://github.com/python/cpython/pull/32250 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:11:24 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 13:11:24 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1648905084.22.0.0910706359924.issue47194@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30322 pull_request: https://github.com/python/cpython/pull/32251 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:12:32 2022 From: report at bugs.python.org (Irit Katriel) Date: Sat, 02 Apr 2022 13:12:32 +0000 Subject: [issue22738] improve 'python -h' documentation for '-c' In-Reply-To: <1414384786.34.0.941168460328.issue22738@psf.upfronthosting.co.za> Message-ID: <1648905152.66.0.0701647736507.issue22738@roundup.psfhosted.org> Irit Katriel added the comment: Closing as the discussion stalled about 7 years ago and was then leaning towards rejecting the suggestion. ---------- nosy: +iritkatriel resolution: -> rejected stage: needs patch -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:14:53 2022 From: report at bugs.python.org (Steve Dower) Date: Sat, 02 Apr 2022 13:14:53 +0000 Subject: [issue47192] sys._getframe audit event has frame as argument in 3.8-3.10 In-Reply-To: <1648838826.48.0.057451572293.issue47192@roundup.psfhosted.org> Message-ID: <1648905293.19.0.88367991843.issue47192@roundup.psfhosted.org> Steve Dower added the comment: This should be fixed in the docs and also in 3.11. Now that we've shipped releases that include the frame, we should keep doing it. If it's impossible to get a frame object in 3.11 (because it would deoptimize all the work that's been done there), it should pass None. Changing the value of the argument is fine, but changing the schema is not. ---------- versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:37:56 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 13:37:56 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1648906676.93.0.419687723135.issue47194@roundup.psfhosted.org> miss-islington added the comment: New changeset 0f0f85e9d8088eb789cda35477900df32adff546 by Miss Islington (bot) in branch '3.9': bpo-47194: Update zlib to v1.2.12 on Windows to resolve CVE-2018-25032 (GH-32241) https://github.com/python/cpython/commit/0f0f85e9d8088eb789cda35477900df32adff546 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:39:10 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 13:39:10 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1648906750.92.0.948300025533.issue47194@roundup.psfhosted.org> miss-islington added the comment: New changeset 16a809ffb7af14898ce9ec8165960d96cbcd4ec3 by Miss Islington (bot) in branch '3.10': bpo-47194: Update zlib to v1.2.12 on Windows to resolve CVE-2018-25032 (GH-32241) https://github.com/python/cpython/commit/16a809ffb7af14898ce9ec8165960d96cbcd4ec3 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 09:50:57 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sat, 02 Apr 2022 13:50:57 +0000 Subject: [issue47200] Add ZipInfo.mode property In-Reply-To: <1648902075.65.0.178369010782.issue47200@roundup.psfhosted.org> Message-ID: <1648907457.89.0.443328846421.issue47200@roundup.psfhosted.org> Change by Sam Ezeh : ---------- pull_requests: +30323 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32252 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 11:06:17 2022 From: report at bugs.python.org (Anthony Sottile) Date: Sat, 02 Apr 2022 15:06:17 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648911977.72.0.303811545708.issue47152@roundup.psfhosted.org> Anthony Sottile added the comment: would it be possible to expose `parse_template` -- or at least some way to validate that a regex replacement string is correct prior to executing the replacement? I'm currently using that for my text editor: https://github.com/asottile/babi/blob/d37d7d698d560aef7c6a0d1ec0668672e039bd9a/babi/screen.py#L501 ---------- nosy: +Anthony Sottile _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 11:10:50 2022 From: report at bugs.python.org (Alessandro Pioli) Date: Sat, 02 Apr 2022 15:10:50 +0000 Subject: [issue47201] pip3.10.4 is configured with locations that require TLS/SSL, however the ssl module in Python is not available Message-ID: <1648912250.23.0.805410232022.issue47201@roundup.psfhosted.org> New submission from Alessandro Pioli : After installation of 3.4.10 with openssl procedure https://docs.python.org/3/using/unix.html#on-linux on centos 7.9 pip get this error: pip3.10 install -r requirements.txt WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/jinja2/ WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/jinja2/ WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/jinja2/ WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/jinja2/ WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/jinja2/ Could not fetch URL https://pypi.org/simple/jinja2/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/jinja2/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping ERROR: Could not find a version that satisfies the requirement Jinja2 (from versions: none) ERROR: No matching distribution found for Jinja2 WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping ---------- components: Installation messages: 416558 nosy: alessandro.pioli priority: normal severity: normal status: open title: pip3.10.4 is configured with locations that require TLS/SSL, however the ssl module in Python is not available versions: Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 11:22:18 2022 From: report at bugs.python.org (Luminair) Date: Sat, 02 Apr 2022 15:22:18 +0000 Subject: [issue47202] Feature request: Throw an error when making impossible evaluation against an empty list Message-ID: <1648912938.49.0.294266093677.issue47202@roundup.psfhosted.org> New submission from Luminair : Below are four examples of impossible code that operates on nothing. The latter two continue silently, throwing no errors. I saw a bug sneak by because of this. I wonder if it is within the scope of Python's design to throw Exceptions in these situations? x = for x in : print("This code is never reached") while(None): print("This code is never reached") emptylist = [] for x in emptylist: if emptylist[x] == "This code is never reached": print("This code is never reached") else: print("This code is never reached") ---------- components: Parser messages: 416559 nosy: Luminair, lys.nikolaou, pablogsal priority: normal severity: normal status: open title: Feature request: Throw an error when making impossible evaluation against an empty list type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 11:35:22 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sat, 02 Apr 2022 15:35:22 +0000 Subject: [issue47202] Feature request: Throw an error when making impossible evaluation against an empty list In-Reply-To: <1648912938.49.0.294266093677.issue47202@roundup.psfhosted.org> Message-ID: <1648913722.92.0.493114323736.issue47202@roundup.psfhosted.org> Jelle Zijlstra added the comment: This sort of thing would be better caught by a linter or type checker. For example, mypy with the `--warn-unreachable` option will flag the `while None:` example. Iterating over an empty list will not currently be caught by mypy, but it's common in real code to iterate over a list that may be empty, so it would be a major compatibility break for Python to error when iterating over an empty list. ---------- nosy: +JelleZijlstra resolution: -> rejected stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 11:39:10 2022 From: report at bugs.python.org (Luminair) Date: Sat, 02 Apr 2022 15:39:10 +0000 Subject: [issue47202] Feature request: Throw an error when making impossible evaluation against an empty list In-Reply-To: <1648912938.49.0.294266093677.issue47202@roundup.psfhosted.org> Message-ID: <1648913950.79.0.314504199897.issue47202@roundup.psfhosted.org> Luminair added the comment: Thank you for the quick response Jelle! I do like mypy, and I will file this with them. Good luck with the migration to GitHub :) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 11:53:13 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 15:53:13 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648914793.39.0.654596540101.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30324 pull_request: https://github.com/python/cpython/pull/32253 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 11:53:31 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Sat, 02 Apr 2022 15:53:31 +0000 Subject: [issue37387] test_compileall fails randomly on Windows when tests are run in parallel In-Reply-To: <1561383626.08.0.320504464802.issue37387@roundup.psfhosted.org> Message-ID: <1648914811.55.0.976150435921.issue37387@roundup.psfhosted.org> Jeremy Kloth added the comment: bpo-47089 is a duplicate of this issue and is fixed. This issue should be closed as well. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 12:05:08 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Sat, 02 Apr 2022 16:05:08 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648915508.48.0.0999349816799.issue47152@roundup.psfhosted.org> Serhiy Storchaka added the comment: > Is the "import _locale" still used in re/__init__.py? It cannot see any reference to it in the code and test_re still if it's removed. It is true. > *Maybe* it's time to consider that re.template() and re.Scanner are no longer experimental? Maybe change their status to alpha or beta? :-D First we need to find original discussions for these features (it may be not easy) and decide whether we want to finish them or remove. > In `Modules` folder, there are _sre.c/sre.h/sre_constants.h/sre_lib.h files. Will them be put into a folder? It is step 2. > would it be possible to expose `parse_template` -- or at least some way to validate that a regex replacement string is correct prior to executing the replacement? Maybe, in some form. Currently you can precompile a pattern, but for a replacement string you rely on a LRU cache. It is slower, and limited by the fixed size of the cache. I think it would be worth to add a function for compiling a replacement string. sub() etc should accept both string and a precompiled template object. It is a separate issue. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 12:40:10 2022 From: report at bugs.python.org (Eric V. Smith) Date: Sat, 02 Apr 2022 16:40:10 +0000 Subject: [issue47202] Feature request: Throw an error when making impossible evaluation against an empty list In-Reply-To: <1648912938.49.0.294266093677.issue47202@roundup.psfhosted.org> Message-ID: <1648917610.12.0.367670099777.issue47202@roundup.psfhosted.org> Eric V. Smith added the comment: As Jelle says, this can't be a runtime Exception. At best mypy or a linter could make iterating over an known empty list (like a literal []) a warning, not an error as suggested by the OP. I sometimes "comment out" loops by doing something like: for i in []: # long_list_returning_function(): # lots of code here I do this just to avoid re-indenting everything if I want to skip the loop during development. ---------- nosy: +eric.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 12:43:30 2022 From: report at bugs.python.org (Anthony Sottile) Date: Sat, 02 Apr 2022 16:43:30 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648917810.89.0.332543734258.issue45847@roundup.psfhosted.org> Anthony Sottile added the comment: this appears to break the tkinter extension for ubuntu bionic (18.04) -- I'm not entirely sure on the correct fix here but I get the following from trying to build there: 2022-04-02T15:52:08.0910452Z Python build finished successfully! 2022-04-02T15:52:08.0911924Z The necessary bits to build these optional modules were not found: 2022-04-02T15:52:08.0913469Z _tkinter this is the tk I have available: root at f0dd06a3e87c:/# dpkg -l | grep libtk ii libtk8.6:amd64 8.6.8-4 amd64 Tk toolkit for Tcl and X11 v8.6 - run-time files ---------- nosy: +Anthony Sottile _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 12:54:15 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 16:54:15 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648918455.52.0.290229020351.issue45847@roundup.psfhosted.org> Christian Heimes added the comment: Please attach your config.log file. Did configure tell you that you are missing pkg-config? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 12:54:52 2022 From: report at bugs.python.org (Anthony Sottile) Date: Sat, 02 Apr 2022 16:54:52 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648918492.3.0.955808508031.issue45847@roundup.psfhosted.org> Anthony Sottile added the comment: the `tk-dev` package on ubuntu bionic does not ship with a `pkg-config` file for tk so it does not build properly there: ``` root at f0dd06a3e87c:/cpython# dpkg -L tk8.6-dev | grep pc root at f0dd06a3e87c:/cpython# ``` (a note: bionic reaches end of life in april 2023 so it is likely to still see significant use until then) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 13:23:08 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 17:23:08 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648920188.41.0.434709216829.issue45847@roundup.psfhosted.org> Christian Heimes added the comment: Could you please open a distro bug with Ubuntu and report the issue? We require a pkg-config file for TCL/TK. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 13:28:36 2022 From: report at bugs.python.org (Irit Katriel) Date: Sat, 02 Apr 2022 17:28:36 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648920516.21.0.609801546125.issue24563@roundup.psfhosted.org> Change by Irit Katriel : ---------- keywords: +easy title: Encoding declaration: doc supported encodings -> [doc] Encoding declaration: doc supported encodings versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python 3.5, Python 3.6 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 13:33:04 2022 From: report at bugs.python.org (Anthony Sottile) Date: Sat, 02 Apr 2022 17:33:04 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648920784.1.0.28769541028.issue45847@roundup.psfhosted.org> Anthony Sottile added the comment: I could, but it's very unlikely to get fixed given I believe 18.04 is in security-only fixes and backporting a pkg-config file seems unlikely this worked two days ago before this patch ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 13:38:46 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 17:38:46 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648921126.39.0.0265829622856.issue45847@roundup.psfhosted.org> Christian Heimes added the comment: As I said already, we require a pkg-config file for TCL/TK detection. It turned out to be too painful and too complicated to implement manual TCL/TK detection in configure.ac. Erlend and I tried and eventually gave up. If your platform does not provide the pkg-config files, then you need to work around the problem or contribute a patch. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 13:40:03 2022 From: report at bugs.python.org (Irit Katriel) Date: Sat, 02 Apr 2022 17:40:03 +0000 Subject: [issue26023] Missing signatures operator module In-Reply-To: <1452085675.2.0.944148741894.issue26023@psf.upfronthosting.co.za> Message-ID: <1648921203.24.0.54984190708.issue26023@roundup.psfhosted.org> Irit Katriel added the comment: I think this was fixed by now, this is an excerpt from help(operator): lshift(a, b, /) Same as a << b. lt(a, b, /) Same as a < b. matmul(a, b, /) Same as a @ b. mod(a, b, /) Same as a % b. mul(a, b, /) Same as a * b. ne(a, b, /) Same as a != b. neg(a, /) Same as -a. not_(a, /) Same as not a. or_(a, b, /) Same as a | b. pos(a, /) Same as +a. pow(a, b, /) Same as a ** b. rshift(a, b, /) Same as a >> b. ---------- nosy: +iritkatriel resolution: -> out of date status: open -> pending _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 13:46:47 2022 From: report at bugs.python.org (Pablo Galindo Salgado) Date: Sat, 02 Apr 2022 17:46:47 +0000 Subject: [issue47147] Allow `return yield from` In-Reply-To: <1648489692.27.0.109128044871.issue47147@roundup.psfhosted.org> Message-ID: <1648921607.37.0.67774902807.issue47147@roundup.psfhosted.org> Pablo Galindo Salgado added the comment: I concur with Terry. ---------- resolution: -> rejected stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 14:09:59 2022 From: report at bugs.python.org (StaticBits) Date: Sat, 02 Apr 2022 18:09:59 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. Message-ID: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> New submission from StaticBits : When I try importing the default library "binascii" using the command "import binascii", the result is the following error (also in the title): ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. I've reinstalled Python and tried using the 32 bit version of Python, along with Python 3.9, but this error still persists. Any help would be appreciated! ---------- components: Library (Lib) messages: 416573 nosy: puppy2655 priority: normal severity: normal status: open title: ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. type: behavior versions: Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 14:20:53 2022 From: report at bugs.python.org (Irit Katriel) Date: Sat, 02 Apr 2022 18:20:53 +0000 Subject: [issue27376] Add mock_import method to mock module In-Reply-To: <1466701937.33.0.949904358819.issue27376@psf.upfronthosting.co.za> Message-ID: <1648923653.31.0.849833011096.issue27376@roundup.psfhosted.org> Irit Katriel added the comment: Closing as that's where the discussion of 2016 was leaning. Please raise this on python-ideas if you would like to bring it up again. ---------- nosy: +iritkatriel resolution: -> rejected stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 14:44:13 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 18:44:13 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648925053.18.0.323354629489.issue45847@roundup.psfhosted.org> Christian Heimes added the comment: PS: Check out ./configure --help ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 14:53:31 2022 From: report at bugs.python.org (Irit Katriel) Date: Sat, 02 Apr 2022 18:53:31 +0000 Subject: [issue968063] Add fileinput.islastline() Message-ID: <1648925611.58.0.294153021556.issue968063@roundup.psfhosted.org> Irit Katriel added the comment: > This doesn't work because fileinput.filename() and fileinput.filelineno() are going to be wrong and pointing to the next file. You won't have this problem if you work on one file at a time. ---------- nosy: +iritkatriel _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 14:54:23 2022 From: report at bugs.python.org (Irit Katriel) Date: Sat, 02 Apr 2022 18:54:23 +0000 Subject: [issue968063] Add fileinput.islastline() Message-ID: <1648925663.66.0.685948555173.issue968063@roundup.psfhosted.org> Irit Katriel added the comment: I am closing this as the discussion ended in 2017 with something like three +0s. Please raise this for discussion on python-ideas if you would like to pursue it further. ---------- resolution: -> rejected stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 14:57:18 2022 From: report at bugs.python.org (Irit Katriel) Date: Sat, 02 Apr 2022 18:57:18 +0000 Subject: [issue29920] Document cgitb.text and cgitb.html In-Reply-To: <1490620609.02.0.405950190914.issue29920@psf.upfronthosting.co.za> Message-ID: <1648925838.2.0.386318808898.issue29920@roundup.psfhosted.org> Irit Katriel added the comment: Closing as the backport to 3.5/3.6 is no longer relevant and also cgitb is deprecated under 594. ---------- nosy: +iritkatriel resolution: -> fixed stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 15:31:14 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 19:31:14 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648927874.16.0.035130104003.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: pmp-p wrote on GH-32253: when using --enable-wasm-dynamic-linking i think --enable-shared should set -fPIC and -s SIDE_MODULE=1 for libpython.so I have not tried --enable-shared with Emscripten yet. So far I have assumed that the result is a fat Python binary that can load additional shared libraries. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 15:35:32 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 19:35:32 +0000 Subject: [issue47201] pip3.10.4 is configured with locations that require TLS/SSL, however the ssl module in Python is not available In-Reply-To: <1648912250.23.0.805410232022.issue47201@roundup.psfhosted.org> Message-ID: <1648928132.62.0.551309684987.issue47201@roundup.psfhosted.org> Christian Heimes added the comment: CentOS 7 has an unsupported OpenSSL version. You need to build your own OpenSSL or use my work from https://github.com/tiran/cpython_builddep/#note sudo yum install -y epel sudo yum install -y openssl11-devel sed -i 's/PKG_CONFIG openssl /PKG_CONFIG openssl11 /g' configure ---------- nosy: +christian.heimes _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 15:39:25 2022 From: report at bugs.python.org (Marek Suscak) Date: Sat, 02 Apr 2022 19:39:25 +0000 Subject: [issue34480] _markupbase.py fails with UnboundLocalError on invalid keyword in marked section In-Reply-To: <1535045437.7.0.56676864532.issue34480@psf.upfronthosting.co.za> Message-ID: <1648928365.54.0.836534942901.issue34480@roundup.psfhosted.org> Change by Marek Suscak : ---------- pull_requests: +30325 pull_request: https://github.com/python/cpython/pull/32256 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 15:41:53 2022 From: report at bugs.python.org (Adam) Date: Sat, 02 Apr 2022 19:41:53 +0000 Subject: [issue41395] pickle and pickletools cli interface doesn't close input and output file. In-Reply-To: <1595686330.63.0.838691465271.issue41395@roundup.psfhosted.org> Message-ID: <1648928513.72.0.572531821611.issue41395@roundup.psfhosted.org> Change by Adam : ---------- nosy: +achhina nosy_count: 7.0 -> 8.0 pull_requests: +30326 pull_request: https://github.com/python/cpython/pull/32257 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 15:50:03 2022 From: report at bugs.python.org (Marek Suscak) Date: Sat, 02 Apr 2022 19:50:03 +0000 Subject: [issue34480] _markupbase.py fails with UnboundLocalError on invalid keyword in marked section In-Reply-To: <1535045437.7.0.56676864532.issue34480@psf.upfronthosting.co.za> Message-ID: <1648929003.49.0.561518258974.issue34480@roundup.psfhosted.org> Marek Suscak added the comment: Alright, the PR is up. This is my first contribution to Python and I had to sign the Contributor Agreement so it may take 1 business day before you're able to accept it. In the meantime, can you please review and let me know if anything needs to change? I wasn't sure where / how to add an entry in the NEWS.d folder. Can you please help me? Thanks! ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 15:58:07 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sat, 02 Apr 2022 19:58:07 +0000 Subject: [issue47031] math.nan should note that NANs do not compare equal to anything In-Reply-To: <1647384445.54.0.624569737197.issue47031@roundup.psfhosted.org> Message-ID: <1648929487.57.0.105208328588.issue47031@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset 182e93c3f57b0c72e765c9896066d32e461c0865 by Charlie Zhao in branch 'main': bpo-47031: Improve documentation for `math.nan` (GH-32170) https://github.com/python/cpython/commit/182e93c3f57b0c72e765c9896066d32e461c0865 ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 15:58:13 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 19:58:13 +0000 Subject: [issue47031] math.nan should note that NANs do not compare equal to anything In-Reply-To: <1647384445.54.0.624569737197.issue47031@roundup.psfhosted.org> Message-ID: <1648929493.82.0.303985264977.issue47031@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +30328 pull_request: https://github.com/python/cpython/pull/32263 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 15:58:19 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 19:58:19 +0000 Subject: [issue47031] math.nan should note that NANs do not compare equal to anything In-Reply-To: <1647384445.54.0.624569737197.issue47031@roundup.psfhosted.org> Message-ID: <1648929499.06.0.553505523023.issue47031@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30329 pull_request: https://github.com/python/cpython/pull/32264 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:02:47 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Sat, 02 Apr 2022 20:02:47 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1648929767.69.0.254552041371.issue47203@roundup.psfhosted.org> Jeremy Kloth added the comment: This error will occur when there is a 64-bit/32-bit conflict. Normally, Python extension modules are installed in architecture dependent locations, however user-installed modules (pip install) can share a path referred to as "user site". A quick check from the command-line can give you its location: py -m site A scan of the paths listed as USER_BASE and USER_SITE might reveal a binascii.pyd which would be shadowing the normally built-in module. Another source of conflict would be a PYTHONPATH environment variable, if set. ---------- nosy: +jkloth _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:17:27 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sat, 02 Apr 2022 20:17:27 +0000 Subject: [issue26792] docstrings of runpy.run_{module,path} are rather sparse In-Reply-To: <1460944502.67.0.955110104065.issue26792@psf.upfronthosting.co.za> Message-ID: <1648930647.15.0.377413242071.issue26792@roundup.psfhosted.org> Change by Jelle Zijlstra : ---------- nosy: +JelleZijlstra nosy_count: 4.0 -> 5.0 pull_requests: +30330 pull_request: https://github.com/python/cpython/pull/32265 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:19:23 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 20:19:23 +0000 Subject: [issue47031] math.nan should note that NANs do not compare equal to anything In-Reply-To: <1647384445.54.0.624569737197.issue47031@roundup.psfhosted.org> Message-ID: <1648930763.55.0.975038084645.issue47031@roundup.psfhosted.org> miss-islington added the comment: New changeset 319a70cf99c9866c7fa47deecf04f6ebcfe35a54 by Miss Islington (bot) in branch '3.10': bpo-47031: Improve documentation for `math.nan` (GH-32170) https://github.com/python/cpython/commit/319a70cf99c9866c7fa47deecf04f6ebcfe35a54 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:22:56 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 20:22:56 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648930976.03.0.311133690305.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30331 pull_request: https://github.com/python/cpython/pull/32266 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:23:26 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 20:23:26 +0000 Subject: [issue46315] Add support for WebAssembly System Interface (wasm32-wasi) In-Reply-To: <1641739663.52.0.433507958543.issue46315@roundup.psfhosted.org> Message-ID: <1648931006.39.0.220378957924.issue46315@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30332 pull_request: https://github.com/python/cpython/pull/32266 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:23:29 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 20:23:29 +0000 Subject: [issue47031] math.nan should note that NANs do not compare equal to anything In-Reply-To: <1647384445.54.0.624569737197.issue47031@roundup.psfhosted.org> Message-ID: <1648931009.96.0.312390064513.issue47031@roundup.psfhosted.org> miss-islington added the comment: New changeset 5b80031fb0d2ea14f0d42a33309ce5464c4a6042 by Miss Islington (bot) in branch '3.9': bpo-47031: Improve documentation for `math.nan` (GH-32170) https://github.com/python/cpython/commit/5b80031fb0d2ea14f0d42a33309ce5464c4a6042 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:26:20 2022 From: report at bugs.python.org (Eric V. Smith) Date: Sat, 02 Apr 2022 20:26:20 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1648931180.5.0.608370263265.issue47203@roundup.psfhosted.org> Change by Eric V. Smith : ---------- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:58:34 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sat, 02 Apr 2022 20:58:34 +0000 Subject: [issue45114] bad example for os.stat In-Reply-To: <1630929270.55.0.756722168935.issue45114@roundup.psfhosted.org> Message-ID: <1648933114.53.0.0126477960221.issue45114@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset c93a0ac6972221787d8bea1c41a9feb667ed3d2c by 180909 in branch 'main': bpo-45114: Use lstat() instead of stat() in stat docs example (GH-29845) https://github.com/python/cpython/commit/c93a0ac6972221787d8bea1c41a9feb667ed3d2c ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:58:37 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 20:58:37 +0000 Subject: [issue45114] bad example for os.stat In-Reply-To: <1630929270.55.0.756722168935.issue45114@roundup.psfhosted.org> Message-ID: <1648933117.1.0.547507463784.issue45114@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30333 pull_request: https://github.com/python/cpython/pull/32267 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:58:41 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 20:58:41 +0000 Subject: [issue45114] bad example for os.stat In-Reply-To: <1630929270.55.0.756722168935.issue45114@roundup.psfhosted.org> Message-ID: <1648933121.74.0.10647497931.issue45114@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30334 pull_request: https://github.com/python/cpython/pull/32268 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 16:59:57 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sat, 02 Apr 2022 20:59:57 +0000 Subject: [issue45114] bad example for os.stat In-Reply-To: <1630929270.55.0.756722168935.issue45114@roundup.psfhosted.org> Message-ID: <1648933197.18.0.545265608309.issue45114@roundup.psfhosted.org> Change by Jelle Zijlstra : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:11:46 2022 From: report at bugs.python.org (Christian Heimes) Date: Sat, 02 Apr 2022 21:11:46 +0000 Subject: [issue46315] Add support for WebAssembly System Interface (wasm32-wasi) In-Reply-To: <1641739663.52.0.433507958543.issue46315@roundup.psfhosted.org> Message-ID: <1648933906.92.0.58711692222.issue46315@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 3df0e63aabef905b72fad78256f24b9270c63172 by Christian Heimes in branch 'main': bpo-46315: Use fopencookie only on Emscripten 3.x and newer (GH-32266) https://github.com/python/cpython/commit/3df0e63aabef905b72fad78256f24b9270c63172 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:19:51 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 21:19:51 +0000 Subject: [issue45114] bad example for os.stat In-Reply-To: <1630929270.55.0.756722168935.issue45114@roundup.psfhosted.org> Message-ID: <1648934391.86.0.716651740374.issue45114@roundup.psfhosted.org> miss-islington added the comment: New changeset 23c0200c436714a3f9b38d5e6cac230ceacd4c43 by Miss Islington (bot) in branch '3.10': bpo-45114: Use lstat() instead of stat() in stat docs example (GH-29845) https://github.com/python/cpython/commit/23c0200c436714a3f9b38d5e6cac230ceacd4c43 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:21:56 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 21:21:56 +0000 Subject: [issue45114] bad example for os.stat In-Reply-To: <1630929270.55.0.756722168935.issue45114@roundup.psfhosted.org> Message-ID: <1648934516.39.0.379176043615.issue45114@roundup.psfhosted.org> miss-islington added the comment: New changeset dc9322a91d48c80afe8329bb509673a2f74fb925 by Miss Islington (bot) in branch '3.9': bpo-45114: Use lstat() instead of stat() in stat docs example (GH-29845) https://github.com/python/cpython/commit/dc9322a91d48c80afe8329bb509673a2f74fb925 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:28:33 2022 From: report at bugs.python.org (Ethan Furman) Date: Sat, 02 Apr 2022 21:28:33 +0000 Subject: [issue47200] Add ZipInfo.mode property In-Reply-To: <1648902075.65.0.178369010782.issue47200@roundup.psfhosted.org> Message-ID: <1648934913.51.0.754209842088.issue47200@roundup.psfhosted.org> Change by Ethan Furman : ---------- nosy: +ethan.furman, twouters _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:29:07 2022 From: report at bugs.python.org (Ethan Furman) Date: Sat, 02 Apr 2022 21:29:07 +0000 Subject: [issue4833] Explicit directories for zipfiles In-Reply-To: <1231088968.72.0.101458538333.issue4833@psf.upfronthosting.co.za> Message-ID: <1648934947.26.0.637207251632.issue4833@roundup.psfhosted.org> Change by Ethan Furman : ---------- nosy: +alanmcintyre, twouters _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:29:27 2022 From: report at bugs.python.org (Ethan Furman) Date: Sat, 02 Apr 2022 21:29:27 +0000 Subject: [issue47200] Add ZipInfo.mode property In-Reply-To: <1648902075.65.0.178369010782.issue47200@roundup.psfhosted.org> Message-ID: <1648934967.27.0.0253080629838.issue47200@roundup.psfhosted.org> Change by Ethan Furman : ---------- nosy: +alanmcintyre, serhiy.storchaka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:49:15 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 21:49:15 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648936155.87.0.708021600016.issue47152@roundup.psfhosted.org> STINNER Victor added the comment: Old python-dev discussions on re.Scanner from 2000 to 2004: * "[Python-Dev] A standard lexer?" (July 2000) https://mail.python.org/archives/list/python-dev at python.org/message/MQ4OMCVIVRJWNGHYGI3OUVZQPN5NNNAU/ thread: https://mail.python.org/archives/list/python-dev at python.org/thread/DLMYLYW3QRAAIZDEL3VA7M3TTUWMSPPB/#MQ4OMCVIVRJWNGHYGI3OUVZQPN5NNNAU * "Scanner" (May 2001) https://mail.python.org/archives/list/python-dev at python.org/thread/7FGWHTFA2JT23TMVQXLGZLSKG7EGM44Q/#SVQBSSDWPYVHPRS363RWXWGKJTSEYQDP * "iterator support for SRE?" (Oct 2001): https://mail.python.org/archives/list/python-dev at python.org/thread/IPJJX6MEW4ATOWHSRKLITL4CAZXDEJ5I/#IPJJX6MEW4ATOWHSRKLITL4CAZXDEJ5I * "should sre.Scanner be exposed through re and documented?" (April 2003) https://mail.python.org/archives/list/python-dev at python.org/thread/BHVWYZVMDUJZIJMSSBAAXEH3JI7MTOIJ/#DDFDBY4D6OITPWO26Q5XPBFU7A5X6LXN * "pre-PEP: Complete, Structured Regular Expression Group Matching" (Aug 2004) https://mail.python.org/archives/list/python-dev at python.org/thread/5M4YIZ2UFZF5AEWT3CGG74ZHERC6JV3B/#SNURCRGEYANPQVVQFZTY3LTXE2TFEKEP Search for "sre.Scanner". See also: "Using Regular Expressions for Lexical Analysis" (Feb 2002) by Fredrik Lundh https://web.archive.org/web/20200220172033/http://effbot.org/zone/xml-scanner.htm ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:50:30 2022 From: report at bugs.python.org (Larry Hastings) Date: Sat, 02 Apr 2022 21:50:30 +0000 Subject: [issue47145] Improve graphlib.TopologicalSort by removing the prepare step In-Reply-To: <1648484434.3.0.135225433651.issue47145@roundup.psfhosted.org> Message-ID: <1648936230.08.0.18343575057.issue47145@roundup.psfhosted.org> Larry Hastings added the comment: I agree that the API should have as few surprises as possible. AFAICT you haven't made any terminal pronouncements like "it's impossible to add this feature without too many unacceptable surprises", so I'll proceed assuming we can find an API (and semantics) that we're all happy with. I've come around on the idea that forgetting "done" nodes is too surprising. The least surprising behavior is: once we've added a node to the graph, the graph remembers it. Now I'll propose a second simple rule, which you've already touched on: you can't add a dependency after a node has been returned by get_ready(). Attempting this always throws an exception; which exception specifically TBD. "Tough beans". I think those two rules are easy enough to remember and to reason about. It meaningfully expands the utility of the library with minimal surprise. The library behaves identically for users of the existing API but permits new use cases too. Adding this functionality would therefore mean fewer users would discover too late their use case isn't supported. As far as my "long-lived graph objects will consume more and more memory over time" caveat, there's a better solution than "forget": graph.remove(*nodes). (My version already has a "remove" method, and I forgot that graphlib's doesn't.) Allowing the user to remove a node from the graph gives them explicit control, and the semantics should be obvious and unsurprising; if you--the user--remove a node, and later you--the user--re-add that node to the graph, it behaves identically to any other node the graph has never seen before. Removing a node intuitively removes all edges to that node. Two notes on "remove" if we decide to go that route. First, I'd ensure you can remove a node at any time. Nodes have three externally visible states wrt TopologicalSort: 1) added but not published by get_ready, 2) published by get_ready but not returned using done, and 3) done. You should be able to remove a node in any of those three states. Removing a node in 2) should be equivalent to calling done before calling remove; that is, if you're removing the node anyway, you don't need to call done. Second, the current underlying implementation would make remove really slow. Nodes don't remember their predecessors, only their successors, so removing a node would be O(n). If we expected remove to get a lot of use, we'd probably want to change how the graph is stored to speed up this operation. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:50:37 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 21:50:37 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648936237.0.0.0877893064058.issue47152@roundup.psfhosted.org> STINNER Victor added the comment: See also bpo-40259: "re.Scanner groups". ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:50:46 2022 From: report at bugs.python.org (Larry Hastings) Date: Sat, 02 Apr 2022 21:50:46 +0000 Subject: [issue47145] Improve graphlib.TopologicalSort by removing the prepare step In-Reply-To: <1648484434.3.0.135225433651.issue47145@roundup.psfhosted.org> Message-ID: <1648936246.32.0.36072576807.issue47145@roundup.psfhosted.org> Larry Hastings added the comment: One final aside. Let me preface this by saying: I'm not proposing the following for graphlib.TopologicalSort. It's obviously too late to change that object this much. It's just something I'm thinking about--maybe I'll use this in my own library. Where we are now, the graphlib.TopologicalSort object is simultaneously a static representation of a graph--which the object doesn't provide a public API for you to examine!--and a stateful single-use iterator over that graph. My proposed change to the API seems to increase the tension between these two sets of semantics. Perhaps a better set of semantics, that more successfully maps my use case to the graph object, would be as follows: * you can add() nodes and edges at any time. * get_ready() always returns the current list of nodes with no prececessors. There is no internal "we already told you about this one" state. * replace done() with remove(), which removes the node and all edges from/to it from the graph. * static_order() is still fine. I think this would make it easy to reason about the object's behavior, and would be a better match to my use case where you're continually adding (and removing?) nodes, not just during an initial "populate the graph" phase. Again, not appropriate to consider for graphlib.TopologicalSort. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:52:52 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 21:52:52 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648936372.69.0.644802510877.issue47152@roundup.psfhosted.org> STINNER Victor added the comment: The re.template() function and the re.TEMPLATE functions are not documented and not tested. The re.Scanner class is not documented but has a test_scanner() test in test_re. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:56:40 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 21:56:40 +0000 Subject: [issue37387] test_compileall fails randomly on Windows when tests are run in parallel In-Reply-To: <1561383626.08.0.320504464802.issue37387@roundup.psfhosted.org> Message-ID: <1648936600.72.0.697332345209.issue37387@roundup.psfhosted.org> STINNER Victor added the comment: I close this issue as a duplicate of bpo-47089. ---------- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Avoid sporadic failure of test_compileall on Windows _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 17:56:55 2022 From: report at bugs.python.org (STINNER Victor) Date: Sat, 02 Apr 2022 21:56:55 +0000 Subject: [issue47089] Avoid sporadic failure of test_compileall on Windows In-Reply-To: <1647898446.37.0.407539254542.issue47089@roundup.psfhosted.org> Message-ID: <1648936615.93.0.326563935005.issue47089@roundup.psfhosted.org> STINNER Victor added the comment: bpo-37387 was closed as a duplicate of this issue. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 18:11:27 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sat, 02 Apr 2022 22:11:27 +0000 Subject: [issue45584] Clarifying truncating in documentation In-Reply-To: <1634952666.85.0.640050968697.issue45584@roundup.psfhosted.org> Message-ID: <1648937487.38.0.800064760668.issue45584@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset ebbdbbff5d6840807e46ec61b8a323e94ee88de2 by Arthur Milchior in branch 'main': bpo-45584: Clarify `math.trunc` documentation (GH-29183) https://github.com/python/cpython/commit/ebbdbbff5d6840807e46ec61b8a323e94ee88de2 ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 18:11:35 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 22:11:35 +0000 Subject: [issue45584] Clarifying truncating in documentation In-Reply-To: <1634952666.85.0.640050968697.issue45584@roundup.psfhosted.org> Message-ID: <1648937495.64.0.602819319097.issue45584@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +30335 pull_request: https://github.com/python/cpython/pull/32272 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 18:12:03 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 22:12:03 +0000 Subject: [issue45584] Clarifying truncating in documentation In-Reply-To: <1634952666.85.0.640050968697.issue45584@roundup.psfhosted.org> Message-ID: <1648937523.28.0.816487367351.issue45584@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30336 pull_request: https://github.com/python/cpython/pull/32273 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 18:14:42 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sat, 02 Apr 2022 22:14:42 +0000 Subject: [issue45584] Clarifying truncating in documentation In-Reply-To: <1634952666.85.0.640050968697.issue45584@roundup.psfhosted.org> Message-ID: <1648937682.28.0.451186116567.issue45584@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for the patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 18:18:29 2022 From: report at bugs.python.org (Erlend E. Aasland) Date: Sat, 02 Apr 2022 22:18:29 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1648937909.59.0.218117720866.issue45847@roundup.psfhosted.org> Erlend E. Aasland added the comment: Anthony: you should be able to build the _tkinter by manually specifying the compiler and linker flags using the `TCLTK_CFLAGS` and `TCLTK_LIBS` environment variables. AFAICS, the flags provided by pkgconfig in Ubuntu 20.04 should work well in 18.04 (possibly with minor adjustments; I didn't check). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 18:31:16 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 22:31:16 +0000 Subject: [issue45584] Clarifying truncating in documentation In-Reply-To: <1634952666.85.0.640050968697.issue45584@roundup.psfhosted.org> Message-ID: <1648938676.56.0.642675183023.issue45584@roundup.psfhosted.org> miss-islington added the comment: New changeset 3031b867531009d270d5d7d3e53e739c4cba8816 by Miss Islington (bot) in branch '3.10': bpo-45584: Clarify `math.trunc` documentation (GH-29183) https://github.com/python/cpython/commit/3031b867531009d270d5d7d3e53e739c4cba8816 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 18:36:49 2022 From: report at bugs.python.org (miss-islington) Date: Sat, 02 Apr 2022 22:36:49 +0000 Subject: [issue45584] Clarifying truncating in documentation In-Reply-To: <1634952666.85.0.640050968697.issue45584@roundup.psfhosted.org> Message-ID: <1648939009.05.0.46014487894.issue45584@roundup.psfhosted.org> miss-islington added the comment: New changeset 694425817ba2b3a796acb3413a7111f6de4bd086 by Miss Islington (bot) in branch '3.9': bpo-45584: Clarify `math.trunc` documentation (GH-29183) https://github.com/python/cpython/commit/694425817ba2b3a796acb3413a7111f6de4bd086 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 19:27:06 2022 From: report at bugs.python.org (Jakub Kuczys) Date: Sat, 02 Apr 2022 23:27:06 +0000 Subject: [issue45099] asyncio.Task's documentation says that loop arg is removed when it's not In-Reply-To: <1630775028.47.0.984741146051.issue45099@roundup.psfhosted.org> Message-ID: <1648942026.49.0.345543558413.issue45099@roundup.psfhosted.org> Jakub Kuczys added the comment: I'm not sure why this issue was mentioned in GH-32166 since it doesn't really address this but regardless, it appears that my issue has been fixed in PR-31388 and PR-31403 when Serhiy fixed the issue from bpo-46777 so thanks :) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 19:42:43 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Sat, 02 Apr 2022 23:42:43 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648942963.15.0.142726072797.issue24563@roundup.psfhosted.org> Terry J. Reedy added the comment: I am writing a PR with an internal link. I decided that linking to Standard Encodings is sufficient. The Python Text Encodings section follows that. Anyone wanting to use any of those can experiment to see which work. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 19:54:21 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Sat, 02 Apr 2022 23:54:21 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648943661.56.0.553654175921.issue24563@roundup.psfhosted.org> Change by Terry J. Reedy : ---------- pull_requests: +30337 pull_request: https://github.com/python/cpython/pull/32274 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 20:13:45 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Sun, 03 Apr 2022 00:13:45 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648944825.72.0.8564208147.issue24563@roundup.psfhosted.org> Terry J. Reedy added the comment: New changeset 01be5d6446abbdd95d0c18bd19a58a62b05568d8 by Terry Jan Reedy in branch 'main': bpo-24563: Link encoding names to encoding declarations (GH-32274) https://github.com/python/cpython/commit/01be5d6446abbdd95d0c18bd19a58a62b05568d8 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 20:13:47 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 00:13:47 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648944827.77.0.716131516675.issue24563@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30338 pull_request: https://github.com/python/cpython/pull/32275 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 20:13:51 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 00:13:51 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648944831.84.0.901291276349.issue24563@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30339 pull_request: https://github.com/python/cpython/pull/32276 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 20:40:39 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 00:40:39 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648946439.1.0.805084636459.issue24563@roundup.psfhosted.org> miss-islington added the comment: New changeset f4e280d8c5461fa5e928fa07f6cd1779a4ac43ba by Miss Islington (bot) in branch '3.9': bpo-24563: Link encoding names to encoding declarations (GH-32274) https://github.com/python/cpython/commit/f4e280d8c5461fa5e928fa07f6cd1779a4ac43ba ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 20:40:59 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 00:40:59 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648946459.32.0.766621739731.issue24563@roundup.psfhosted.org> miss-islington added the comment: New changeset ce6af314ca8529d5ed0f307deb9c33029a69f4cb by Miss Islington (bot) in branch '3.10': bpo-24563: Link encoding names to encoding declarations (GH-32274) https://github.com/python/cpython/commit/ce6af314ca8529d5ed0f307deb9c33029a69f4cb ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 20:41:31 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Sun, 03 Apr 2022 00:41:31 +0000 Subject: [issue24563] [doc] Encoding declaration: doc supported encodings In-Reply-To: <1435966719.35.0.908058462942.issue24563@psf.upfronthosting.co.za> Message-ID: <1648946491.46.0.326573783562.issue24563@roundup.psfhosted.org> Change by Terry J. Reedy : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 20:52:27 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Sun, 03 Apr 2022 00:52:27 +0000 Subject: [issue46033] Duplicated sentence in for statement documentation In-Reply-To: <1639132962.13.0.2847255275.issue46033@roundup.psfhosted.org> Message-ID: <1648947147.22.0.22206386111.issue46033@roundup.psfhosted.org> Terry J. Reedy added the comment: New changeset 281f980d354d1709018a2dc77f79388faf3e56c0 by Micha? D in branch 'main': bpo-46033: Clarify for-statement execution (GH-30025) https://github.com/python/cpython/commit/281f980d354d1709018a2dc77f79388faf3e56c0 ---------- nosy: +terry.reedy _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 20:54:41 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Sun, 03 Apr 2022 00:54:41 +0000 Subject: [issue46033] Duplicated sentence in for statement documentation In-Reply-To: <1639132962.13.0.2847255275.issue46033@roundup.psfhosted.org> Message-ID: <1648947281.27.0.886740247364.issue46033@roundup.psfhosted.org> Change by Terry J. Reedy : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 22:35:48 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sun, 03 Apr 2022 02:35:48 +0000 Subject: [issue47031] math.nan should note that NANs do not compare equal to anything In-Reply-To: <1647384445.54.0.624569737197.issue47031@roundup.psfhosted.org> Message-ID: <1648953348.5.0.173516118418.issue47031@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for the bug report and patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 22:54:46 2022 From: report at bugs.python.org (David Goncalves) Date: Sun, 03 Apr 2022 02:54:46 +0000 Subject: [issue18624] Add alias for iso-8859-8-i which is the same as iso-8859-8 In-Reply-To: <1375398269.06.0.0330535739148.issue18624@psf.upfronthosting.co.za> Message-ID: <1648954486.41.0.370200513892.issue18624@roundup.psfhosted.org> Change by David Goncalves : ---------- nosy: +dpg nosy_count: 8.0 -> 9.0 pull_requests: +30340 pull_request: https://github.com/python/cpython/pull/32279 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 23:51:25 2022 From: report at bugs.python.org (STINNER Victor) Date: Sun, 03 Apr 2022 03:51:25 +0000 Subject: [issue45410] python -m test -jN: write stderr in stdout to get messages in order In-Reply-To: <1633691736.44.0.338544053782.issue45410@roundup.psfhosted.org> Message-ID: <1648957885.37.0.60044424409.issue45410@roundup.psfhosted.org> Change by STINNER Victor : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Apr 2 23:54:41 2022 From: report at bugs.python.org (STINNER Victor) Date: Sun, 03 Apr 2022 03:54:41 +0000 Subject: [issue43557] Deprecate getlocale() and normalize() functions In-Reply-To: <1616160447.56.0.84902377628.issue43557@roundup.psfhosted.org> Message-ID: <1648958081.04.0.975817088278.issue43557@roundup.psfhosted.org> Change by STINNER Victor : ---------- title: Deprecate getdefaultlocale(), getlocale() and normalize() functions -> Deprecate getlocale() and normalize() functions _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 00:25:00 2022 From: report at bugs.python.org (Hood Chatham) Date: Sun, 03 Apr 2022 04:25:00 +0000 Subject: [issue47196] Function pointer cast in test_imp In-Reply-To: <1648857711.17.0.141077263636.issue47196@roundup.psfhosted.org> Message-ID: <1648959900.81.0.379098636298.issue47196@roundup.psfhosted.org> Change by Hood Chatham : ---------- pull_requests: +30341 pull_request: https://github.com/python/cpython/pull/32280 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 01:23:03 2022 From: report at bugs.python.org (Nick Coghlan) Date: Sun, 03 Apr 2022 05:23:03 +0000 Subject: [issue44800] Code readability: rename InterpreterFrame to `_Py_framedata` In-Reply-To: <1627782511.03.0.274598412143.issue44800@roundup.psfhosted.org> Message-ID: <1648963383.65.0.0250750486802.issue44800@roundup.psfhosted.org> Change by Nick Coghlan : ---------- pull_requests: +30342 pull_request: https://github.com/python/cpython/pull/32281 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 01:27:28 2022 From: report at bugs.python.org (Nick Coghlan) Date: Sun, 03 Apr 2022 05:27:28 +0000 Subject: [issue44800] Code readability: rename InterpreterFrame to `_Py_framedata` In-Reply-To: <1627782511.03.0.274598412143.issue44800@roundup.psfhosted.org> Message-ID: <1648963648.11.0.526913878021.issue44800@roundup.psfhosted.org> Nick Coghlan added the comment: Core dev forum thread: https://discuss.python.org/t/proposal-rename-pyinterpreterframe-struct-as-py-framedata/14213 The conclusion from the forum thread and associated PRs was that any of the further renaming proposed didn't provide sufficient additional clarity to justify further code churn in a semi public API. As a result, the final PR just documents the status quo in the internal C API frame header (since the conventions arising from the code-churn-minimising migration to a split data structure is hard to infer just from reading the code): https://github.com/python/cpython/pull/32281 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 02:41:46 2022 From: report at bugs.python.org (Nick Coghlan) Date: Sun, 03 Apr 2022 06:41:46 +0000 Subject: [issue47204] Ensure PyEval_GetGlobals() doesn't set an exception when returning NULL Message-ID: <1648968106.21.0.863482035825.issue47204@roundup.psfhosted.org> New submission from Nick Coghlan : While working on the first PR for bpo-44800 I provoked an obscure failure in PyImport_ImportModule by making PyEval_GetGlobals set an exception when returning NULL (as PyEval_GetLocals has done since bpo-18408 was implemented for Python 3.4). This ticket covers adding an embedding test case that: * ensures PyEval_GetGlobals() returns NULL without an exception when no Python frame is active * ensures PyEval_GetLocals() returns NULL and sets an exception when no Python frame is active * ensures PyImport_ImportModule still works when no Python frame is active There's an option to slightly change the behaviour of `PyEval_GetLocals()` to NOT set an exception in the "no Python frame" case, and instead only set the error when there is a Python frame, but something goes wrong when attempting to access the fast locals array (such as a memory allocation failure). ---------- assignee: ncoghlan messages: 416611 nosy: ncoghlan priority: normal severity: normal stage: test needed status: open title: Ensure PyEval_GetGlobals() doesn't set an exception when returning NULL type: enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 02:48:44 2022 From: report at bugs.python.org (Nick Coghlan) Date: Sun, 03 Apr 2022 06:48:44 +0000 Subject: [issue47204] Ensure PyEval_GetGlobals() doesn't set an exception when returning NULL In-Reply-To: <1648968106.21.0.863482035825.issue47204@roundup.psfhosted.org> Message-ID: <1648968524.53.0.661162591295.issue47204@roundup.psfhosted.org> Nick Coghlan added the comment: Core dev forum thread for the C API question: https://discuss.python.org/t/subtle-c-api-discrepancy-pyeval-getlocals-vs-pyeval-getglobals-with-no-python-frame/14797 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 02:56:04 2022 From: report at bugs.python.org (Nick Coghlan) Date: Sun, 03 Apr 2022 06:56:04 +0000 Subject: [issue44800] Code readability: rename InterpreterFrame to `_Py_framedata` In-Reply-To: <1627782511.03.0.274598412143.issue44800@roundup.psfhosted.org> Message-ID: <1648968964.53.0.883164195229.issue44800@roundup.psfhosted.org> Nick Coghlan added the comment: New changeset 124227c95f310d2ecd4b567271ab1919fc7000cb by Nick Coghlan in branch 'main': bpo-44800: Document internal frame naming conventions (GH-32281) https://github.com/python/cpython/commit/124227c95f310d2ecd4b567271ab1919fc7000cb ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 03:45:36 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 07:45:36 +0000 Subject: [issue47196] Function pointer cast in test_imp In-Reply-To: <1648857711.17.0.141077263636.issue47196@roundup.psfhosted.org> Message-ID: <1648971936.95.0.824281333231.issue47196@roundup.psfhosted.org> miss-islington added the comment: New changeset 3faa9f78d4b9a8c0fd4657b434bdb08ae1f28800 by Hood Chatham in branch 'main': bpo-47196: Fix one more PyInit function signature (GH-32280) https://github.com/python/cpython/commit/3faa9f78d4b9a8c0fd4657b434bdb08ae1f28800 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 04:22:50 2022 From: report at bugs.python.org (Yurii Karabas) Date: Sun, 03 Apr 2022 08:22:50 +0000 Subject: [issue46014] functools.singledispatch does not support Union types In-Reply-To: <1638970452.65.0.012237534186.issue46014@roundup.psfhosted.org> Message-ID: <1648974170.96.0.912052343687.issue46014@roundup.psfhosted.org> Change by Yurii Karabas <1998uriyyo at gmail.com>: ---------- pull_requests: +30343 pull_request: https://github.com/python/cpython/pull/32282 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 04:23:30 2022 From: report at bugs.python.org (Ma Lin) Date: Sun, 03 Apr 2022 08:23:30 +0000 Subject: [issue23689] Memory leak in Modules/sre_lib.h In-Reply-To: <1426611380.23.0.46113718722.issue23689@psf.upfronthosting.co.za> Message-ID: <1648974210.39.0.37806889443.issue23689@roundup.psfhosted.org> Change by Ma Lin : ---------- pull_requests: +30344 pull_request: https://github.com/python/cpython/pull/32283 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 05:51:00 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 09:51:00 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1648979460.73.0.194042251829.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30345 pull_request: https://github.com/python/cpython/pull/32284 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 07:01:28 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Sun, 03 Apr 2022 11:01:28 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1648983688.53.0.130631507507.issue47152@roundup.psfhosted.org> Serhiy Storchaka added the comment: There are two very different classes with similar names: _sre.SRE_Scanner and re.Scanner. The former is used to implement the Pattern.finditer() method, but it could be used in other cases. The latter is an experimental implementation of generalized lexer using the former class. Both are undocumented. It is difficult to document Pattern.scanner() and _sre.SRE_Scanner because the class name contains implementation-specific prefix, and without it it would conflict with re.Scanner. But let leave it all to a separate issue. The original discussion about TEMPLATE was lost. Initially it only affected repetition operators, but now using them with TEMPLATE is error. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 08:17:20 2022 From: report at bugs.python.org (Dominic Davis-Foster) Date: Sun, 03 Apr 2022 12:17:20 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1648988240.75.0.279976600691.issue47185@roundup.psfhosted.org> Change by Dominic Davis-Foster : ---------- nosy: +dom1310df _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 08:36:46 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 12:36:46 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit Message-ID: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> New submission from Christian Heimes : Two test cases have been failing on FreeBSD buildbot for a while. Let's skip the error check on FreeBSD for now. 0:27:24 load avg: 1.97 Re-running test_posix in verbose mode (matching: test_sched_getaffinity, test_sched_setaffinity) test_sched_getaffinity (test.test_posix.PosixTester.test_sched_getaffinity) ... FAIL test_sched_setaffinity (test.test_posix.PosixTester.test_sched_setaffinity) ... FAIL ====================================================================== FAIL: test_sched_getaffinity (test.test_posix.PosixTester.test_sched_getaffinity) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/home/buildbot/python/pull_request.koobs-freebsd-564d/build/Lib/test/test_posix.py", line 1197, in test_sched_getaffinity self.assertRaises(OSError, posix.sched_getaffinity, -1) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AssertionError: OSError not raised by sched_getaffinity ====================================================================== FAIL: test_sched_setaffinity (test.test_posix.PosixTester.test_sched_setaffinity) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/home/buildbot/python/pull_request.koobs-freebsd-564d/build/Lib/test/test_posix.py", line 1215, in test_sched_setaffinity self.assertRaises(OSError, posix.sched_setaffinity, -1, mask) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AssertionError: OSError not raised by sched_setaffinity ---------------------------------------------------------------------- Ran 2 tests in 0.015s ---------- components: Tests messages: 416616 nosy: christian.heimes priority: normal severity: normal status: open title: test_sched_getaffinity and setaffinity fail on FreeBSD buildbit versions: Python 3.10, Python 3.11, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 08:42:23 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 12:42:23 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648989743.73.0.826797522292.issue47205@roundup.psfhosted.org> Change by Christian Heimes : ---------- keywords: +patch pull_requests: +30346 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32285 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 08:55:22 2022 From: report at bugs.python.org (Jason R. Coombs) Date: Sun, 03 Apr 2022 12:55:22 +0000 Subject: [issue47142] Document importlib.resources.abc.Traversable In-Reply-To: <1648471695.21.0.705816081737.issue47142@roundup.psfhosted.org> Message-ID: <1648990522.53.0.0274909917678.issue47142@roundup.psfhosted.org> Jason R. Coombs added the comment: > Can the argument to `joinpath` contain path separators? Good question. Currently, I'm aware of three concrete implementations of Traversable.joinpath: - pathlib.Path.joinpath - zipfile.Path.joinpath - importlib.resources.simple.ResourceContainer.joinpath ``Traversable.joinpath`` was modeled after ``pathlib.Path.joinpath``, which itself is itself not rigorous in what path separators are allowed. The [docstring](https://github.com/python/cpython/blob/3faa9f78d4b9a8c0fd4657b434bdb08ae1f28800/Lib/pathlib.py#L754-L758) does indicate that each of the parameters will be combined with the existing path and acknowledges that absolute paths are possible. The [curated docs](https://docs.python.org/3/library/pathlib.html#pathlib.PurePath.joinpath) only give examples, and curiously, those examples only use posixpath.sep, suggesting that it's recommended when passing compound paths to use posixpath separators as they're more widely supported. For zipfile.Path, I observe that [joinpath does accept path separators](https://github.com/python/cpython/blob/3faa9f78d4b9a8c0fd4657b434bdb08ae1f28800/Lib/zipfile.py#L2438-L2440) but looking at the [docs for zipfile](https://gist.github.com/jaraco/5b266870c62680d6d6b3a876be321fa4), it's not even obvious to me what path separators are used in zipfiles, but I do observe there is [coercion to posixpath.sep](https://gist.github.com/jaraco/5b266870c62680d6d6b3a876be321fa4). ``ResourceContainer``, on the other hand, [will not accept path separators](https://github.com/python/cpython/blob/3faa9f78d4b9a8c0fd4657b434bdb08ae1f28800/Lib/importlib/resources/simple.py#L102-L105). This class, however, may not be used anywhere and probably could be extended to support path separators as well. Here's what I propose: - First, document that the interface is under-specified and that for maximum compatibility, a consumer should pass only relative paths using posixpath.sep or no separator at all. Additionally, explicitly declare that behavior with absolute paths is undefined and unsupported. - Second, expand the interface on ``Traversable.joinpath`` to stipulate that the interface should accept multiple relative paths. - Third, ``simple.ResourceContainer`` should be updated to meet that spec. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 09:04:38 2022 From: report at bugs.python.org (Jason R. Coombs) Date: Sun, 03 Apr 2022 13:04:38 +0000 Subject: [issue47142] Document importlib.resources.abc.Traversable In-Reply-To: <1648471695.21.0.705816081737.issue47142@roundup.psfhosted.org> Message-ID: <1648991078.04.0.66010638988.issue47142@roundup.psfhosted.org> Jason R. Coombs added the comment: > Are the methods expected to raise specific exception types (e.g. if a resource is missing, or you call iterdir on a ?file?)? The short answer is no. The protocol does not stipulate specific exceptions. Perhaps it should be documented that any exceptions that occur when accessing the backing resource will propagate. Although, I do believe that statement is true for all Python code unless stated otherwise. I agree it would be nice if the protocol could stipulate which exceptions might be raised by a given implementation, but I'm not confident that's possible, at least not without wrapping/adapting the pathlib.Path and zipfile.Path objects. Does that answer the question? Are you working on another provider that implements this protocol? I'd be happy to consult on that effort. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 09:06:57 2022 From: report at bugs.python.org (Jason R. Coombs) Date: Sun, 03 Apr 2022 13:06:57 +0000 Subject: [issue47142] Document importlib.resources.abc.Traversable In-Reply-To: <1648471695.21.0.705816081737.issue47142@roundup.psfhosted.org> Message-ID: <1648991217.91.0.181287284937.issue47142@roundup.psfhosted.org> Jason R. Coombs added the comment: Correction. In msg416618, link should have been: [docs for zipfile](https://docs.python.org/3/library/zipfile.html#zipinfo-objects) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 09:38:54 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 13:38:54 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648993134.15.0.983926076206.issue47205@roundup.psfhosted.org> Christian Heimes added the comment: Koobs, please take a look. ---------- nosy: +koobs _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 09:39:05 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 13:39:05 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648993145.28.0.298845106295.issue47205@roundup.psfhosted.org> Change by Christian Heimes : ---------- components: +FreeBSD _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 10:49:16 2022 From: report at bugs.python.org (Ken Jin) Date: Sun, 03 Apr 2022 14:49:16 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648997356.78.0.0154482773859.issue47205@roundup.psfhosted.org> Ken Jin added the comment: FWIW, seems like the buildbot started failing at either commit cb495a1e9f3acfcd8cb94a6b89c79d0909e3383f or 708812085355c92f32e547d1f1d1f29aefbbc27e. But I have no clue how commits changing the Windows build config can lead to test_posix failing. ---------- nosy: +kj _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 10:59:11 2022 From: report at bugs.python.org (Paul Ganssle) Date: Sun, 03 Apr 2022 14:59:11 +0000 Subject: [issue46614] Add option to output UTC datetimes as "Z" in `.isoformat()` In-Reply-To: <1643823106.57.0.535855742317.issue46614@roundup.psfhosted.org> Message-ID: <1648997951.45.0.0444859122678.issue46614@roundup.psfhosted.org> Paul Ganssle added the comment: I think this approach is probably the best we can do, but I could also imagine that users might find it to be confusing behavior. I wonder if there's any informal user testing we can do? I guess the ISO 8601 spec does call "Z" the "UTC designator", so `use_utc_designator` seems like approximately the right name. My main hesitation with this name is that I suspect users may think that `use_utc_designator` means that they *unconditionally* want to use `Z` ? without reading the documentation (which we can assume 99% of users won't do) ? you might assume that `dt.isoformat(use_utc_designator=True)` would translate to `dt.astimezone(timezone.utc).replace(tzinfo=None).isoformat() + "Z"`. A name like `utc_as_z` is definitely less... elegant, but conveys the concept a bit more clearly. Would be worth throwing it to a poll or something before merging. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:02:35 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 15:02:35 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648998155.77.0.933148408251.issue47205@roundup.psfhosted.org> Christian Heimes added the comment: Koob's build bot is a FreeBSD 14 host. FreeBSD 14 is under development and has not reached stable yet. I bet that the issue was caused by a recent system and Kernel upgrade. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:04:09 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 15:04:09 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648998249.87.0.466438912365.issue47205@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +30347 pull_request: https://github.com/python/cpython/pull/32286 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:04:13 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 15:04:13 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648998253.79.0.807140301926.issue47205@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30348 pull_request: https://github.com/python/cpython/pull/32287 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:04:15 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 15:04:15 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648998255.45.0.883184874899.issue47205@roundup.psfhosted.org> Christian Heimes added the comment: New changeset b82cdd1dac9a9be52051abd90a1ce69236ac41f4 by Christian Heimes in branch 'main': bpo-47205: Skip error check of sched_get/setaffinity on FreeBSD (GH-32285) https://github.com/python/cpython/commit/b82cdd1dac9a9be52051abd90a1ce69236ac41f4 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:10:59 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Sun, 03 Apr 2022 15:10:59 +0000 Subject: [issue47206] pickle docs are wrong about nested classes Message-ID: <1648998659.8.0.245772274253.issue47206@roundup.psfhosted.org> New submission from Jelle Zijlstra : https://docs.python.org/3.10/library/pickle.html#what-can-be-pickled-and-unpickled says that only "classes that are defined at the top level of a module" can be pickled. But in fact these work fine in current Python, probably since 3.3 when __qualname__ was added (https://docs.python.org/3/library/stdtypes.html#definition.__qualname__). Similarly, the docs claim only top-level functions can be pickled, but in fact methods nested in classes work fine. Example script demonstrating that these work: import pickle class X: class Y: pass def method(self): pass print(pickle.dumps(X.Y)) print(pickle.loads(pickle.dumps(X.Y))) print(pickle.dumps(X.Y())) print(pickle.loads(pickle.dumps(X.Y()))) print(pickle.dumps(X.method)) print(pickle.loads(pickle.dumps(X.method))) ---------- assignee: docs at python components: Documentation messages: 416625 nosy: JelleZijlstra, alexandre.vassalotti, docs at python priority: normal severity: normal status: open title: pickle docs are wrong about nested classes type: behavior versions: Python 3.10, Python 3.11, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:27:29 2022 From: report at bugs.python.org (Jason R. Coombs) Date: Sun, 03 Apr 2022 15:27:29 +0000 Subject: [issue46126] Unittest output drives developers to avoid docstrings In-Reply-To: <1639868904.15.0.52665025329.issue46126@roundup.psfhosted.org> Message-ID: <1648999649.46.0.474870814394.issue46126@roundup.psfhosted.org> Change by Jason R. Coombs : ---------- pull_requests: +30349 pull_request: https://github.com/python/cpython/pull/32288 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:27:55 2022 From: report at bugs.python.org (Eryk Sun) Date: Sun, 03 Apr 2022 15:27:55 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1648999675.81.0.272525708498.issue47203@roundup.psfhosted.org> Eryk Sun added the comment: The user site packages directory is architecture specific starting with 3.10, e.g. "%AppData%\Python\Python310-32\site-packages". The PYTHONPATH environment variable is shared by all versions. However, I don't understand how the binascii module could be a problem because it's built into the interpreter DLL itself, i.e. it's in sys.builtin_module_names. There is no binascii.pyd, and, even if there were, it would be ignored. ---------- nosy: +eryksun _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:30:53 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 15:30:53 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1648999853.47.0.635297443067.issue47205@roundup.psfhosted.org> miss-islington added the comment: New changeset 490ccbd6e0e5aad07a40c79a6b0c45ffca91724b by Miss Islington (bot) in branch '3.9': bpo-47205: Skip error check of sched_get/setaffinity on FreeBSD (GH-32285) https://github.com/python/cpython/commit/490ccbd6e0e5aad07a40c79a6b0c45ffca91724b ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:46:25 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sun, 03 Apr 2022 15:46:25 +0000 Subject: [issue15795] Zipfile.extractall does not preserve file permissions In-Reply-To: <1346106964.12.0.723201722432.issue15795@psf.upfronthosting.co.za> Message-ID: <1649000785.85.0.420869462861.issue15795@roundup.psfhosted.org> Change by Sam Ezeh : ---------- nosy: +sam_ezeh _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 11:48:53 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sun, 03 Apr 2022 15:48:53 +0000 Subject: [issue15795] Zipfile.extractall does not preserve file permissions In-Reply-To: <1346106964.12.0.723201722432.issue15795@psf.upfronthosting.co.za> Message-ID: <1649000933.61.0.456036452244.issue15795@roundup.psfhosted.org> Change by Sam Ezeh : ---------- pull_requests: +30350 pull_request: https://github.com/python/cpython/pull/32289 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 12:05:10 2022 From: report at bugs.python.org (Hood Chatham) Date: Sun, 03 Apr 2022 16:05:10 +0000 Subject: [issue47197] ctypes mishandles `void` return type In-Reply-To: <1648862049.34.0.311220561963.issue47197@roundup.psfhosted.org> Message-ID: <1649001910.73.0.657760569918.issue47197@roundup.psfhosted.org> Change by Hood Chatham : ---------- nosy: +amaury.forgeotdarc, belopolsky, meador.inge _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 12:08:25 2022 From: report at bugs.python.org (Paul Ganssle) Date: Sun, 03 Apr 2022 16:08:25 +0000 Subject: [issue47207] Switch datetime docstrings / documentation to using "Returns" rather than "Return"? Message-ID: <1649002105.09.0.287178375758.issue47207@roundup.psfhosted.org> New submission from Paul Ganssle : In bpo-9305, Fred Drake recommends preferring `Returns ...` over the imperative `Return ...`: https://bugs.python.org/issue9305#msg110912 Currently we're pretty consistent about `Return ...`, which is consistent with PEP 257: https://peps.python.org/pep-0257/ That said, I actually think "Returns ..." sounds much better in the documentation, and I'd be happy to see it changed if others agree. I have spun this off from bpo-9305 so that we can unblock https://github.com/python/cpython/pull/31697. ---------- assignee: docs at python components: Documentation messages: 416628 nosy: belopolsky, docs at python, fdrake, p-ganssle, slateny priority: normal severity: normal status: open title: Switch datetime docstrings / documentation to using "Returns" rather than "Return"? versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 12:09:04 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Sun, 03 Apr 2022 16:09:04 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1649002144.23.0.672606854991.issue47203@roundup.psfhosted.org> Jeremy Kloth added the comment: Well, to really see where things are going wrong, there is always the verbose option when launching Python: py -v -c "import binascii" This will output a lot of information but should help pin down what is exactly being imported when the error occurs. If the above doesn't give enough of a clue as to the offending file, try '-vv' instead of '-v'. This increases the amount of debugging output, but does show each filename attempted for each particular import. You will need to scroll back quite awhile to get to the error location (past the cleanup messages). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 12:13:15 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sun, 03 Apr 2022 16:13:15 +0000 Subject: [issue39064] ValueError in zipfile.ZipFile In-Reply-To: <1576501122.43.0.655067405413.issue39064@roundup.psfhosted.org> Message-ID: <1649002395.51.0.931191282946.issue39064@roundup.psfhosted.org> Change by Sam Ezeh : ---------- nosy: +sam_ezeh _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 12:13:37 2022 From: report at bugs.python.org (Antony Lee) Date: Sun, 03 Apr 2022 16:13:37 +0000 Subject: [issue26792] docstrings of runpy.run_{module,path} are rather sparse In-Reply-To: <1460944502.67.0.955110104065.issue26792@psf.upfronthosting.co.za> Message-ID: <1649002417.4.0.815226205709.issue26792@roundup.psfhosted.org> Change by Antony Lee : ---------- nosy: -Antony.Lee _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 12:16:41 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Sun, 03 Apr 2022 16:16:41 +0000 Subject: [issue23689] Memory leak in Modules/sre_lib.h In-Reply-To: <1426611380.23.0.46113718722.issue23689@psf.upfronthosting.co.za> Message-ID: <1649002601.86.0.103660364245.issue23689@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset 6e3eee5c11b539e9aab39cff783acf57838c355a by Ma Lin in branch 'main': bpo-23689: re module, fix memory leak when a match is terminated by a signal or memory allocation failure (GH-32283) https://github.com/python/cpython/commit/6e3eee5c11b539e9aab39cff783acf57838c355a ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 12:21:31 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Sun, 03 Apr 2022 16:21:31 +0000 Subject: [issue23689] Memory leak in Modules/sre_lib.h In-Reply-To: <1426611380.23.0.46113718722.issue23689@psf.upfronthosting.co.za> Message-ID: <1649002891.79.0.605088650683.issue23689@roundup.psfhosted.org> Serhiy Storchaka added the comment: Thank you Ma Lin for all your work. The fix changes interfaces of some internal functions which can be used in third-party code, and the bug occurs only in special circumstances, so it is not practical to backport it. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 -Python 3.8 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 12:41:04 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Sun, 03 Apr 2022 16:41:04 +0000 Subject: [issue39064] ValueError in zipfile.ZipFile In-Reply-To: <1576501122.43.0.655067405413.issue39064@roundup.psfhosted.org> Message-ID: <1649004064.65.0.523274143941.issue39064@roundup.psfhosted.org> Serhiy Storchaka added the comment: Try to create a normal ZIP file (it can be empty), then try to set some byte to FF (or a pair of bytes to FFFF, or 4 consequent bytes to FFFFFFFF, until you get the exactly same error). Then you can just add the binary dump of that file in tests. ---------- nosy: +serhiy.storchaka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 13:25:49 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Sun, 03 Apr 2022 17:25:49 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649006749.24.0.639537653969.issue47152@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- pull_requests: +30351 pull_request: https://github.com/python/cpython/pull/32290 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 13:36:07 2022 From: report at bugs.python.org (Senthil Kumaran) Date: Sun, 03 Apr 2022 17:36:07 +0000 Subject: [issue46337] urllib.parse: Allow more flexibility in schemes and URL resolution behavior In-Reply-To: <1641851456.34.0.342855463339.issue46337@roundup.psfhosted.org> Message-ID: <1649007367.4.0.394409805182.issue46337@roundup.psfhosted.org> Senthil Kumaran added the comment: Hi all, I was looking at it. Introducing an enum at the last parameter is going to add cost of understanding the behavior to this function. I am doing further reading on the previous discussions and PR(s) now. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 14:11:13 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sun, 03 Apr 2022 18:11:13 +0000 Subject: [issue39064] ValueError in zipfile.ZipFile In-Reply-To: <1576501122.43.0.655067405413.issue39064@roundup.psfhosted.org> Message-ID: <1649009473.24.0.655724659911.issue39064@roundup.psfhosted.org> Sam Ezeh added the comment: One way of doing this is by making the central directory offset negative by first taking the zip file containing just an EOCD record and then listing the total size of the central directory records as positive. ``` Python 3.11.0a4+ (heads/bpo-39064:eb1935dacf, Apr 3 2022, 19:09:53) [GCC 11.1.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import zipfile >>> import io >>> b = [80, 75, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] >>> b[12] = 1 >>> f = io.BytesIO(bytes(b)) >>> zipfile.ZipFile(f) Traceback (most recent call last): File "/run/media/sam/OS/Git/cpython/Lib/zipfile.py", line 1370, in _RealGetContents fp.seek(self.start_dir, 0) ^^^^^^^^^^^^^^^^^^^^^^^^^^ ValueError: negative seek value -1 During handling of the above exception, another exception occurred: Traceback (most recent call last): File "", line 1, in File "/run/media/sam/OS/Git/cpython/Lib/zipfile.py", line 1284, in __init__ self._RealGetContents() ^^^^^^^^^^^^^^^^^^^^^^^ File "/run/media/sam/OS/Git/cpython/Lib/zipfile.py", line 1372, in _RealGetContents raise BadZipFile("Bad offset for central directory") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ zipfile.BadZipFile: Bad offset for central directory >>> ``` ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 14:16:10 2022 From: report at bugs.python.org (Irit Katriel) Date: Sun, 03 Apr 2022 18:16:10 +0000 Subject: [issue39064] ValueError in zipfile.ZipFile In-Reply-To: <1576501122.43.0.655067405413.issue39064@roundup.psfhosted.org> Message-ID: <1649009770.39.0.799885004636.issue39064@roundup.psfhosted.org> Irit Katriel added the comment: Sam, can you put that in a PR please? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 14:17:25 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sun, 03 Apr 2022 18:17:25 +0000 Subject: [issue39064] ValueError in zipfile.ZipFile In-Reply-To: <1576501122.43.0.655067405413.issue39064@roundup.psfhosted.org> Message-ID: <1649009845.08.0.633860770936.issue39064@roundup.psfhosted.org> Sam Ezeh added the comment: Yes, of course. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 14:28:42 2022 From: report at bugs.python.org (Guido van Rossum) Date: Sun, 03 Apr 2022 18:28:42 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1649010522.35.0.534344479216.issue47185@roundup.psfhosted.org> Guido van Rossum added the comment: [Victor] > Do you consider that .replace() must reject changing co_code if other tables are not updated? I simply don't believe it can always do that correctly, so I believe it should not do it. > Debugging tables are not strictly required just to *execute* code, no? No, but if they are wrong crashes might happen when they are consulted. At the very least they would confuse users. > If you consider that the caller *must* update co_exceptiontable, replace() must raise an exception in this case, to prevent creating a code object which would behave in a strange way (broken exception handling). No. There are a zillion use cases. If you are using .replace() you are taking responsibility for the result. > If someone really wants testing an empty exception table just for fun, it would still be possible to pass co_exceptiontable=b''. > My concern is more about people upgrading to Python 3.11 and who "suddenly" don't get their exceptions handled anymore. I would prefer catching such bug at the replace() call, rather than having to execute the code (and only notice the bug in production? oops). Where would these people get the value that they're using to replace co_code? Surely if they are generating bytecode it will already be broken. Pretty much all instructions are different in 3.11. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 14:30:05 2022 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Sun, 03 Apr 2022 18:30:05 +0000 Subject: [issue46614] Add option to output UTC datetimes as "Z" in `.isoformat()` In-Reply-To: <1643823106.57.0.535855742317.issue46614@roundup.psfhosted.org> Message-ID: <1649010605.2.0.345820612525.issue46614@roundup.psfhosted.org> ?ric Araujo added the comment: Bad idea: pass `zulu=True` It is short, memorable if you know about it, otherwise obscure enough to push people to read the docs and be clear about what it does. Also strange and far from obvious, so a bad idea. Unless? ? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 14:35:53 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sun, 03 Apr 2022 18:35:53 +0000 Subject: [issue30964] Mention ensurepip in package installation docs In-Reply-To: <1500425281.82.0.79058660024.issue30964@psf.upfronthosting.co.za> Message-ID: <1649010953.45.0.109249561259.issue30964@roundup.psfhosted.org> Change by Sam Ezeh : ---------- nosy: +sam_ezeh nosy_count: 3.0 -> 4.0 pull_requests: +30352 pull_request: https://github.com/python/cpython/pull/32291 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 14:36:35 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sun, 03 Apr 2022 18:36:35 +0000 Subject: [issue39064] ValueError in zipfile.ZipFile In-Reply-To: <1576501122.43.0.655067405413.issue39064@roundup.psfhosted.org> Message-ID: <1649010995.14.0.501887959005.issue39064@roundup.psfhosted.org> Change by Sam Ezeh : ---------- pull_requests: +30353 pull_request: https://github.com/python/cpython/pull/32291 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 14:37:40 2022 From: report at bugs.python.org (Sam Ezeh) Date: Sun, 03 Apr 2022 18:37:40 +0000 Subject: [issue30964] Mention ensurepip in package installation docs In-Reply-To: <1500425281.82.0.79058660024.issue30964@psf.upfronthosting.co.za> Message-ID: <1649011060.4.0.623548391283.issue30964@roundup.psfhosted.org> Change by Sam Ezeh : ---------- pull_requests: -30352 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 15:00:01 2022 From: report at bugs.python.org (Julien Palard) Date: Sun, 03 Apr 2022 19:00:01 +0000 Subject: [issue42238] Deprecate suspicious.py? In-Reply-To: <1604274563.95.0.828690163802.issue42238@roundup.psfhosted.org> Message-ID: <1649012401.7.0.456174597459.issue42238@roundup.psfhosted.org> Change by Julien Palard : ---------- pull_requests: +30354 pull_request: https://github.com/python/cpython/pull/32292 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 15:01:42 2022 From: report at bugs.python.org (Julien Palard) Date: Sun, 03 Apr 2022 19:01:42 +0000 Subject: [issue42238] Deprecate suspicious.py? In-Reply-To: <1604274563.95.0.828690163802.issue42238@roundup.psfhosted.org> Message-ID: <1649012502.57.0.315882678131.issue42238@roundup.psfhosted.org> Julien Palard added the comment: One true positive and one false positive this week, see: - 7f9c084fdec7ddcfe8855aa79f98545591ae2261 - ec8906fb5930b1f078e2a2170cdf445e6c6faf57 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 15:27:48 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 19:27:48 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1649014068.14.0.641572157062.issue47205@roundup.psfhosted.org> miss-islington added the comment: New changeset 470dfe20cb6e741c42c52619e122fc218e27aebd by Miss Islington (bot) in branch '3.10': bpo-47205: Skip error check of sched_get/setaffinity on FreeBSD (GH-32285) https://github.com/python/cpython/commit/470dfe20cb6e741c42c52619e122fc218e27aebd ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 15:33:37 2022 From: report at bugs.python.org (miss-islington) Date: Sun, 03 Apr 2022 19:33:37 +0000 Subject: [issue46126] Unittest output drives developers to avoid docstrings In-Reply-To: <1639868904.15.0.52665025329.issue46126@roundup.psfhosted.org> Message-ID: <1649014417.68.0.671822601127.issue46126@roundup.psfhosted.org> miss-islington added the comment: New changeset 84acb5cad1b871bb8729cbf1d036b84cbe1636f0 by Jason R. Coombs in branch 'main': bpo-46126: Restore 'descriptions' when running tests internally. (GH-32128) https://github.com/python/cpython/commit/84acb5cad1b871bb8729cbf1d036b84cbe1636f0 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 16:00:29 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Sun, 03 Apr 2022 20:00:29 +0000 Subject: [issue47133] enhance unittest to show test name and docstring on one line In-Reply-To: <1648328192.86.0.657883961617.issue47133@roundup.psfhosted.org> Message-ID: <1649016029.63.0.177350153332.issue47133@roundup.psfhosted.org> Gregory P. Smith added the comment: A more fundamental issue behind this: unittest's plain text verbose output is not intended to be parsable and consumable by machines. It is 22 years old and was intended for use in 80 column wide terminals as a progress report while watching it run as much it is a final result. Consider that the legacy use case or format if you wish. Allowing an option for output to one line per test with description could be more likely to require horizontal scrolling or reading past a line wrap in CI setups where text is scrolling regions embedded in scrolling regions. Yuck. BUT not necessarily bad. Just different. The ideas expressed in this thread of making a more clear text format with the important PASS/FAIL/ERROR/SKIP status up front and a very clear pastable test module.class.test_name seem wise. I expect most Python projects with nicer test output formatting desires have simply adopted pytest and never looked back. --- Other python unittest derivative concepts to get clear output of results: We add a reliably machine parsable XML report of test outcomes in absl-py https://github.com/abseil/abseil-py/tree/main/absl/testing. It's IMNSHO a rather annoying implementation - we wish unittest made plugging in additional output formats easier. We use that generated XML format for results from unittest systems in all of our languages at work, it is picked up and parsed by our internal CI system and used to display nicely formatted results when available. I assume pytest also provides machine parsable reporting capabilities but I haven't looked. ---------- nosy: +gregory.p.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 16:08:39 2022 From: report at bugs.python.org (Julien Palard) Date: Sun, 03 Apr 2022 20:08:39 +0000 Subject: [issue42238] Deprecate suspicious.py? In-Reply-To: <1604274563.95.0.828690163802.issue42238@roundup.psfhosted.org> Message-ID: <1649016519.66.0.0751834335872.issue42238@roundup.psfhosted.org> Julien Palard added the comment: New changeset bdc497496548e30fa208a8d98c30bf6d1833ac4c by Julien Palard in branch 'main': bpo-42238: [doc]: make suspicious: false positive. (GH-32292) https://github.com/python/cpython/commit/bdc497496548e30fa208a8d98c30bf6d1833ac4c ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 16:59:23 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 20:59:23 +0000 Subject: [issue47176] Interrupt handling for wasm32-emscripten builds without pthreads In-Reply-To: <1648677322.27.0.607778743764.issue47176@roundup.psfhosted.org> Message-ID: <1649019563.98.0.401932481356.issue47176@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 087d0fa5b97796560c0d8ceab4f0360fd54baf4f by Hood Chatham in branch 'main': bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (GH-32209) https://github.com/python/cpython/commit/087d0fa5b97796560c0d8ceab4f0360fd54baf4f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 17:00:45 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 21:00:45 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649019645.06.0.182057837968.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- dependencies: +Function pointer cast in test_imp, ctypes mishandles `void` return type _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 17:01:24 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 21:01:24 +0000 Subject: [issue47196] Function pointer cast in test_imp In-Reply-To: <1648857711.17.0.141077263636.issue47196@roundup.psfhosted.org> Message-ID: <1649019684.66.0.161139892833.issue47196@roundup.psfhosted.org> Change by Christian Heimes : ---------- components: +Tests resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 17:02:00 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 21:02:00 +0000 Subject: [issue47197] ctypes mishandles `void` return type In-Reply-To: <1648862049.34.0.311220561963.issue47197@roundup.psfhosted.org> Message-ID: <1649019720.14.0.471649165948.issue47197@roundup.psfhosted.org> Change by Christian Heimes : ---------- components: +Tests type: -> behavior versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 17:04:04 2022 From: report at bugs.python.org (Christian Heimes) Date: Sun, 03 Apr 2022 21:04:04 +0000 Subject: [issue47176] Interrupt handling for wasm32-emscripten builds without pthreads In-Reply-To: <1648677322.27.0.607778743764.issue47176@roundup.psfhosted.org> Message-ID: <1649019844.32.0.719188965455.issue47176@roundup.psfhosted.org> Christian Heimes added the comment: Thanks for your patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 17:43:38 2022 From: report at bugs.python.org (Skip Montanaro) Date: Sun, 03 Apr 2022 21:43:38 +0000 Subject: [issue47190] Integrating tkinter and asyncio event loops In-Reply-To: <1648833483.36.0.0222315119123.issue47190@roundup.psfhosted.org> Message-ID: <1649022218.83.0.85554137822.issue47190@roundup.psfhosted.org> Change by Skip Montanaro : ---------- keywords: +patch pull_requests: +30355 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32293 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 20:27:44 2022 From: report at bugs.python.org (Hood Chatham) Date: Mon, 04 Apr 2022 00:27:44 +0000 Subject: [issue47208] Support libffi implementations that cannot support invocations with 1024 arguments Message-ID: <1649032064.63.0.517222199646.issue47208@roundup.psfhosted.org> New submission from Hood Chatham : ctypes defines `CTYPES_MAX_ARGCOUNT` to be 1024: https://github.com/python/cpython/blob/6db2db91b96aaa1270c200ec931a2250fe2799c7/Modules/_ctypes/ctypes.h#L21 If a function call is attempted with more than 1024 arguments, it will fail. The libffi emscripten port github.com/hoodmane/libffi-emscripten can only support function calls with at most 122 arguments due to limitations in Emscripten / Wasm: https://github.com/emscripten-core/emscripten/pull/16653 I propose to allow the libffi port to define FFI_MAX_CLOSURE_ARGS and if this is defined then use this number instead for `CTYPES_MAX_ARGCOUNT`. https://github.com/libffi/libffi/issues/703 The test `test_callback_too_many_args` should also be updated to respect the value of `CTYPES_MAX_ARGCOUNT` rather than hardcoding 1024 into the test. ---------- components: ctypes messages: 416646 nosy: hoodchatham priority: normal severity: normal status: open title: Support libffi implementations that cannot support invocations with 1024 arguments _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 20:28:20 2022 From: report at bugs.python.org (Hood Chatham) Date: Mon, 04 Apr 2022 00:28:20 +0000 Subject: [issue47208] Support libffi implementations that cannot support invocations with 1024 arguments In-Reply-To: <1649032064.63.0.517222199646.issue47208@roundup.psfhosted.org> Message-ID: <1649032100.52.0.384622508217.issue47208@roundup.psfhosted.org> Change by Hood Chatham : ---------- nosy: +amaury.forgeotdarc, belopolsky, christian.heimes, meador.inge _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 20:29:33 2022 From: report at bugs.python.org (Kubilay Kocak) Date: Mon, 04 Apr 2022 00:29:33 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1649032173.69.0.496224670974.issue47205@roundup.psfhosted.org> Kubilay Kocak added the comment: Investigating ---------- stage: patch review -> type: -> behavior _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 21:30:42 2022 From: report at bugs.python.org (Matt Wozniski) Date: Mon, 04 Apr 2022 01:30:42 +0000 Subject: [issue46614] Add option to output UTC datetimes as "Z" in `.isoformat()` In-Reply-To: <1643823106.57.0.535855742317.issue46614@roundup.psfhosted.org> Message-ID: <1649035842.8.0.582542762741.issue46614@roundup.psfhosted.org> Matt Wozniski added the comment: > My main hesitation with this name is that I suspect users may think that `use_utc_designator` means that they *unconditionally* want to use `Z` ? without reading the documentation (which we can assume 99% of users won't do) I was thinking along similar lines when I used `use_utc_designator` in the PR, but I drew a different conclusion. I was thinking that the name `use_utc_designator` is sufficiently abstruse that no one would even be able to guess that it's referring to "Z" without actually reading the documentation for the parameter. In particular, I worry that `zulu=True` or `allow_Z=True` might lead people to make the mistake of thinking that they'll always get "Z" instead of "+00:00". > A name like `utc_as_z` is definitely less... elegant, but conveys the concept a bit more clearly. This would definitely be more memorable and more approachable. If we stick with making it conditional on `tzname() == "UTC"`, I definitely think we want to have "utc" in the name of the parameter, and `utc_as_z` satisfies that. `utc_as_z` seems reasonable to me. Let me know if you'd like me to update the PR. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 22:47:05 2022 From: report at bugs.python.org (Inada Naoki) Date: Mon, 04 Apr 2022 02:47:05 +0000 Subject: [issue47000] Make encoding="locale" uses locale encoding even in UTF-8 mode is enabled. In-Reply-To: <1647151792.05.0.892379342783.issue47000@roundup.psfhosted.org> Message-ID: <1649040425.54.0.23553962971.issue47000@roundup.psfhosted.org> Inada Naoki added the comment: New changeset 4216dce04b7d3f329beaaafc82a77c4ac6cf4d57 by Inada Naoki in branch 'main': bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003) https://github.com/python/cpython/commit/4216dce04b7d3f329beaaafc82a77c4ac6cf4d57 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 23:24:22 2022 From: report at bugs.python.org (himkt) Date: Mon, 04 Apr 2022 03:24:22 +0000 Subject: [issue47209] Documentation for asserting values of `unittest.mock.Mock.call_args_list` Message-ID: <1649042662.7.0.274264935665.issue47209@roundup.psfhosted.org> New submission from himkt : Currently documentation says we can check call_args_list by providing a list of tuples of arguments. ``` >>> expected = [(), ((3, 4),), ({'key': 'fish', 'next': 'w00t!'},)] >>> mock.call_args_list == expected True ``` (from https://docs.python.org/3.11/library/unittest.mock.html#unittest.mock.Mock.call_args_list) However, I think we have to wrap all arguments with `call`. I'd happy to send a patch if it should be fixed. ### Reproduce: ``` import time from unittest.mock import call from unittest.mock import patch with patch("time.sleep") as mock_obj: time.sleep(1) time.sleep(2) print("mock_obj.call_args_list") print(mock_obj.call_args_list) print("mock_obj.call_args_list == [(1,), (2,)]") print(mock_obj.call_args_list == [(1,), (2,)]) print("mock_obj.call_args_list == [call(1,), call(2,)]") print(mock_obj.call_args_list == [call(1,), call(2,)]) ``` ``` > python demo.py 2022-04-04 12:03:18 mock_obj.call_args_list [call(1), call(2)] mock_obj.call_args_list == [(1,), (2,)] False mock_obj.call_args_list == [call(1,), call(2,)] True ``` ### Links - Documentation in repo: https://github.com/python/cpython/blob/4216dce04b7d3f329beaaafc82a77c4ac6cf4d57/Doc/library/unittest.mock.rst - Documentation in page: https://docs.python.org/3.11/library/unittest.mock.html#unittest.mock.Mock.call_args_list ---------- assignee: docs at python components: Documentation messages: 416650 nosy: docs at python, himkt priority: normal severity: normal status: open title: Documentation for asserting values of `unittest.mock.Mock.call_args_list` type: behavior versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 23:27:26 2022 From: report at bugs.python.org (Ned Deily) Date: Mon, 04 Apr 2022 03:27:26 +0000 Subject: [issue47194] Upgrade to zlib v1.2.12 in CPython binary releases In-Reply-To: <1648841142.75.0.617699188947.issue47194@roundup.psfhosted.org> Message-ID: <1649042846.64.0.894962276551.issue47194@roundup.psfhosted.org> Ned Deily added the comment: New changeset 387f93c156288c170ff0016a75af06e109d48ee1 by Miss Islington (bot) in branch '3.7': bpo-47194: Update zlib to v1.2.12 on Windows to resolve CVE-2018-25032 (GH-32241) (GH-32251) https://github.com/python/cpython/commit/387f93c156288c170ff0016a75af06e109d48ee1 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 23:28:46 2022 From: report at bugs.python.org (qweqwe4844m) Date: Mon, 04 Apr 2022 03:28:46 +0000 Subject: [issue46337] urllib.parse: Allow more flexibility in schemes and URL resolution behavior In-Reply-To: <1641851456.34.0.342855463339.issue46337@roundup.psfhosted.org> Message-ID: <1649042926.91.0.595324477991.issue46337@roundup.psfhosted.org> Change by qweqwe4844m : ---------- assignee: -> docs at python components: +2to3 (2.x to 3.x conversion tool), Argument Clinic, Build, C API, Cross-Build, Demos and Tools, Documentation, Extension Modules, FreeBSD, Interpreter Core, Parser, Regular Expressions, SSL, Tests, Unicode, Windows, XML, ctypes, email, macOS hgrepos: +414 nosy: +barry, docs at python, ezio.melotti, koobs, larry, lys.nikolaou, mrabarnett, ned.deily, pablogsal, paul.moore, r.david.murray, ronaldoussoren, steve.dower, tim.golden, vstinner, zach.ware versions: +Python 3.7 Added file: https://bugs.python.org/file50716/mitre_f188eec1268fd49bdc7375fc5b77ded657c150875fede1a4d797f818d2514e88_120.csv _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 23:40:24 2022 From: report at bugs.python.org (Ned Deily) Date: Mon, 04 Apr 2022 03:40:24 +0000 Subject: [issue46337] urllib.parse: Allow more flexibility in schemes and URL resolution behavior In-Reply-To: <1641851456.34.0.342855463339.issue46337@roundup.psfhosted.org> Message-ID: <1649043624.68.0.406973438754.issue46337@roundup.psfhosted.org> Change by Ned Deily : Removed file: https://bugs.python.org/file50716/mitre_f188eec1268fd49bdc7375fc5b77ded657c150875fede1a4d797f818d2514e88_120.csv _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 23:43:51 2022 From: report at bugs.python.org (himkt) Date: Mon, 04 Apr 2022 03:43:51 +0000 Subject: [issue47209] Documentation for asserting values of `unittest.mock.Mock.call_args_list` In-Reply-To: <1649042662.7.0.274264935665.issue47209@roundup.psfhosted.org> Message-ID: <1649043831.6.0.353554512892.issue47209@roundup.psfhosted.org> himkt added the comment: So sorry, documentation is not wrong. It only need to wrap an argument when it is a singular value. But I'm still wondering if we can unify documentation to wrap `call` (e.g. https://github.com/himkt/cpython/blob/main/Doc/library/unittest.mock-examples.rst#checking-multiple-calls-with-mock does it). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 23:46:29 2022 From: report at bugs.python.org (Ned Deily) Date: Mon, 04 Apr 2022 03:46:29 +0000 Subject: [issue46337] urllib.parse: Allow more flexibility in schemes and URL resolution behavior In-Reply-To: <1641851456.34.0.342855463339.issue46337@roundup.psfhosted.org> Message-ID: <1649043989.68.0.584779602296.issue46337@roundup.psfhosted.org> Change by Ned Deily : ---------- hgrepos: -414 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 3 23:47:32 2022 From: report at bugs.python.org (Ned Deily) Date: Mon, 04 Apr 2022 03:47:32 +0000 Subject: [issue46337] urllib.parse: Allow more flexibility in schemes and URL resolution behavior In-Reply-To: <1641851456.34.0.342855463339.issue46337@roundup.psfhosted.org> Message-ID: <1649044052.44.0.586003667456.issue46337@roundup.psfhosted.org> Change by Ned Deily : ---------- assignee: docs at python -> components: -2to3 (2.x to 3.x conversion tool), Argument Clinic, Build, C API, Cross-Build, Demos and Tools, Documentation, Extension Modules, FreeBSD, Interpreter Core, Parser, Regular Expressions, SSL, Tests, Unicode, Windows, XML, ctypes, email, macOS nosy: -barry, docs at python, ezio.melotti, koobs, larry, lys.nikolaou, mrabarnett, ned.deily, pablogsal, paul.moore, r.david.murray, ronaldoussoren, steve.dower, tim.golden, vstinner, zach.ware versions: -Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 01:58:03 2022 From: report at bugs.python.org (himkt) Date: Mon, 04 Apr 2022 05:58:03 +0000 Subject: [issue47209] Documentation for asserting values of `unittest.mock.Mock.call_args_list` In-Reply-To: <1649042662.7.0.274264935665.issue47209@roundup.psfhosted.org> Message-ID: <1649051883.59.0.539492131834.issue47209@roundup.psfhosted.org> himkt added the comment: > It only need to wrap an argument when it is a singular value. It is also wrong..., sorry. To compare a single value, I should have passed a tuple of tuples. ``` > python demo.py 2022-04-04 14:56:41 mock_obj.call_args_list [call(1), call(2)] mock_obj.call_args_list == [(1,), (2,)] False mock_obj.call_args_list == [call(1,), call(2,)] True mock_obj.call_args_list == [((1,),), ((2,),)] True ``` ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 02:49:11 2022 From: report at bugs.python.org (ripspin) Date: Mon, 04 Apr 2022 06:49:11 +0000 Subject: [issue47210] './configure --help' causes infinite loop Message-ID: <1649054951.07.0.0464700786493.issue47210@roundup.psfhosted.org> New submission from ripspin : wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz unpacked & cd to /GS/FLP/pool/common-apps/Python-3.9.6/ ./configure --help (appears to hang but ps gives truth) see attached file of ps output ---------- components: Build files: ttt1 messages: 416654 nosy: ripspin5 priority: normal severity: normal status: open title: './configure --help' causes infinite loop type: compile error versions: Python 3.9 Added file: https://bugs.python.org/file50717/ttt1 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 02:59:50 2022 From: report at bugs.python.org (Christian Heimes) Date: Mon, 04 Apr 2022 06:59:50 +0000 Subject: [issue47208] Support libffi implementations that cannot support invocations with 1024 arguments In-Reply-To: <1649032064.63.0.517222199646.issue47208@roundup.psfhosted.org> Message-ID: <1649055590.03.0.234751377497.issue47208@roundup.psfhosted.org> Change by Christian Heimes : ---------- keywords: +patch pull_requests: +30356 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32297 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 03:17:01 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 04 Apr 2022 07:17:01 +0000 Subject: [issue47190] Integrating tkinter and asyncio event loops In-Reply-To: <1648833483.36.0.0222315119123.issue47190@roundup.psfhosted.org> Message-ID: <1649056621.23.0.268549944286.issue47190@roundup.psfhosted.org> Serhiy Storchaka added the comment: It is a duplicate of issue27546. ---------- nosy: +serhiy.storchaka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 03:33:44 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 04 Apr 2022 07:33:44 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649057624.67.0.487824973736.issue47152@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- pull_requests: +30357 pull_request: https://github.com/python/cpython/pull/32298 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 03:43:32 2022 From: report at bugs.python.org (ripspin) Date: Mon, 04 Apr 2022 07:43:32 +0000 Subject: [issue47210] './configure --help' causes infinite loop In-Reply-To: <1649054951.07.0.0464700786493.issue47210@roundup.psfhosted.org> Message-ID: <1649058212.88.0.910168725892.issue47210@roundup.psfhosted.org> ripspin added the comment: GNU bash, version 4.3.42(1)-release (x86_64-unknown-linux-gnu) uname -a Linux xenial64-sda1 4.9.58 #1 SMP PREEMPT Mon Nov 13 15:54:01 GMT 2017 x86_64 x86_64 x86_64 GNU/Linux ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 03:53:35 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 04 Apr 2022 07:53:35 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649058815.07.0.722711708681.issue47152@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset 1578f06c1c69fbbb942b90bfbacd512784b599fa by Serhiy Storchaka in branch 'main': bpo-47152: Move sources of the _sre module into a subdirectory (GH-32290) https://github.com/python/cpython/commit/1578f06c1c69fbbb942b90bfbacd512784b599fa ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 04:29:49 2022 From: report at bugs.python.org (Oleg Iarygin) Date: Mon, 04 Apr 2022 08:29:49 +0000 Subject: [issue45763] Detect compression libraries in configure In-Reply-To: <1636449229.48.0.616836518237.issue45763@roundup.psfhosted.org> Message-ID: <1649060989.38.0.304387568638.issue45763@roundup.psfhosted.org> Change by Oleg Iarygin : ---------- nosy: +arhadthedev nosy_count: 1.0 -> 2.0 pull_requests: +30360 pull_request: https://github.com/python/cpython/pull/32299 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 04:29:49 2022 From: report at bugs.python.org (Oleg Iarygin) Date: Mon, 04 Apr 2022 08:29:49 +0000 Subject: [issue45747] Detect dbm and gdbm dependencies in configure.ac In-Reply-To: <1636367248.6.0.316133977839.issue45747@roundup.psfhosted.org> Message-ID: <1649060989.32.0.805735602162.issue45747@roundup.psfhosted.org> Change by Oleg Iarygin : ---------- nosy: +arhadthedev nosy_count: 4.0 -> 5.0 pull_requests: +30359 pull_request: https://github.com/python/cpython/pull/32299 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 04:29:49 2022 From: report at bugs.python.org (Oleg Iarygin) Date: Mon, 04 Apr 2022 08:29:49 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1649060989.22.0.0917090133492.issue45847@roundup.psfhosted.org> Change by Oleg Iarygin : ---------- nosy: +arhadthedev nosy_count: 5.0 -> 6.0 pull_requests: +30358 pull_request: https://github.com/python/cpython/pull/32299 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 04:43:59 2022 From: report at bugs.python.org (Oleg Iarygin) Date: Mon, 04 Apr 2022 08:43:59 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1649061839.45.0.839143415848.issue45847@roundup.psfhosted.org> Change by Oleg Iarygin : ---------- pull_requests: -30358 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 04:48:58 2022 From: report at bugs.python.org (Oleg Iarygin) Date: Mon, 04 Apr 2022 08:48:58 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1649062138.36.0.124604982484.issue45847@roundup.psfhosted.org> Change by Oleg Iarygin : ---------- pull_requests: +30361 pull_request: https://github.com/python/cpython/pull/32299 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 04:56:13 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 04 Apr 2022 08:56:13 +0000 Subject: [issue47211] Remove re.template() and re.TEMPLATE Message-ID: <1649062573.34.0.575167973104.issue47211@roundup.psfhosted.org> New submission from Serhiy Storchaka : They were added in 436c3d58a2570f3b599e59b4071f944f774ec441 (between 1.6a2 and 2.0), but the purpose is not known. See also https://mail.python.org/archives/list/python-dev at python.org/message/DVSQGM5LO4TK63C63H6KQ6XBTBQGFLEN/. The feature was not fully implemented, and it was disabled short time later in 29c4ba9ada44d62988c62c85c8046985f10a1c85. Currently the only effect of this flag is that repetition operators (+, *, ?, {}) do not work. A comment was added in 3562f1176403653ebfbef6275d449ad42d1b843a: SRE_FLAG_TEMPLATE = 1 # template mode (disable backtracking) It's all. I guess it could have some relation to possessive repetition operators, except that it is a global flag. I think it should be removed without deprecation because it never really worked and never was documented. ---------- components: Library (Lib), Regular Expressions messages: 416658 nosy: ezio.melotti, mrabarnett, serhiy.storchaka priority: normal severity: normal status: open title: Remove re.template() and re.TEMPLATE type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 05:00:57 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 04 Apr 2022 09:00:57 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649062857.35.0.191486634448.issue47152@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset ff2cf1d7d5fb25224f3ff2e0c678d36f78e1f3cb by Serhiy Storchaka in branch 'main': bpo-47152: Remove unused import in re (GH-32298) https://github.com/python/cpython/commit/ff2cf1d7d5fb25224f3ff2e0c678d36f78e1f3cb ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 05:01:32 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 04 Apr 2022 09:01:32 +0000 Subject: [issue47211] Remove re.template() and re.TEMPLATE In-Reply-To: <1649062573.34.0.575167973104.issue47211@roundup.psfhosted.org> Message-ID: <1649062892.55.0.792050060762.issue47211@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- keywords: +patch pull_requests: +30362 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32300 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 05:45:20 2022 From: report at bugs.python.org (Steve Dower) Date: Mon, 04 Apr 2022 09:45:20 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1649065520.95.0.340334700591.issue47203@roundup.psfhosted.org> Steve Dower added the comment: It could also be something on your PATH interfering, as that particular ImportError could be pretty deep in the load chain. If none of the built-in options narrow it down enough, try https://pypi.org/project/dlltracer/ as well. Its output takes a bit of interpretation, but it'll definitely get us closer. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 05:57:18 2022 From: report at bugs.python.org (Mark Shannon) Date: Mon, 04 Apr 2022 09:57:18 +0000 Subject: [issue44800] Code readability: rename InterpreterFrame to `_Py_framedata` In-Reply-To: <1627782511.03.0.274598412143.issue44800@roundup.psfhosted.org> Message-ID: <1649066238.54.0.347791599447.issue44800@roundup.psfhosted.org> Change by Mark Shannon : ---------- pull_requests: +30363 pull_request: https://github.com/python/cpython/pull/32301 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 06:54:23 2022 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Mon, 04 Apr 2022 10:54:23 +0000 Subject: [issue15795] Zipfile.extractall does not preserve file permissions In-Reply-To: <1346106964.12.0.723201722432.issue15795@psf.upfronthosting.co.za> Message-ID: <1649069663.02.0.633205979523.issue15795@roundup.psfhosted.org> ?ric Araujo added the comment: The new PR uses new constants*, so could not be backported as is (see my previous message). (*side question: should the constants use an enum?) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 06:54:30 2022 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Mon, 04 Apr 2022 10:54:30 +0000 Subject: [issue15795] Zipfile.extractall does not preserve file permissions In-Reply-To: <1346106964.12.0.723201722432.issue15795@psf.upfronthosting.co.za> Message-ID: <1649069670.6.0.473548853455.issue15795@roundup.psfhosted.org> Change by ?ric Araujo : ---------- versions: +Python 3.11 -Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 07:01:55 2022 From: report at bugs.python.org (Matthieu Dartiailh) Date: Mon, 04 Apr 2022 11:01:55 +0000 Subject: [issue47212] Minor issues in reported Syntax errors Message-ID: <1649070115.81.0.636423654996.issue47212@roundup.psfhosted.org> New submission from Matthieu Dartiailh : Hi, While working on Pegen I noticed that: - the invalid_arguments rule would non point to the full generator expression in its second and fifth alternatives - when reporting an indentation error after a bare except, the error is actually a SyntaxError I will open a PR shortly to address both since the changes are quite minimal IMO. ---------- components: Parser messages: 416662 nosy: lys.nikolaou, mdartiailh, pablogsal priority: normal severity: normal status: open title: Minor issues in reported Syntax errors type: behavior versions: Python 3.10, Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 07:03:09 2022 From: report at bugs.python.org (apostofes) Date: Mon, 04 Apr 2022 11:03:09 +0000 Subject: [issue47213] arrow at wrong place Message-ID: <1649070189.66.0.592460685297.issue47213@roundup.psfhosted.org> New submission from apostofes : arrow should be after `a` ---------- components: Library (Lib) files: Screenshot (1044).png messages: 416663 nosy: apostofes priority: normal severity: normal status: open title: arrow at wrong place type: enhancement versions: Python 3.7 Added file: https://bugs.python.org/file50718/Screenshot (1044).png _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 07:03:48 2022 From: report at bugs.python.org (Matthieu Dartiailh) Date: Mon, 04 Apr 2022 11:03:48 +0000 Subject: [issue47212] Minor issues in reported Syntax errors In-Reply-To: <1649070115.81.0.636423654996.issue47212@roundup.psfhosted.org> Message-ID: <1649070228.62.0.695016724487.issue47212@roundup.psfhosted.org> Change by Matthieu Dartiailh : ---------- keywords: +patch pull_requests: +30364 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32302 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 07:25:32 2022 From: report at bugs.python.org (Alex Waygood) Date: Mon, 04 Apr 2022 11:25:32 +0000 Subject: [issue47213] Incorrect location of caret in SyntaxError In-Reply-To: <1649070189.66.0.592460685297.issue47213@roundup.psfhosted.org> Message-ID: <1649071532.17.0.440470709189.issue47213@roundup.psfhosted.org> Change by Alex Waygood : ---------- nosy: +pablogsal title: arrow at wrong place -> Incorrect location of caret in SyntaxError type: enhancement -> behavior _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 07:51:09 2022 From: report at bugs.python.org (Ravi Jain) Date: Mon, 04 Apr 2022 11:51:09 +0000 Subject: [issue47214] builtin_function_or_method is also either a function or a method Message-ID: <1649073069.64.0.34213734425.issue47214@roundup.psfhosted.org> New submission from Ravi Jain : the. ``` import inspect inspect.isfunction ``` does not consider a ``` builtin_function_or_method ``` as a function. for example, ``` inspect.isfunction(abs) ``` gives, ``` False ``` in the background even the builtin `abs` is a function, so shouldn't it return True? the way this check is implemented is by matching the type of a builtin_function_or_method with, ``` type(len) ``` and since, `type(len)` is `builtin_function_or_method`, so, the `inspect.isfunction` check gives False. But in my opinion, it should return True, even for builtin functions or methods. ---------- components: Build messages: 416664 nosy: apostofes priority: normal severity: normal status: open title: builtin_function_or_method is also either a function or a method versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 07:59:07 2022 From: report at bugs.python.org (Mark Shannon) Date: Mon, 04 Apr 2022 11:59:07 +0000 Subject: [issue47215] Add "unstable" frame stack api Message-ID: <1649073547.57.0.863491457391.issue47215@roundup.psfhosted.org> New submission from Mark Shannon : We need to provide an API to create, swap and free frame stacks for greenlets. Since this is primarily for greenlets (and any other stackful coroutines libraries that want to use it) it will be "unstable". In this case, by "unstable" I mean: 1. Starts with an underscore 2. Gets PyAPI_FUNC annotations, so we don't strip the symbols from the executable 3. Undocumented, except for comments that say it is unstable. The API will be: ``` typedef struct _frame_stack { _PyStackChunk *current_chunk; PyObject **top; PyObject **limit; int chunk_size; } _PyFrameStack; PyAPI_FUNC(void) _PyFrameStack_Init(_PyFrameStack *fs, int chunk_size); PyAPI_FUNC(void) _PyFrameStack_Swap(_PyFrameStack *fs); PyAPI_FUNC(void) _PyFrameStack_Free(_PyFrameStack *fs); ``` ---------- assignee: Mark.Shannon components: C API messages: 416665 nosy: Mark.Shannon, brandtbucher priority: normal severity: normal stage: needs patch status: open title: Add "unstable" frame stack api type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 08:02:49 2022 From: report at bugs.python.org (Pablo Galindo Salgado) Date: Mon, 04 Apr 2022 12:02:49 +0000 Subject: [issue47213] Incorrect location of caret in SyntaxError In-Reply-To: <1649070189.66.0.592460685297.issue47213@roundup.psfhosted.org> Message-ID: <1649073769.48.0.779218755328.issue47213@roundup.psfhosted.org> Pablo Galindo Salgado added the comment: No, the location is correct, the string for 'a' is actually closed after the a. This makes a list with the following elements: 'a ,' b', ' c', ' As "b" is a valid prefix for string (bytes) it doesn't fail there, but 'c' isn't so you get the syntax error. ---------- resolution: -> not a bug stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 08:09:47 2022 From: report at bugs.python.org (Mark Shannon) Date: Mon, 04 Apr 2022 12:09:47 +0000 Subject: [issue47215] Add "unstable" frame stack api In-Reply-To: <1649073547.57.0.863491457391.issue47215@roundup.psfhosted.org> Message-ID: <1649074187.08.0.288497100621.issue47215@roundup.psfhosted.org> Change by Mark Shannon : ---------- keywords: +patch pull_requests: +30366 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32303 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 08:26:44 2022 From: report at bugs.python.org (Ma Lin) Date: Mon, 04 Apr 2022 12:26:44 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649075204.5.0.749587719667.issue47152@roundup.psfhosted.org> Ma Lin added the comment: Match.regs is an undocumented attribute, it seems it has existed since 1991. Can it be removed? https://github.com/python/cpython/blob/ff2cf1d7d5fb25224f3ff2e0c678d36f78e1f3cb/Modules/_sre/sre.c#L2871 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 09:40:35 2022 From: report at bugs.python.org (Barney Gale) Date: Mon, 04 Apr 2022 13:40:35 +0000 Subject: [issue39090] Document various options for getting the absolute path from pathlib.Path objects In-Reply-To: <1576693250.66.0.453775762211.issue39090@roundup.psfhosted.org> Message-ID: <1649079635.41.0.513424194205.issue39090@roundup.psfhosted.org> Barney Gale added the comment: The docs for PurePath.is_absolute() say: > A path is considered absolute if it has both a root and (if the flavour allows) a drive This does not preclude it from having ".." segments. PurePath.absolute() is documented as of bpo-29688 / 3.11, see: https://docs.python.org/3.11/library/pathlib.html#pathlib.Path.absolute The documentation for the absolute() method is deliberately placed alongside resolve() for ease of comparison. Both methods make a path absolute, but resolve() also follows symlinks, and consequently is able to safely elide ".." segments. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 09:45:21 2022 From: report at bugs.python.org (Skip Montanaro) Date: Mon, 04 Apr 2022 13:45:21 +0000 Subject: [issue47190] Integrating tkinter and asyncio event loops In-Reply-To: <1648833483.36.0.0222315119123.issue47190@roundup.psfhosted.org> Message-ID: <1649079921.11.0.976624759124.issue47190@roundup.psfhosted.org> Skip Montanaro added the comment: That's fine. My brief search didn't turn up https://bugs.python.org/issue27546 I'm happy to close this. ---------- stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 09:45:41 2022 From: report at bugs.python.org (Skip Montanaro) Date: Mon, 04 Apr 2022 13:45:41 +0000 Subject: [issue27546] Integrate tkinter and asyncio (and async) In-Reply-To: <1468815010.57.0.709565417017.issue27546@psf.upfronthosting.co.za> Message-ID: <1649079941.84.0.0881255197711.issue27546@roundup.psfhosted.org> Skip Montanaro added the comment: See also (perhaps) https://bugs.python.org/issue47190 ---------- nosy: +skip.montanaro _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 09:46:00 2022 From: report at bugs.python.org (Skip Montanaro) Date: Mon, 04 Apr 2022 13:46:00 +0000 Subject: [issue27546] Integrate tkinter and asyncio (and async) In-Reply-To: <1468815010.57.0.709565417017.issue27546@psf.upfronthosting.co.za> Message-ID: <1649079960.25.0.970278777504.issue27546@roundup.psfhosted.org> Change by Skip Montanaro : ---------- nosy: -skip.montanaro _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 10:09:53 2022 From: report at bugs.python.org (Mark Shannon) Date: Mon, 04 Apr 2022 14:09:53 +0000 Subject: [issue44800] Code readability: rename InterpreterFrame to `_Py_framedata` In-Reply-To: <1627782511.03.0.274598412143.issue44800@roundup.psfhosted.org> Message-ID: <1649081393.09.0.196589032325.issue44800@roundup.psfhosted.org> Mark Shannon added the comment: New changeset 8a349eb30b54bab9a7146fc10e3379c3cacaa19e by Mark Shannon in branch 'main': Revert "bpo-44800: Document internal frame naming conventions (GH-32281)" (#32301) https://github.com/python/cpython/commit/8a349eb30b54bab9a7146fc10e3379c3cacaa19e ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 10:10:02 2022 From: report at bugs.python.org (Mark Shannon) Date: Mon, 04 Apr 2022 14:10:02 +0000 Subject: [issue45317] Document the removal the usage of the C stack in Python to Python calls In-Reply-To: <1632915633.23.0.578655230735.issue45317@roundup.psfhosted.org> Message-ID: <1649081402.23.0.718640729625.issue45317@roundup.psfhosted.org> Change by Mark Shannon : ---------- keywords: +patch pull_requests: +30367 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32304 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 10:40:22 2022 From: report at bugs.python.org (Sam Ezeh) Date: Mon, 04 Apr 2022 14:40:22 +0000 Subject: [issue15795] Zipfile.extractall does not preserve file permissions In-Reply-To: <1346106964.12.0.723201722432.issue15795@psf.upfronthosting.co.za> Message-ID: <1649083222.94.0.623284182952.issue15795@roundup.psfhosted.org> Sam Ezeh added the comment: I don't know what the best course of action would be but if preserving permissions needs to be back-ported, could the default permission preservation flag in 3.11+ be the one to preserve safe permissions and then make it so that the previous versions (<3.11, without the constants) always take this course of action? Maintaining the different options for preserving permissions while still allowing for this functionality to be back-ported. I don't have a strong opinion on backporting permission preservation but to me, it seems like it would be a change in behaviour instead of a bug fix. The current default in the PR is to not preserve any permissions but if necessary, I'll change it to whatever is agreed upon. I'll move the constants into an enum, but right now I'm not sure how I'd name the class. As an aside, while writing this comment I realised that the reason tests aren't passing on my end might very well be due to the fact I do CPython work on an NTFS partition instead of on my main EXT4 partition. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 10:44:24 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Mon, 04 Apr 2022 14:44:24 +0000 Subject: [issue47214] builtin_function_or_method is also either a function or a method In-Reply-To: <1649073069.64.0.34213734425.issue47214@roundup.psfhosted.org> Message-ID: <1649083464.02.0.50582302154.issue47214@roundup.psfhosted.org> Dennis Sweeney added the comment: https://docs.python.org/3/library/inspect.html#inspect.isfunction says this: """ inspect.isfunction(object) Return True if the object is a Python function, which includes functions created by a lambda expression. """ Emphasis on the "Python function", as in, something written in Python using a `def` statement or a `lambda` expression. If isfunction returns True, you can presumably access function-specific implementation details like the functions's f.__code__ attribute. If you need to check for "anything that works as a function", you can use `callable()`: >>> callable(lambda: 2) True >>> callable(abs) True >>> def f(x): return x >>> callable(f) True I'm not an expert on the inspect module, but I'm guessing it's not worth breaking backwards-compatibility to change this behavior. Would extra emphasis in the documentation have been helpful for you, or were you mostly attempting to rely on the function's name? ---------- nosy: +Dennis Sweeney _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 10:55:21 2022 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Mon, 04 Apr 2022 14:55:21 +0000 Subject: [issue15795] Zipfile.extractall does not preserve file permissions In-Reply-To: <1346106964.12.0.723201722432.issue15795@psf.upfronthosting.co.za> Message-ID: <1649084121.79.0.822036599716.issue15795@roundup.psfhosted.org> ?ric Araujo added the comment: On second thought, maybe no fix should be backported. Changing behaviour silently might break things, changing with a new option puts the change in a grey fix/enhancement area, so maybe better to let current versions as they are, with the bug/limitation noted in the documentation, and give control in 3.11 only. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 11:32:45 2022 From: report at bugs.python.org (Jim Wygralak) Date: Mon, 04 Apr 2022 15:32:45 +0000 Subject: [issue46180] Button clicked failed when mouse hover tooltip and tooltip destroyed In-Reply-To: <1640515148.68.0.766649384181.issue46180@roundup.psfhosted.org> Message-ID: <1649086365.59.0.850907272066.issue46180@roundup.psfhosted.org> Jim Wygralak added the comment: DATA: Just chiming in to report that I'm seeing this issue with the following freshly installed: Python 3.10.4 tkinter 8.6.12 PySimpleGUI 4.57.0 OS is Windows 10 As others have report it is related to the cursor entering the tool tip box before clicking the button. OBSERVATIONS: I've noticed that the tool tip always seems to appear up and to the right of the cursor. If I approach the button by moving the cursor down & left, the tool tip appears when the cursor enters the button, then as I continue to move the cursor to the center of the button I'm moving AWAY FROM the tool tip, and the issue doesn't appear. However, if I approach the button by moving the cursor up and to the right, the tool tip appears as the cursor enters the button, and it overlaps the button. As I continue to move the cursor to the center of the button, it enters the tool tip box and triggers this fault. The only 100% effective workaround appears to be not using tooltips. That is a loss of function, and not an acceptable long term solution. ---------- nosy: +jim.wygralak _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 12:30:12 2022 From: report at bugs.python.org (=?utf-8?b?R8Opcnk=?=) Date: Mon, 04 Apr 2022 16:30:12 +0000 Subject: [issue47206] pickle docs are wrong about nested classes In-Reply-To: <1648998659.8.0.245772274253.issue47206@roundup.psfhosted.org> Message-ID: <1649089812.06.0.61058560028.issue47206@roundup.psfhosted.org> Change by G?ry : ---------- nosy: +maggyero _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:04:09 2022 From: report at bugs.python.org (Matthew Barnett) Date: Mon, 04 Apr 2022 17:04:09 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649091849.2.0.935205881186.issue47152@roundup.psfhosted.org> Matthew Barnett added the comment: For reference, I also implemented .regs in the regex module for compatibility, but I've never used it myself. I had to do some investigating to find out what it did! It returns a tuple of the spans of the groups. Perhaps I might have used it if it didn't have such a cryptic name and/or was documented. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:13:50 2022 From: report at bugs.python.org (Christian Heimes) Date: Mon, 04 Apr 2022 17:13:50 +0000 Subject: [issue47208] Support libffi implementations that cannot support invocations with 1024 arguments In-Reply-To: <1649032064.63.0.517222199646.issue47208@roundup.psfhosted.org> Message-ID: <1649092430.14.0.560140223484.issue47208@roundup.psfhosted.org> Christian Heimes added the comment: New changeset d1b1c885d8f276a0b1ff2e327270916396a8b842 by Christian Heimes in branch 'main': bpo-47208: Allow vendors to override CTYPES_MAX_ARGCOUNT (GH-32297) https://github.com/python/cpython/commit/d1b1c885d8f276a0b1ff2e327270916396a8b842 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:15:19 2022 From: report at bugs.python.org (Christian Heimes) Date: Mon, 04 Apr 2022 17:15:19 +0000 Subject: [issue47208] Support libffi implementations that cannot support invocations with 1024 arguments In-Reply-To: <1649032064.63.0.517222199646.issue47208@roundup.psfhosted.org> Message-ID: <1649092519.1.0.487113481925.issue47208@roundup.psfhosted.org> Christian Heimes added the comment: GH-32297 adds #ifndef CTYPES_MAX_ARGCOUNT and exposes the constant in the _ctypes extension module, so the test case can use the constant. It allows you to override CTYPES_MAX_ARGCOUNT until libffi upstream agrees on FFI_MAX_CLOSURE_ARGS. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:15:36 2022 From: report at bugs.python.org (Christian Heimes) Date: Mon, 04 Apr 2022 17:15:36 +0000 Subject: [issue47208] Support libffi implementations that cannot support invocations with 1024 arguments In-Reply-To: <1649032064.63.0.517222199646.issue47208@roundup.psfhosted.org> Message-ID: <1649092536.48.0.648686245742.issue47208@roundup.psfhosted.org> Change by Christian Heimes : ---------- components: +Tests type: -> behavior versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:17:04 2022 From: report at bugs.python.org (Irit Katriel) Date: Mon, 04 Apr 2022 17:17:04 +0000 Subject: [issue46484] Add test for Calendar().iterweekdays() In-Reply-To: <1642933217.39.0.499836465558.issue46484@roundup.psfhosted.org> Message-ID: <1649092624.4.0.861673528236.issue46484@roundup.psfhosted.org> Irit Katriel added the comment: New changeset 48269ea9fdbc5804f80962364f95e69097c417ba by 180909 in branch 'main': bpo-46484:Add test for Calendar.iterweekdays (GH-30825) https://github.com/python/cpython/commit/48269ea9fdbc5804f80962364f95e69097c417ba ---------- nosy: +iritkatriel _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:17:13 2022 From: report at bugs.python.org (miss-islington) Date: Mon, 04 Apr 2022 17:17:13 +0000 Subject: [issue46484] Add test for Calendar().iterweekdays() In-Reply-To: <1642933217.39.0.499836465558.issue46484@roundup.psfhosted.org> Message-ID: <1649092633.1.0.308885786156.issue46484@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +30368 pull_request: https://github.com/python/cpython/pull/32307 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:17:18 2022 From: report at bugs.python.org (miss-islington) Date: Mon, 04 Apr 2022 17:17:18 +0000 Subject: [issue46484] Add test for Calendar().iterweekdays() In-Reply-To: <1642933217.39.0.499836465558.issue46484@roundup.psfhosted.org> Message-ID: <1649092638.76.0.752929687813.issue46484@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30369 pull_request: https://github.com/python/cpython/pull/32308 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:20:40 2022 From: report at bugs.python.org (Ravi Jain) Date: Mon, 04 Apr 2022 17:20:40 +0000 Subject: [issue47214] builtin_function_or_method is also either a function or a method In-Reply-To: <1649073069.64.0.34213734425.issue47214@roundup.psfhosted.org> Message-ID: <1649092840.68.0.173969982848.issue47214@roundup.psfhosted.org> Ravi Jain added the comment: but `callable` returns `True` for classes with `__call__` also, it does not check whether the argument passed to it is a function or not. I want some way to return `True` for both builtin functions and Python functions, but not for classes. And similarly, some way to return `True` for both builtin methods and Python methods. Should the documentation for `inspect.isfunction` include, `this does not include builtin functions.`, and similarly for `inspect.ismethod`? Should I create a PR to add these two sentences to the documentation? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:31:41 2022 From: report at bugs.python.org (Christian Heimes) Date: Mon, 04 Apr 2022 17:31:41 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649093501.24.0.680298339421.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: New changeset c9844cb8aa9615cdc8770d1e43ce6e2ac3efd836 by Christian Heimes in branch 'main': bpo-40280: Add --enable-wasm-dynamic-linking (GH-32253) https://github.com/python/cpython/commit/c9844cb8aa9615cdc8770d1e43ce6e2ac3efd836 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:33:18 2022 From: report at bugs.python.org (Steven D'Aprano) Date: Mon, 04 Apr 2022 17:33:18 +0000 Subject: [issue47214] builtin_function_or_method is also either a function or a method In-Reply-To: <1649073069.64.0.34213734425.issue47214@roundup.psfhosted.org> Message-ID: <1649093598.44.0.49091179356.issue47214@roundup.psfhosted.org> Steven D'Aprano added the comment: Perhaps what you want is inspect.isroutine ? https://docs.python.org/3/library/inspect.html#inspect.isroutine I agree with Dennis that the isfunction test is for **Python** (def or lambda) functions, not builtins. The docstring for the inspect.is* methods make promises about what attributes an object will have: def isbuiltin(object): """Return true if the object is a built-in function or method. Built-in functions and methods provide these attributes: __doc__ documentation string __name__ original name of this function or method __self__ instance to which a method is bound, or None""" def isfunction(object): """Return true if the object is a user-defined function. Function objects provide these attributes: __doc__ documentation string __name__ name with which this function was defined __code__ code object containing compiled function bytecode __defaults__ tuple of any default values for arguments __globals__ global namespace in which this function was defined __annotations__ dict of parameter annotations __kwdefaults__ dict of keyword only parameters with defaults""" def (and lambda) functions have a different API from builtin_function_or_method objects. They should be kept separate. ---------- nosy: +steven.daprano _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:39:15 2022 From: report at bugs.python.org (Irit Katriel) Date: Mon, 04 Apr 2022 17:39:15 +0000 Subject: [issue47186] split JUMP_IF_NOT_EXC/EG_MATCH into CHECK_EXC/EG_MATCH + jump In-Reply-To: <1648813737.43.0.969911623865.issue47186@roundup.psfhosted.org> Message-ID: <1649093955.55.0.708177514439.issue47186@roundup.psfhosted.org> Change by Irit Katriel : ---------- pull_requests: +30370 pull_request: https://github.com/python/cpython/pull/32309 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:44:02 2022 From: report at bugs.python.org (miss-islington) Date: Mon, 04 Apr 2022 17:44:02 +0000 Subject: [issue46484] Add test for Calendar().iterweekdays() In-Reply-To: <1642933217.39.0.499836465558.issue46484@roundup.psfhosted.org> Message-ID: <1649094242.4.0.925526752737.issue46484@roundup.psfhosted.org> miss-islington added the comment: New changeset 6b4b892e0962a7050c5064133c59955691f9776c by Miss Islington (bot) in branch '3.10': bpo-46484:Add test for Calendar.iterweekdays (GH-30825) https://github.com/python/cpython/commit/6b4b892e0962a7050c5064133c59955691f9776c ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:47:01 2022 From: report at bugs.python.org (Marin M) Date: Mon, 04 Apr 2022 17:47:01 +0000 Subject: [issue47216] adding mtime option to gzip open() Message-ID: <1649094421.3.0.554667285415.issue47216@roundup.psfhosted.org> New submission from Marin M : init of class GzipFile has mtime as an optional argument, but open() function does not. When using open(), mtime will always be set to the current time and so far there was no way of fixing it to a specific timestamp. In case two people would tar.gz the same file and take its sha, the shas would be different. With an option to fix the mtime, they could have a unique sha. PR containing code change and the tests is already ready. ---------- components: Library (Lib) messages: 416685 nosy: ellaellela priority: normal severity: normal status: open title: adding mtime option to gzip open() type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:48:26 2022 From: report at bugs.python.org (Marin M) Date: Mon, 04 Apr 2022 17:48:26 +0000 Subject: [issue47216] adding mtime option to gzip open() In-Reply-To: <1649094421.3.0.554667285415.issue47216@roundup.psfhosted.org> Message-ID: <1649094506.63.0.798448557024.issue47216@roundup.psfhosted.org> Change by Marin M : ---------- keywords: +patch pull_requests: +30371 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32310 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:51:35 2022 From: report at bugs.python.org (Ravi Jain) Date: Mon, 04 Apr 2022 17:51:35 +0000 Subject: [issue47214] builtin_function_or_method is also either a function or a method In-Reply-To: <1649073069.64.0.34213734425.issue47214@roundup.psfhosted.org> Message-ID: <1649094695.31.0.619620525293.issue47214@roundup.psfhosted.org> Ravi Jain added the comment: yes, I think `inspect.isroutine` does the required functionality. sorry, I did not know about it, and could not think of the word `routine` when checking for functions. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:41:54 2022 From: report at bugs.python.org (miss-islington) Date: Mon, 04 Apr 2022 17:41:54 +0000 Subject: [issue46484] Add test for Calendar().iterweekdays() In-Reply-To: <1642933217.39.0.499836465558.issue46484@roundup.psfhosted.org> Message-ID: <1649094114.38.0.243336369545.issue46484@roundup.psfhosted.org> miss-islington added the comment: New changeset 5b4bc61d897c956c245a907807d0073aaa35f1c3 by Miss Islington (bot) in branch '3.9': bpo-46484:Add test for Calendar.iterweekdays (GH-30825) https://github.com/python/cpython/commit/5b4bc61d897c956c245a907807d0073aaa35f1c3 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 13:58:35 2022 From: report at bugs.python.org (Irit Katriel) Date: Mon, 04 Apr 2022 17:58:35 +0000 Subject: [issue46484] Add test for Calendar().iterweekdays() In-Reply-To: <1642933217.39.0.499836465558.issue46484@roundup.psfhosted.org> Message-ID: <1649095115.31.0.853555261874.issue46484@roundup.psfhosted.org> Irit Katriel added the comment: Thank you Jiahua! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 14:09:02 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Mon, 04 Apr 2022 18:09:02 +0000 Subject: [issue42012] typing support in wsgiref In-Reply-To: <1602497829.72.0.629140964099.issue42012@roundup.psfhosted.org> Message-ID: <1649095742.74.0.450539140042.issue42012@roundup.psfhosted.org> Jelle Zijlstra added the comment: This seems useful to me but I don't have experience with wsgiref. pje is listed as the maintainer in the devguide but appears to be inactive. I'd suggest you open a PR and if anyone feels strongly against it, they can complain. ---------- nosy: +JelleZijlstra, pje _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 14:09:27 2022 From: report at bugs.python.org (Matthew Rahtz) Date: Mon, 04 Apr 2022 18:09:27 +0000 Subject: [issue43224] Add support for PEP 646 In-Reply-To: <1646712216.72.0.358165955226.issue43224@roundup.psfhosted.org> Message-ID: <1649095767.55.0.0336411941077.issue43224@roundup.psfhosted.org> Matthew Rahtz added the comment: > 1. Finish writing docs Done once https://github.com/python/cpython/pull/32103 is merged. > 2. Implement support for pickling of unpacked native tuples Done once https://github.com/python/cpython/pull/32159 is merged. 4. Resolve the issue of how we implement type substitution (https://bugs.python.org/issue47006) Will re-visit this now. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 14:49:04 2022 From: report at bugs.python.org (Marin M) Date: Mon, 04 Apr 2022 18:49:04 +0000 Subject: [issue47217] adding name to BZ2File Message-ID: <1649098144.47.0.758350700738.issue47217@roundup.psfhosted.org> New submission from Marin M : BZ2File doesn't have attribute name, unlike GzipFile which has it. Trying to access that attribute results in error. PR is ready with code changes and tests which mimics what is already available for GzipFile (e.g. we do not take name from BytesIO() objects because they do not have it). A similar PR is ready for LZMAFile as well (a different enhancement). ---------- components: Library (Lib) messages: 416690 nosy: ellaellela priority: normal severity: normal status: open title: adding name to BZ2File type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 14:49:45 2022 From: report at bugs.python.org (Marin M) Date: Mon, 04 Apr 2022 18:49:45 +0000 Subject: [issue47217] adding name to BZ2File In-Reply-To: <1649098144.47.0.758350700738.issue47217@roundup.psfhosted.org> Message-ID: <1649098185.79.0.199732618756.issue47217@roundup.psfhosted.org> Change by Marin M : ---------- keywords: +patch pull_requests: +30373 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32311 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 14:53:55 2022 From: report at bugs.python.org (Marin M) Date: Mon, 04 Apr 2022 18:53:55 +0000 Subject: [issue47218] adding name to lzmafile Message-ID: <1649098435.58.0.673652307913.issue47218@roundup.psfhosted.org> New submission from Marin M : LZMAFile doesn't have attribute name, unlike GzipFile which has it. Trying to access that attribute results in error. PR is ready with code changes and tests which mimics what is already available for GzipFile (e.g. we do not take name from BytesIO() objects because they do not have it). A similar PR is ready for BZ2File as well (a different enhancement). ---------- components: Library (Lib) messages: 416691 nosy: ellaellela priority: normal severity: normal status: open title: adding name to lzmafile type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 14:54:30 2022 From: report at bugs.python.org (Marin M) Date: Mon, 04 Apr 2022 18:54:30 +0000 Subject: [issue47218] adding name to lzmafile In-Reply-To: <1649098435.58.0.673652307913.issue47218@roundup.psfhosted.org> Message-ID: <1649098470.32.0.590447676002.issue47218@roundup.psfhosted.org> Change by Marin M : ---------- keywords: +patch pull_requests: +30374 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32312 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 15:07:48 2022 From: report at bugs.python.org (Hood Chatham) Date: Mon, 04 Apr 2022 19:07:48 +0000 Subject: [issue47208] Support libffi implementations that cannot support invocations with 1024 arguments In-Reply-To: <1649032064.63.0.517222199646.issue47208@roundup.psfhosted.org> Message-ID: <1649099268.23.0.855748705881.issue47208@roundup.psfhosted.org> Hood Chatham added the comment: Ideally the library should be able to define a different macro, e.g., CTYPES_CUSTOM_MAX_ARGCOUNT. This way the libffi port can define CTYPES_CUSTOM_MAX_ARGCOUNT and it will be compatible with older Python versions without causing Warning: "CTYPES_MAX_ARGCOUNT redefined`. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 15:17:34 2022 From: report at bugs.python.org (neonene) Date: Mon, 04 Apr 2022 19:17:34 +0000 Subject: [issue47182] _PyUnicode_Fini should invalidate ucnhash_capi capsule pointer In-Reply-To: <1648733655.32.0.129667440403.issue47182@roundup.psfhosted.org> Message-ID: <1649099854.06.0.701738421581.issue47182@roundup.psfhosted.org> Change by neonene : ---------- nosy: +neonene nosy_count: 5.0 -> 6.0 pull_requests: +30375 pull_request: https://github.com/python/cpython/pull/32313 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 15:39:40 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 04 Apr 2022 19:39:40 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649101180.35.0.774430537978.issue47152@roundup.psfhosted.org> Serhiy Storchaka added the comment: > Match.regs is an undocumented attribute, it seems it has existed since 1991. Can it be removed? It was kept for compatibility with the pre-SRE implementation of the re module. It was an implementation detail in the original Python code, but I am sure that somebody still uses it. I am sure some code still use it. If we are going to remove it, it needs to be deprecated first. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 15:57:08 2022 From: report at bugs.python.org (Matthias Badaire) Date: Mon, 04 Apr 2022 19:57:08 +0000 Subject: [issue47219] asyncio with two interpreter instances Message-ID: <1649102228.02.0.401912675697.issue47219@roundup.psfhosted.org> New submission from Matthias Badaire : Hi, I have an issue when using asyncio and two interpreter instances each launched and used in a seperated thread. I am getting a asyncio loop for each thread .However asyncio is getting me the same loop because of this code in get_running_loop. Indeed when I have two interpreter, the ts_id would be the same for both my threads and therefore I will get the cached value of the first thread. cached_running_holder being static, it is the same value for all instances of interpreter. Maybe we should check if we are in the same interpreter or same thread ,.. I am not sure how it could be fixed. _asynciomodule.c: get_running_loop(PyObject **loop) { PyObject *rl; PyThreadState *ts = _PyThreadState_GET(); uint64_t ts_id = PyThreadState_GetID(ts); if (ts_id == cached_running_holder_tsid && cached_running_holder != NULL) { If it does not make sense, I have some sample code but it is not just 10 lines. ---------- components: asyncio messages: 416694 nosy: asvetlov, mbadaire, yselivanov priority: normal severity: normal status: open title: asyncio with two interpreter instances type: behavior _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 16:38:00 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Mon, 04 Apr 2022 20:38:00 +0000 Subject: [issue47219] asyncio with two interpreter instances In-Reply-To: <1649102228.02.0.401912675697.issue47219@roundup.psfhosted.org> Message-ID: <1649104680.43.0.336254704985.issue47219@roundup.psfhosted.org> Change by Jelle Zijlstra : ---------- nosy: +eric.snow _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 16:43:41 2022 From: report at bugs.python.org (Petr Viktorin) Date: Mon, 04 Apr 2022 20:43:41 +0000 Subject: [issue21314] Document '/' in signatures In-Reply-To: <1397988439.5.0.703056699862.issue21314@psf.upfronthosting.co.za> Message-ID: <1649105021.25.0.160394058881.issue21314@roundup.psfhosted.org> Petr Viktorin added the comment: - PEP 570 (Python Positional-Only Parameters) is final - The language spec was updated to mention it - the FAQ entry was revised to not link to the PEP and be a self-contained explanation IMO the only thing left is to make searching for `/` yield the right results, but that is bpo-15871. Closing this issue. ---------- nosy: +petr.viktorin resolution: -> fixed stage: commit review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 16:51:42 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Mon, 04 Apr 2022 20:51:42 +0000 Subject: [issue47190] Integrating tkinter and asyncio event loops In-Reply-To: <1648833483.36.0.0222315119123.issue47190@roundup.psfhosted.org> Message-ID: <1649105502.05.0.112895157755.issue47190@roundup.psfhosted.org> Terry J. Reedy added the comment: That issue has my previous experiments. Thank you Serhiy for finding it ;-). ---------- resolution: -> duplicate superseder: -> Integrate tkinter and asyncio (and async) _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 17:03:29 2022 From: report at bugs.python.org (=?utf-8?b?R8Opcnk=?=) Date: Mon, 04 Apr 2022 21:03:29 +0000 Subject: [issue47220] Document the optional callback parameter of weakref.WeakMethod Message-ID: <1649106208.47.0.134371147726.issue47220@roundup.psfhosted.org> New submission from G?ry : - Document the optional *callback* parameter of `weakref.WeakMethod`. - Fix a few spelling mistakes. - Improve wording. ---------- components: Library (Lib) messages: 416697 nosy: maggyero priority: normal pull_requests: 30376 severity: normal status: open title: Document the optional callback parameter of weakref.WeakMethod type: enhancement versions: Python 3.10, Python 3.11, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 17:52:57 2022 From: report at bugs.python.org (Irit Katriel) Date: Mon, 04 Apr 2022 21:52:57 +0000 Subject: [issue38299] build errors - latest "git pull" In-Reply-To: <1569612402.25.0.13974147855.issue38299@roundup.psfhosted.org> Message-ID: <1649109177.61.0.95437329578.issue38299@roundup.psfhosted.org> Irit Katriel added the comment: Thanks for the report. We run AddressSanitizer on the buildbots now, so I'm going to assume that we know about these issues when they come up. ---------- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 18:00:20 2022 From: report at bugs.python.org (Cezary Wagner) Date: Mon, 04 Apr 2022 22:00:20 +0000 Subject: [issue47221] Bug or bad performance Message-ID: <1649109620.49.0.345539464158.issue47221@roundup.psfhosted.org> New submission from Cezary Wagner : I am experienced programmer 10y+ - that is very very strange performance problem when I play Python timeit with my son :) three way operator a <= x <= b is slower than a <= x and x <= b. It looks like wrong implementation since it is impossible that two separate check is faster that one check (with two low level check in C). import timeit REPEATS = 100 def test1(): selected = [] for i in range(REPEATS): if i >= 25 and i <= 75: selected.append(i) return selected def test2(): selected = [] for i in range(REPEATS): if 25 <= i <= 75: selected.append(i) return selected print(timeit.timeit(test1)) print(timeit.timeit(test2)) Result is on Windows 10. 4.428947699998389 4.9062477999978 ---------- components: Interpreter Core messages: 416699 nosy: Cezary.Wagner priority: normal severity: normal status: open title: Bug or bad performance type: performance versions: Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 18:13:23 2022 From: report at bugs.python.org (Zoltan Vajda) Date: Mon, 04 Apr 2022 22:13:23 +0000 Subject: [issue47049] Incorrect shutil.copytree() behaviour with symlinks In-Reply-To: <1647543019.32.0.96447570107.issue47049@roundup.psfhosted.org> Message-ID: <1649110403.67.0.146439223394.issue47049@roundup.psfhosted.org> Zoltan Vajda added the comment: Because I am a first contributor, the automatic quality checks on GitHub have to be manually started by somebody. How can I reqest this and by whom? ---------- type: -> behavior _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 18:21:34 2022 From: report at bugs.python.org (Cezary Wagner) Date: Mon, 04 Apr 2022 22:21:34 +0000 Subject: [issue47221] Bug or bad performance In-Reply-To: <1649109620.49.0.345539464158.issue47221@roundup.psfhosted.org> Message-ID: <1649110894.39.0.513769164258.issue47221@roundup.psfhosted.org> Cezary Wagner added the comment: Some more experiments: import dis import timeit REPEATS = 100 def test1(): selected = [] for i in range(REPEATS): if i >= 25 and i <= 75: selected.append(i) return selected def test2(): selected = [] for i in range(REPEATS): if 25 <= i <= 75: selected.append(i) return selected def test3(): return [x for x in range(REPEATS) if x >= 25 and x <= 75] def test4(): return [x for x in range(REPEATS) if 25 <= x <= 75] def test(f): print(dis.dis(f.__code__.co_code)) print(timeit.timeit(f)) test(test1) test(test2) test(test3) test(test4) Result: 0 BUILD_LIST 0 2 STORE_FAST 0 (0) 4 LOAD_GLOBAL 0 (0) 6 LOAD_GLOBAL 1 (1) 8 CALL_FUNCTION 1 10 GET_ITER >> 12 FOR_ITER 15 (to 44) 14 STORE_FAST 1 (1) 16 LOAD_FAST 1 (1) 18 LOAD_CONST 1 (1) 20 COMPARE_OP 5 (>=) 22 POP_JUMP_IF_FALSE 21 (to 42) 24 LOAD_FAST 1 (1) 26 LOAD_CONST 2 (2) 28 COMPARE_OP 1 (<=) 30 POP_JUMP_IF_FALSE 21 (to 42) 32 LOAD_FAST 0 (0) 34 LOAD_METHOD 2 (2) 36 LOAD_FAST 1 (1) 38 CALL_METHOD 1 40 POP_TOP >> 42 JUMP_ABSOLUTE 6 (to 12) >> 44 LOAD_FAST 0 (0) 46 RETURN_VALUE None 4.565677999999025 0 BUILD_LIST 0 2 STORE_FAST 0 (0) 4 LOAD_GLOBAL 0 (0) 6 LOAD_GLOBAL 1 (1) 8 CALL_FUNCTION 1 10 GET_ITER >> 12 FOR_ITER 19 (to 52) 14 STORE_FAST 1 (1) 16 LOAD_CONST 1 (1) 18 LOAD_FAST 1 (1) 20 DUP_TOP 22 ROT_THREE 24 COMPARE_OP 1 (<=) 26 POP_JUMP_IF_FALSE 18 (to 36) 28 LOAD_CONST 2 (2) 30 COMPARE_OP 1 (<=) 32 POP_JUMP_IF_FALSE 25 (to 50) 34 JUMP_FORWARD 2 (to 40) >> 36 POP_TOP 38 JUMP_ABSOLUTE 6 (to 12) >> 40 LOAD_FAST 0 (0) 42 LOAD_METHOD 2 (2) 44 LOAD_FAST 1 (1) 46 CALL_METHOD 1 48 POP_TOP >> 50 JUMP_ABSOLUTE 6 (to 12) >> 52 LOAD_FAST 0 (0) 54 RETURN_VALUE None 5.6398234000007506 0 LOAD_CONST 1 (1) 2 LOAD_CONST 2 (2) 4 MAKE_FUNCTION 0 6 LOAD_GLOBAL 0 (0) 8 LOAD_GLOBAL 1 (1) 10 CALL_FUNCTION 1 12 GET_ITER 14 CALL_FUNCTION 1 16 RETURN_VALUE None 3.8792907999959425 0 LOAD_CONST 1 (1) 2 LOAD_CONST 2 (2) 4 MAKE_FUNCTION 0 6 LOAD_GLOBAL 0 (0) 8 LOAD_GLOBAL 1 (1) 10 CALL_FUNCTION 1 12 GET_ITER 14 CALL_FUNCTION 1 16 RETURN_VALUE None 3.8591266999937943 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 18:43:02 2022 From: report at bugs.python.org (Matthew) Date: Mon, 04 Apr 2022 22:43:02 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1649112182.95.0.901592470883.issue47203@roundup.psfhosted.org> Matthew added the comment: Hello, Thanks for all the help people have given me! I've found the solution to my problem. The Environment Variable was set below every other, leading to a different Python interpreter to being used, which was probably bundled with a different software. I moved the Env. Variable up to the top, and the issue was fixed. Thanks again! ---------- resolution: -> not a bug stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 18:52:49 2022 From: report at bugs.python.org (Philip Prindeville) Date: Mon, 04 Apr 2022 22:52:49 +0000 Subject: [issue47222] subprocess.Popen() should allow capturing output and sending it to stdout and stderr Message-ID: <1649112769.31.0.762771306668.issue47222@roundup.psfhosted.org> New submission from Philip Prindeville : I'd like to see handlers exposes for the stdout and stderr pipe-reading threads so that I could customize what's done with the data as it's read. I might, for instance, want to: (1) accumulate it into a buffer; (2) copy it onto sys.stdout or sys.stderr, respectively; (3) send it to a logging object; or some combination of the above, possibly all of them. ---------- components: Library (Lib) messages: 416703 nosy: pprindeville priority: normal severity: normal status: open title: subprocess.Popen() should allow capturing output and sending it to stdout and stderr type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 19:01:47 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Mon, 04 Apr 2022 23:01:47 +0000 Subject: [issue47221] Bug or bad performance In-Reply-To: <1649109620.49.0.345539464158.issue47221@roundup.psfhosted.org> Message-ID: <1649113307.67.0.885138453531.issue47221@roundup.psfhosted.org> Dennis Sweeney added the comment: I believe this is a duplicate of this issue: https://bugs.python.org/issue45542 ---------- nosy: +Dennis Sweeney _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 19:04:38 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Mon, 04 Apr 2022 23:04:38 +0000 Subject: [issue47221] chained comparisons slower than using `and` In-Reply-To: <1649109620.49.0.345539464158.issue47221@roundup.psfhosted.org> Message-ID: <1649113478.44.0.639187456566.issue47221@roundup.psfhosted.org> Change by Dennis Sweeney : ---------- title: Bug or bad performance -> chained comparisons slower than using `and` _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 19:10:33 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Mon, 04 Apr 2022 23:10:33 +0000 Subject: [issue47221] chained comparisons slower than using `and` In-Reply-To: <1649109620.49.0.345539464158.issue47221@roundup.psfhosted.org> Message-ID: <1649113833.69.0.492169584232.issue47221@roundup.psfhosted.org> Dennis Sweeney added the comment: Feel free to comment on that issue if you have any ideas about how to address the concerns there. ---------- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Using multiple comparison operators can cause performance issues _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 19:14:14 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Mon, 04 Apr 2022 23:14:14 +0000 Subject: [issue45542] Using multiple comparison operators can cause performance issues In-Reply-To: <1634754333.52.0.650287816276.issue45542@roundup.psfhosted.org> Message-ID: <1649114054.56.0.822545560098.issue45542@roundup.psfhosted.org> Dennis Sweeney added the comment: https://bugs.python.org/issue47221 was opened as a duplicate of this. Unless there are any new ideas for getting around the concerns here, I think this can be closed. ---------- status: open -> pending _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 19:28:09 2022 From: report at bugs.python.org (Matthew Rahtz) Date: Mon, 04 Apr 2022 23:28:09 +0000 Subject: [issue47006] PEP 646: Decide on substitution behavior In-Reply-To: <1647204376.33.0.359883240304.issue47006@roundup.psfhosted.org> Message-ID: <1649114889.48.0.521768587246.issue47006@roundup.psfhosted.org> Matthew Rahtz added the comment: Apologies for the slow reply - coming back to this now that the docs and pickling issues are mostly sorted. [Serhiy] > > Alias = C[T, *Ts] > > Alias2 = Alias[*tuple[int, ...]] > > # Alias2 should be C[int, *tuple[int, ...]] > > tuple[int, ...] includes also an empty tuple, and in this case there is no value for T. This was my initial intuition too, but Pradeep pointed out to me in https://github.com/python/cpython/pull/31021#discussion_r815853784 that for tuple[int, ...], Python has chosen the opposite mindset: instead of assuming the worst-case scenario, we assume the best-case scenario. Thus, the following type-checks correctly with mypy (https://mypy-play.net/?mypy=latest&python=3.10&gist=b9ca66fb7d172f939951a741388836a6): def return_first(tup: tuple[int, ...]) -> int: return tup[0] tup: tuple[()] = () return_first(tup) > > We actually deliberately chose not to unpack concrete tuple types - see the description of https://github.com/python/cpython/pull/30398, under the heading 'Starred tuple types'. (If you see another way around it, though, let me know.) > > You assumed that *tuple[str, bool] in def foo(*args: *tuple[str, bool]) should give foo.__annotations__['args'] = tuple[str, bool], but it should rather give (str, bool). No confusion with tuple[str, bool]. Fair point, we could *technically* distinguish between tuple[str, bool] and (str, bool). But if I was a naive user and I saw `foo.__annotations__['args'] == (str, bool)`, I don't think it'd be immediately obvious to me that the type of `args` was `*tuple[str, bool]`. Also though, there's a second reason mentioned in https://github.com/python/cpython/pull/30398 why `(str, bool)` wouldn't be the best choice. We decided that the runtime behaviour of `*args: *something` should be that we essentially do `(*something,)[0]`. If we made `tuple[int, str]` unpack to `(int, str)`, then we'd end up with `__annotations__['args'] == (int,)`. > And one of PEP 646 options is to implement star-syntax only in subscription, not in var-parameter type annotations. As in, we would allow `Generic[*Ts]`, but not `*args: *Ts`? That'd be a *major* change to the PEP - not an option I'm willing to consider at this stage in the process. > > I'm also not sure about this one; disallowing unpacked TypeVarTuples in argument lists to generic aliases completely (if I've understood right?) > > No, it will only be disallowed in substitution of a VarType. Tuple[T][*Ts] -- error. Tuple[*Ts][*Ts2] -- ok. Ah, gotcha. My mistake. [Guido] I ran out of time this evening :) Will reply properly soon. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 19:37:10 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Mon, 04 Apr 2022 23:37:10 +0000 Subject: [issue47097] Document PEP 646 In-Reply-To: <1648001316.99.0.843695739634.issue47097@roundup.psfhosted.org> Message-ID: <1649115430.73.0.713671676269.issue47097@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset 38ae5b8c0c0b64ae6100b0dee8707d5ab769e381 by Matthew Rahtz in branch 'main': bpo-47097: Add documentation for TypeVarTuple (#32103) https://github.com/python/cpython/commit/38ae5b8c0c0b64ae6100b0dee8707d5ab769e381 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 19:48:32 2022 From: report at bugs.python.org (Alex Waygood) Date: Mon, 04 Apr 2022 23:48:32 +0000 Subject: [issue47097] Document PEP 646 In-Reply-To: <1648001316.99.0.843695739634.issue47097@roundup.psfhosted.org> Message-ID: <1649116112.57.0.372919046383.issue47097@roundup.psfhosted.org> Change by Alex Waygood : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 20:36:21 2022 From: report at bugs.python.org (Alex Waygood) Date: Tue, 05 Apr 2022 00:36:21 +0000 Subject: [issue47097] Document PEP 646 In-Reply-To: <1648001316.99.0.843695739634.issue47097@roundup.psfhosted.org> Message-ID: <1649118981.78.0.392242372107.issue47097@roundup.psfhosted.org> Alex Waygood added the comment: (Feel free to reopen this issue if there's more to be done, Matthew!) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 20:53:35 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 00:53:35 +0000 Subject: [issue46850] [C API] Move _PyEval_EvalFrameDefault() to the internal C API In-Reply-To: <1645716984.87.0.22272006941.issue46850@roundup.psfhosted.org> Message-ID: <1649120015.88.0.211559613112.issue46850@roundup.psfhosted.org> Gregory P. Smith added the comment: per https://mail.python.org/archives/list/python-dev at python.org/message/GFOMU7LP63JUVFMWNJNZJLUMZDRPTUYJ/ lets roll some of those PRs back and reshape where we move these APIs as despite the PEP they were not as private as other privates. (deferred blocker meaning: block 3.11beta1 - though Pablo could decide to have the rollbacks block 3.11alpha7) ---------- nosy: +gregory.p.smith, pablogsal priority: normal -> deferred blocker _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 21:15:23 2022 From: report at bugs.python.org (Ned Deily) Date: Tue, 05 Apr 2022 01:15:23 +0000 Subject: [issue47210] './configure --help' causes infinite loop In-Reply-To: <1649054951.07.0.0464700786493.issue47210@roundup.psfhosted.org> Message-ID: <1649121323.9.0.327456962221.issue47210@roundup.psfhosted.org> Ned Deily added the comment: Python 3.9.6 is no longer supported, 3.9.12 is the most recent 3.9.x release. Do you get the same results with 3.9.12? But, for what it's worth, ./configure --help of that 3.9.6 tarball works just fine on other current Linux systems I have available. ---------- nosy: +ned.deily _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 21:18:23 2022 From: report at bugs.python.org (Ned Deily) Date: Tue, 05 Apr 2022 01:18:23 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1649121503.07.0.577544961764.issue45847@roundup.psfhosted.org> Ned Deily added the comment: New changeset 5a7506de7374c10e6eb9ae5a232cc88d4d588450 by Oleg Iarygin in branch 'main': Fix "Contributed ... in bpo-bpo-45847" (GH-32299) https://github.com/python/cpython/commit/5a7506de7374c10e6eb9ae5a232cc88d4d588450 ---------- nosy: +ned.deily _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 21:44:20 2022 From: report at bugs.python.org (Ned Deily) Date: Tue, 05 Apr 2022 01:44:20 +0000 Subject: [issue46180] Button clicked failed when mouse hover tooltip and tooltip destroyed In-Reply-To: <1640515148.68.0.766649384181.issue46180@roundup.psfhosted.org> Message-ID: <1649123060.54.0.361149345828.issue46180@roundup.psfhosted.org> Ned Deily added the comment: Unfortunately, this is the kind of issue, often the case with tkinter issues, where it is difficult to know where the problem might be. While I know little about the internals of tkinter and Tk, my intuition is that this is most likely a Tk issue and would need to be resolved by the Tk folks. For these kinds of problems, it is usually helpful to try to reproduce the problem using Tcl and Tk directly; I have no idea how difficult that would be in this case. If someone can do so, then it would be much more likely to get the Tk project to look into it (by opening an issue with them). Another ofter useful approach is to ask on the tkinter mailing list or on StackOverflow where people with both tkinter and Tk expertise hang out. https://mail.python.org/mailman/listinfo/tkinter-discuss ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 21:49:10 2022 From: report at bugs.python.org (Ned Deily) Date: Tue, 05 Apr 2022 01:49:10 +0000 Subject: [issue47222] subprocess.Popen() should allow capturing output and sending it to stdout and stderr In-Reply-To: <1649112769.31.0.762771306668.issue47222@roundup.psfhosted.org> Message-ID: <1649123350.68.0.64270339717.issue47222@roundup.psfhosted.org> Change by Ned Deily : ---------- nosy: +gregory.p.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:01:40 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:01:40 +0000 Subject: [issue41233] Missing links to errnos on Built-in Exceptions page In-Reply-To: <1594161566.11.0.329793156149.issue41233@roundup.psfhosted.org> Message-ID: <1649124100.57.0.795833021649.issue41233@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset a74892cb2168d249d9a8c53fad605a5def9b41d4 by yyyyyyyan in branch 'main': bpo-41233: Add links to errnos referenced in exceptions docs (GH-21380) https://github.com/python/cpython/commit/a74892cb2168d249d9a8c53fad605a5def9b41d4 ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:01:46 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:01:46 +0000 Subject: [issue41233] Missing links to errnos on Built-in Exceptions page In-Reply-To: <1594161566.11.0.329793156149.issue41233@roundup.psfhosted.org> Message-ID: <1649124106.0.0.45749406303.issue41233@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +30377 pull_request: https://github.com/python/cpython/pull/32316 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:01:50 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:01:50 +0000 Subject: [issue41233] Missing links to errnos on Built-in Exceptions page In-Reply-To: <1594161566.11.0.329793156149.issue41233@roundup.psfhosted.org> Message-ID: <1649124110.19.0.0977154906087.issue41233@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30378 pull_request: https://github.com/python/cpython/pull/32317 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:30:14 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:30:14 +0000 Subject: [issue41233] Missing links to errnos on Built-in Exceptions page In-Reply-To: <1594161566.11.0.329793156149.issue41233@roundup.psfhosted.org> Message-ID: <1649125814.4.0.993211626822.issue41233@roundup.psfhosted.org> miss-islington added the comment: New changeset 3fa800d7a7a405f51e0e8c9b7dac2f2a75c17bb4 by Miss Islington (bot) in branch '3.10': bpo-41233: Add links to errnos referenced in exceptions docs (GH-21380) https://github.com/python/cpython/commit/3fa800d7a7a405f51e0e8c9b7dac2f2a75c17bb4 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:30:29 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:30:29 +0000 Subject: [issue41233] Missing links to errnos on Built-in Exceptions page In-Reply-To: <1594161566.11.0.329793156149.issue41233@roundup.psfhosted.org> Message-ID: <1649125829.0.0.562852148793.issue41233@roundup.psfhosted.org> miss-islington added the comment: New changeset e47e6ffed36eb1dd82da3bcadf8b45b894ef4ce2 by Miss Islington (bot) in branch '3.9': bpo-41233: Add links to errnos referenced in exceptions docs (GH-21380) https://github.com/python/cpython/commit/e47e6ffed36eb1dd82da3bcadf8b45b894ef4ce2 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:31:04 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:31:04 +0000 Subject: [issue41233] Missing links to errnos on Built-in Exceptions page In-Reply-To: <1594161566.11.0.329793156149.issue41233@roundup.psfhosted.org> Message-ID: <1649125864.25.0.443276869334.issue41233@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for the patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:34:36 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:34:36 +0000 Subject: [issue47007] [doc] str docs are inconsistent with special method lookup In-Reply-To: <1647218421.76.0.418268186673.issue47007@roundup.psfhosted.org> Message-ID: <1649126076.51.0.00653717620072.issue47007@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30379 pull_request: https://github.com/python/cpython/pull/32318 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:34:39 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:34:39 +0000 Subject: [issue47007] [doc] str docs are inconsistent with special method lookup In-Reply-To: <1647218421.76.0.418268186673.issue47007@roundup.psfhosted.org> Message-ID: <1649126079.37.0.353602370003.issue47007@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset bb86d1d9fbd1888524e04475383f4ea764277f67 by Vanshaj Singhania in branch 'main': bpo-47007: [doc] `str` special method lookup (GH-31863) https://github.com/python/cpython/commit/bb86d1d9fbd1888524e04475383f4ea764277f67 ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:34:41 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:34:41 +0000 Subject: [issue47007] [doc] str docs are inconsistent with special method lookup In-Reply-To: <1647218421.76.0.418268186673.issue47007@roundup.psfhosted.org> Message-ID: <1649126081.36.0.864389913262.issue47007@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30380 pull_request: https://github.com/python/cpython/pull/32319 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:35:06 2022 From: report at bugs.python.org (Steven D'Aprano) Date: Tue, 05 Apr 2022 02:35:06 +0000 Subject: [issue45542] Using multiple comparison operators can cause performance issues In-Reply-To: <1634754333.52.0.650287816276.issue45542@roundup.psfhosted.org> Message-ID: <1649126106.6.0.208657758569.issue45542@roundup.psfhosted.org> Steven D'Aprano added the comment: I came here from #47221. If I am reading this correctly, it concerns me that stack operations (which should be fast) are apparently slow? If we can't reduce the number of stack operations, can we speed them up? ---------- nosy: +steven.daprano status: pending -> open _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:35:38 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:35:38 +0000 Subject: [issue46998] Allow subclassing Any at runtime In-Reply-To: <1647140797.69.0.86032805072.issue46998@roundup.psfhosted.org> Message-ID: <1649126138.38.0.629420660383.issue46998@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset 5a4973e29f2f5c4ee8c086f40325786c62381540 by Shantanu in branch 'main': bpo-46998: Allow subclassing Any at runtime (GH-31841) https://github.com/python/cpython/commit/5a4973e29f2f5c4ee8c086f40325786c62381540 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:35:58 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:35:58 +0000 Subject: [issue46998] Allow subclassing Any at runtime In-Reply-To: <1647140797.69.0.86032805072.issue46998@roundup.psfhosted.org> Message-ID: <1649126158.79.0.267720305699.issue46998@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for the idea and patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:36:42 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:36:42 +0000 Subject: [issue45790] Inaccurate phrasing in extending/newtypes_tutorial In-Reply-To: <1636685753.29.0.246932963554.issue45790@roundup.psfhosted.org> Message-ID: <1649126202.83.0.158746508523.issue45790@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +30381 pull_request: https://github.com/python/cpython/pull/32320 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:36:45 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:36:45 +0000 Subject: [issue45790] Inaccurate phrasing in extending/newtypes_tutorial In-Reply-To: <1636685753.29.0.246932963554.issue45790@roundup.psfhosted.org> Message-ID: <1649126205.49.0.45872994547.issue45790@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset b275267aa7d44ec90fa435c9cb1610c549da745a by rtobar in branch 'main': bpo-45790: List macros in same order in which fields are described (GH-29529) https://github.com/python/cpython/commit/b275267aa7d44ec90fa435c9cb1610c549da745a ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:37:36 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:37:36 +0000 Subject: [issue47007] [doc] str docs are inconsistent with special method lookup In-Reply-To: <1647218421.76.0.418268186673.issue47007@roundup.psfhosted.org> Message-ID: <1649126256.38.0.115219117833.issue47007@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for the report and fix! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:41:00 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:41:00 +0000 Subject: [issue45790] Inaccurate phrasing in extending/newtypes_tutorial In-Reply-To: <1636685753.29.0.246932963554.issue45790@roundup.psfhosted.org> Message-ID: <1649126460.05.0.033691452865.issue45790@roundup.psfhosted.org> Change by Jelle Zijlstra : ---------- pull_requests: +30382 pull_request: https://github.com/python/cpython/pull/32321 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:44:46 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:44:46 +0000 Subject: [issue45790] Inaccurate phrasing in extending/newtypes_tutorial In-Reply-To: <1636685753.29.0.246932963554.issue45790@roundup.psfhosted.org> Message-ID: <1649126686.67.0.208293120171.issue45790@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for noticing and fixing! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:47:05 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:47:05 +0000 Subject: [issue32658] Metacharacter (\) documentation suggestion In-Reply-To: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> Message-ID: <1649126825.59.0.812053454521.issue32658@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +30383 pull_request: https://github.com/python/cpython/pull/32322 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:47:14 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:47:14 +0000 Subject: [issue32658] Metacharacter (\) documentation suggestion In-Reply-To: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> Message-ID: <1649126834.6.0.311167924806.issue32658@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset 43571a3eea8b5931769376daf4bdad1c9184ae0d by Mike cm in branch 'main': bpo-32658: Regex docs: Fix metacharacter reference (GH-32230) https://github.com/python/cpython/commit/43571a3eea8b5931769376daf4bdad1c9184ae0d ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:47:37 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:47:37 +0000 Subject: [issue32658] Metacharacter (\) documentation suggestion In-Reply-To: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> Message-ID: <1649126857.6.0.134743841437.issue32658@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30384 pull_request: https://github.com/python/cpython/pull/32323 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:47:42 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:47:42 +0000 Subject: [issue32658] Metacharacter (\) documentation suggestion In-Reply-To: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> Message-ID: <1649126862.92.0.932216024427.issue32658@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for the patch! ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:52:50 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:52:50 +0000 Subject: [issue43224] Add support for PEP 646 In-Reply-To: <1646712216.72.0.358165955226.issue43224@roundup.psfhosted.org> Message-ID: <1649127170.69.0.1742685549.issue43224@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset 772d8080c9fd635c3999673ca9fad8b674385c7f by Matthew Rahtz in branch 'main': bpo-43224: typing: Add tests for pickling and copying of unpacked native tuple (GH-32159) https://github.com/python/cpython/commit/772d8080c9fd635c3999673ca9fad8b674385c7f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:56:37 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:56:37 +0000 Subject: [issue47007] [doc] str docs are inconsistent with special method lookup In-Reply-To: <1647218421.76.0.418268186673.issue47007@roundup.psfhosted.org> Message-ID: <1649127397.98.0.586099260499.issue47007@roundup.psfhosted.org> miss-islington added the comment: New changeset f502dadb332f911fa3b6c531bbc5065795cca242 by Miss Islington (bot) in branch '3.10': bpo-47007: [doc] `str` special method lookup (GH-31863) https://github.com/python/cpython/commit/f502dadb332f911fa3b6c531bbc5065795cca242 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:57:25 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:57:25 +0000 Subject: [issue40982] copytree example in shutil In-Reply-To: <1592212728.34.0.101904144419.issue40982@roundup.psfhosted.org> Message-ID: <1649127445.59.0.595909844809.issue40982@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30385 pull_request: https://github.com/python/cpython/pull/32326 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:57:27 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:57:27 +0000 Subject: [issue45790] Inaccurate phrasing in extending/newtypes_tutorial In-Reply-To: <1636685753.29.0.246932963554.issue45790@roundup.psfhosted.org> Message-ID: <1649127447.04.0.0216186178809.issue45790@roundup.psfhosted.org> miss-islington added the comment: New changeset f4e711bb49881deb1f07a685878646cd5cdee50f by Miss Islington (bot) in branch '3.10': bpo-45790: List macros in same order in which fields are described (GH-29529) https://github.com/python/cpython/commit/f4e711bb49881deb1f07a685878646cd5cdee50f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:57:26 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 02:57:26 +0000 Subject: [issue40982] copytree example in shutil In-Reply-To: <1592212728.34.0.101904144419.issue40982@roundup.psfhosted.org> Message-ID: <1649127446.87.0.3951039075.issue40982@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset e06f920c5bc6e9fad29082ba0d84043722806e17 by Zackery Spytz in branch 'main': bpo-40982: shutil docs: Remove outdated copytree() example (GH-24778) https://github.com/python/cpython/commit/e06f920c5bc6e9fad29082ba0d84043722806e17 ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:57:29 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:57:29 +0000 Subject: [issue40982] copytree example in shutil In-Reply-To: <1592212728.34.0.101904144419.issue40982@roundup.psfhosted.org> Message-ID: <1649127449.65.0.790854158064.issue40982@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30386 pull_request: https://github.com/python/cpython/pull/32327 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 22:59:12 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 02:59:12 +0000 Subject: [issue47007] [doc] str docs are inconsistent with special method lookup In-Reply-To: <1647218421.76.0.418268186673.issue47007@roundup.psfhosted.org> Message-ID: <1649127552.93.0.223536404593.issue47007@roundup.psfhosted.org> miss-islington added the comment: New changeset c0063bdc7b5fed98c6799f3da0a954a775e3d89e by Miss Islington (bot) in branch '3.9': bpo-47007: [doc] `str` special method lookup (GH-31863) https://github.com/python/cpython/commit/c0063bdc7b5fed98c6799f3da0a954a775e3d89e ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:00:07 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 03:00:07 +0000 Subject: [issue40982] copytree example in shutil In-Reply-To: <1592212728.34.0.101904144419.issue40982@roundup.psfhosted.org> Message-ID: <1649127607.56.0.613144774674.issue40982@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for the report and patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:08:24 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 03:08:24 +0000 Subject: [issue32658] Metacharacter (\) documentation suggestion In-Reply-To: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> Message-ID: <1649128104.34.0.309927203243.issue32658@roundup.psfhosted.org> miss-islington added the comment: New changeset d95e072c419e40b0fb67b8cc8a84087c8a0276ee by Miss Islington (bot) in branch '3.10': bpo-32658: Regex docs: Fix metacharacter reference (GH-32230) https://github.com/python/cpython/commit/d95e072c419e40b0fb67b8cc8a84087c8a0276ee ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:11:44 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 03:11:44 +0000 Subject: [issue32658] Metacharacter (\) documentation suggestion In-Reply-To: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> Message-ID: <1649128304.15.0.705512848608.issue32658@roundup.psfhosted.org> miss-islington added the comment: New changeset 31c9e35e5360ba91fc6b81b23eb21dd3c39e2257 by Miss Islington (bot) in branch '3.9': bpo-32658: Regex docs: Fix metacharacter reference (GH-32230) https://github.com/python/cpython/commit/31c9e35e5360ba91fc6b81b23eb21dd3c39e2257 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:14:58 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Tue, 05 Apr 2022 03:14:58 +0000 Subject: [issue45542] Using multiple comparison operators can cause performance issues In-Reply-To: <1634754333.52.0.650287816276.issue45542@roundup.psfhosted.org> Message-ID: <1649128498.38.0.488387437838.issue45542@roundup.psfhosted.org> Dennis Sweeney added the comment: For reference, chaining is about 1.18x slower in this microbenchmark on GCC: ./python -m pyperf timeit -s "x = 100" "if 10 < x < 30: print('no')" --duplicate=10 ..................... Mean +- std dev: 21.3 ns +- 0.2 ns ./python -m pyperf timeit -s "x = 100" "if 10 < x and x < 30: print('no')" --duplicate=10 ..................... Mean +- std dev: 18.0 ns +- 0.5 ns For a related case, in GH-30970, the bytecode generate by "a, b = a0, b0" was changed. Before: [load_a0, load_b0, swap, store_a, store_b] After: [load_a0, load_b0, store_b, store_a] However, this was only changed when the stores were STORE_FASTs. STORE_GLOBAL/STORE_NAME/STORE_DEREF cases still have the SWAP. In the STORE_GLOBAL cases, you can construct scenarios with custom __del__ methods where storing b and then a has different behavior than storing a and then b. No such cases can be constructed for STORE_FAST without resorting to frame hacking. I wonder if the same argument applies here: maybe @akuvfx's PR could be altered to use LOAD_FAST twice for each variable *only* if everything in sight is the result of a LOAD_FAST or a LOAD_CONST. My example above uses a LOAD_DEREF, so its behavior could remain unchanged. The argument that this would within the language spec is maybe a little bit more dubious than the "a, b = a0, b0" case though, since custom `__lt__` methods are a bit more well-specified than custom `__del__` methods. Thoughts? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:16:24 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 03:16:24 +0000 Subject: [issue40982] copytree example in shutil In-Reply-To: <1592212728.34.0.101904144419.issue40982@roundup.psfhosted.org> Message-ID: <1649128584.08.0.215315676377.issue40982@roundup.psfhosted.org> miss-islington added the comment: New changeset 857cf55cbdd65b7a9534dc35d89a19dfe8cbdba5 by Miss Islington (bot) in branch '3.10': bpo-40982: shutil docs: Remove outdated copytree() example (GH-24778) https://github.com/python/cpython/commit/857cf55cbdd65b7a9534dc35d89a19dfe8cbdba5 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:22:12 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 03:22:12 +0000 Subject: [issue40982] copytree example in shutil In-Reply-To: <1592212728.34.0.101904144419.issue40982@roundup.psfhosted.org> Message-ID: <1649128932.03.0.522073492604.issue40982@roundup.psfhosted.org> miss-islington added the comment: New changeset bc9ec24290d0fa823fa2ac19ac9767b2b8498faa by Miss Islington (bot) in branch '3.9': bpo-40982: shutil docs: Remove outdated copytree() example (GH-24778) https://github.com/python/cpython/commit/bc9ec24290d0fa823fa2ac19ac9767b2b8498faa ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:24:02 2022 From: report at bugs.python.org (Takuo Matsuoka) Date: Tue, 05 Apr 2022 03:24:02 +0000 Subject: [issue47223] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass Message-ID: <1649129042.58.0.0645536358983.issue47223@roundup.psfhosted.org> New submission from Takuo Matsuoka : Context ------- Some classes have the variable __name__ in their namespace __dict__ , and one may wish to create more such classes with varied values of __name__ . Some of those could be created with a metaclass whose __prepare__ returns a mapping having key "__name__", for which the value is created depending on the arguments of __prepare__ and can be updated or deleted in the body of the class to be created. (See C below for a very silly example of such a metaclass.) Problem ------- The value of __name__ given by __prepare__ becomes not just that in the class body, but automatically also the value of __module__ there. As far as I could see, this is not documented, and the programmer might not notice __module__ was messed up. I think this behaviour is unexpected and problematic at least unless a warning is given on it in the document. Example ------- Here's a code which produces a problem. ``` # In this example, the metaclass C is intended to be a class of # subclasses of: B = type class C(type(B)): @classmethod def __prepare__(cls, /, *args, **kwargs): return dict(__name__ = cls._name(*args, **kwargs)) @classmethod def _name(cls, /, *args, **kwargs): # The actual value of __name__ doesn't matter much to the # issue, so I make this function always return the same silly # thing in this example. return type.__dict__["__name__"] class O(B, metaclass=C): print(__module__ == __name__) # True # Could update or delete __name__ here. ``` Consequently, >>> O.__module__ Discussion ---------- If the value of __name__ can be read from the scope outside for the assignment to __module__, then that will erase this unexpected behaviour and I think it would be a much safer thing to do. Remarks ------- The issue was previously https://bugs.python.org/issue47136 which I'm going to close now since I failed to specify the issue clearly enough there. Here I've made the issue more specific. The issue is different from but seems related to https://bugs.python.org/issue28869 I haven't figured out the exact relation. Thanks. ---------- components: Interpreter Core messages: 416738 nosy: Takuo Matsuoka priority: normal severity: normal status: open title: The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass type: behavior versions: Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:26:37 2022 From: report at bugs.python.org (Takuo Matsuoka) Date: Tue, 05 Apr 2022 03:26:37 +0000 Subject: [issue47223] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass In-Reply-To: <1649129042.58.0.0645536358983.issue47223@roundup.psfhosted.org> Message-ID: <1649129197.46.0.902091591398.issue47223@roundup.psfhosted.org> Takuo Matsuoka added the comment: I'm going to close this one since I failed to specify the issue clearly enough. See https://bugs.python.org/issue47223 for a more specific issue. ---------- resolution: -> duplicate stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:31:04 2022 From: report at bugs.python.org (Takuo Matsuoka) Date: Tue, 05 Apr 2022 03:31:04 +0000 Subject: [issue47223] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass In-Reply-To: <1649129042.58.0.0645536358983.issue47223@roundup.psfhosted.org> Message-ID: <1649129464.99.0.516126513008.issue47223@roundup.psfhosted.org> Takuo Matsuoka added the comment: I tried to close https://bugs.python.org/issue47136 and mistakingly closed this one. This one is open. Sorry about the mistake. ---------- resolution: duplicate -> status: closed -> open _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:36:25 2022 From: report at bugs.python.org (Takuo Matsuoka) Date: Tue, 05 Apr 2022 03:36:25 +0000 Subject: [issue47224] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass Message-ID: <1649129785.37.0.35405103854.issue47224@roundup.psfhosted.org> New submission from Takuo Matsuoka : Context ------- Some classes have the variable __name__ in their namespace __dict__ , and one may wish to create more such classes with varied values of __name__ . Some of those could be created with a metaclass whose __prepare__ returns a mapping having key "__name__", for which the value is created depending on the arguments of __prepare__ and can be updated or deleted in the body of the class to be created. (See C below for a very silly example of such a metaclass.) Problem ------- The value of __name__ given by __prepare__ becomes not just that in the class body, but automatically also the value of __module__ there. As far as I could see, this is not documented, and the programmer might not notice __module__ was messed up. I think this behaviour is unexpected and problematic at least unless a warning is given on it in the document. Example ------- Here's a code which produces a problem. ``` # In this example, the metaclass C is intended to be a class of # subclasses of: B = type class C(type(B)): @classmethod def __prepare__(cls, /, *args, **kwargs): return dict(__name__ = cls._name(*args, **kwargs)) @classmethod def _name(cls, /, *args, **kwargs): # The actual value of __name__ doesn't matter much to the # issue, so I make this function always return the same silly # thing in this example. return type.__dict__["__name__"] class O(B, metaclass=C): print(__module__ == __name__) # True # Could update or delete __name__ here. ``` Consequently, >>> O.__module__ Discussion ---------- If the value of __name__ can be read from the scope outside for the assignment to __module__, then that will erase this unexpected behaviour and I think it would be a much safer thing to do. Remarks ------- The issue was previously https://bugs.python.org/issue47136 which I'm going to close now since I failed to specify the issue clearly enough there. Here I've made the issue more specific. (The issue is same as https://bugs.python.org/issue47223 which I closed mistaking it with https://bugs.python.org/issue47136) The issue is different from but seems related to https://bugs.python.org/issue28869 I haven't figured out the exact relation. Thanks. ---------- components: Interpreter Core messages: 416741 nosy: Takuo Matsuoka priority: normal severity: normal status: open title: The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass type: behavior versions: Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:38:32 2022 From: report at bugs.python.org (Takuo Matsuoka) Date: Tue, 05 Apr 2022 03:38:32 +0000 Subject: [issue47223] (closed mistakingly, see the next issue) The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass In-Reply-To: <1649129042.58.0.0645536358983.issue47223@roundup.psfhosted.org> Message-ID: <1649129912.53.0.521928724638.issue47223@roundup.psfhosted.org> Takuo Matsuoka added the comment: It can't be moved backed to unresolved this way. I close this one now. ---------- resolution: -> duplicate status: open -> closed title: The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass -> (closed mistakingly, see the next issue) The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:39:23 2022 From: report at bugs.python.org (Takuo Matsuoka) Date: Tue, 05 Apr 2022 03:39:23 +0000 Subject: [issue47136] Wrong value assigned automatically to the variable __module__ in the class body. In-Reply-To: <1648379876.09.0.993153417089.issue47136@roundup.psfhosted.org> Message-ID: <1649129963.95.0.182789661656.issue47136@roundup.psfhosted.org> Takuo Matsuoka added the comment: I'm going to close this one since I failed to specify the issue clearly enough. See https://bugs.python.org/issue47224 for a more specific issue. ---------- resolution: -> duplicate stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:50:39 2022 From: report at bugs.python.org (Ethan Furman) Date: Tue, 05 Apr 2022 03:50:39 +0000 Subject: [issue47224] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass In-Reply-To: <1649129785.37.0.35405103854.issue47224@roundup.psfhosted.org> Message-ID: <1649130639.17.0.518587646846.issue47224@roundup.psfhosted.org> Ethan Furman added the comment: Stop creating new issues for the same problem. If you didn't specify the first issue well enough, add your specifics to it and continue that conversation. Splitting the thoughts and feedback across multiple issues is not efficient. Closing this issue, reopening the original (issue47136). ---------- nosy: +ethan.furman resolution: -> duplicate stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:51:41 2022 From: report at bugs.python.org (Ethan Furman) Date: Tue, 05 Apr 2022 03:51:41 +0000 Subject: [issue47136] Wrong value assigned automatically to the variable __module__ in the class body. In-Reply-To: <1648379876.09.0.993153417089.issue47136@roundup.psfhosted.org> Message-ID: <1649130701.35.0.218826933403.issue47136@roundup.psfhosted.org> Ethan Furman added the comment: issue47223 and issue47224 closed, reopening this one. ---------- nosy: +ethan.furman resolution: duplicate -> stage: resolved -> status: closed -> open _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Apr 4 23:52:38 2022 From: report at bugs.python.org (Ethan Furman) Date: Tue, 05 Apr 2022 03:52:38 +0000 Subject: [issue47136] Wrong value assigned automatically to the variable __module__ in the class body. In-Reply-To: <1648379876.09.0.993153417089.issue47136@roundup.psfhosted.org> Message-ID: <1649130758.99.0.288249805923.issue47136@roundup.psfhosted.org> Ethan Furman added the comment: Takuo, please give us an example from real code so we can see the problem. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 00:08:15 2022 From: report at bugs.python.org (Ned Deily) Date: Tue, 05 Apr 2022 04:08:15 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1649131695.71.0.376231869514.issue45847@roundup.psfhosted.org> Change by Ned Deily : ---------- pull_requests: +30387 pull_request: https://github.com/python/cpython/pull/32328 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 00:26:39 2022 From: report at bugs.python.org (Ma Lin) Date: Tue, 05 Apr 2022 04:26:39 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649132799.21.0.654613086244.issue47152@roundup.psfhosted.org> Ma Lin added the comment: > cryptic name In very early versions, "mark" was called register/region. https://github.com/python/cpython/blob/v1.0.1/Modules/regexpr.h#L48-L52 If span is accessed repeatedly, it's faster than Match.span(). Maybe consider renaming it, and make it as public attribute. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 00:30:24 2022 From: report at bugs.python.org (Prem B. Shah) Date: Tue, 05 Apr 2022 04:30:24 +0000 Subject: [issue47225] Issue in subtraction of float numbers Message-ID: <1649133024.48.0.931607557549.issue47225@roundup.psfhosted.org> New submission from Prem B. Shah : There is an issue when subtracting float numbers ... for e.g. print (5.67 - 5.6) gives an output : 0.07000000000000028 ---------- components: Windows messages: 416748 nosy: MrPhenomenal3110, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Issue in subtraction of float numbers versions: Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 00:33:27 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 05 Apr 2022 04:33:27 +0000 Subject: [issue44090] Add class binding to unbound super objects for allowing autosuper with class methods In-Reply-To: <1620579731.61.0.112222809206.issue44090@roundup.psfhosted.org> Message-ID: <1649133207.55.0.863087439062.issue44090@roundup.psfhosted.org> Raymond Hettinger added the comment: > any objections before I propose the removal of one-argument super? AFAICT there is nothing to be gained by deprecating the one argument form. Because it has been stable API for two decades, removing it is guaranteed to cause some disruption. So why bother? Anthony Sottile provided this search to showing that at least a few popular projects are using the one argument form of super(): https://sourcegraph.com/search?q=context:global+%5Cbsuper%5C%28%5B%5E%2C%5C%28%5C%29%5Cn%5D%2B%5C%29+file:.py%24&patternType=regexp&case=yes ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 00:46:18 2022 From: report at bugs.python.org (Ned Deily) Date: Tue, 05 Apr 2022 04:46:18 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1649133978.82.0.39749731227.issue45847@roundup.psfhosted.org> Ned Deily added the comment: New changeset a0c700480b52dffab830d52e9c4eba15d4b57a89 by Ned Deily in branch 'main': bpo-45847: Adapt macOS installer build to use new tkinter configure vars (GH-32328) https://github.com/python/cpython/commit/a0c700480b52dffab830d52e9c4eba15d4b57a89 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 00:48:03 2022 From: report at bugs.python.org (Anthony Sottile) Date: Tue, 05 Apr 2022 04:48:03 +0000 Subject: [issue45847] Port module setup to PY_STDLIB_MOD() macro and addext() In-Reply-To: <1637340990.31.0.170272925457.issue45847@roundup.psfhosted.org> Message-ID: <1649134083.91.0.767754897052.issue45847@roundup.psfhosted.org> Change by Anthony Sottile : ---------- nosy: -Anthony Sottile _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 01:00:45 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 05 Apr 2022 05:00:45 +0000 Subject: [issue47225] Issue in subtraction of float numbers In-Reply-To: <1649133024.48.0.931607557549.issue47225@roundup.psfhosted.org> Message-ID: <1649134845.67.0.472798732292.issue47225@roundup.psfhosted.org> Raymond Hettinger added the comment: See https://docs.python.org/3/tutorial/floatingpoint.html ---------- nosy: +rhettinger resolution: -> wont fix stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 01:28:25 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 05:28:25 +0000 Subject: [issue45790] Inaccurate phrasing in extending/newtypes_tutorial In-Reply-To: <1636685753.29.0.246932963554.issue45790@roundup.psfhosted.org> Message-ID: <1649136505.06.0.441195842432.issue45790@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset d1fb16ae286795abe3e9da86332c891b4b18826f by Jelle Zijlstra in branch '3.9': [3.9] bpo-45790: List macros in same order in which fields are described (GH-29529) (GH-32321) https://github.com/python/cpython/commit/d1fb16ae286795abe3e9da86332c891b4b18826f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 01:33:58 2022 From: report at bugs.python.org (Kaushal Sai v) Date: Tue, 05 Apr 2022 05:33:58 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error Message-ID: <1649136838.25.0.976572163759.issue47226@roundup.psfhosted.org> Change by Kaushal Sai v : ---------- nosy: vkaushalsai priority: normal severity: normal status: open title: if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 01:34:31 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 05 Apr 2022 05:34:31 +0000 Subject: [issue47220] Document the optional callback parameter of weakref.WeakMethod In-Reply-To: <1649106208.47.0.134371147726.issue47220@roundup.psfhosted.org> Message-ID: <1649136871.59.0.0146529578269.issue47220@roundup.psfhosted.org> Raymond Hettinger added the comment: Antoine, was the *callback* argument intended to be part of the public API? ---------- nosy: +pitrou, rhettinger _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 01:41:45 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Tue, 05 Apr 2022 05:41:45 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error Message-ID: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> New submission from Dennis Sweeney : What error message? ---------- nosy: +Dennis Sweeney _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 02:05:44 2022 From: report at bugs.python.org (Ned Deily) Date: Tue, 05 Apr 2022 06:05:44 +0000 Subject: [issue46890] getpath problems with framework build In-Reply-To: <1646151946.28.0.599042990928.issue46890@roundup.psfhosted.org> Message-ID: <1649138744.7.0.771949779745.issue46890@roundup.psfhosted.org> Ned Deily added the comment: New changeset 6aaf4cd866f7c8f065d30d2a3fb4fffa8461d1d8 by Ronald Oussoren in branch 'main': bpo-46890: Fix setting of sys._base_executable with framework builds on macOS (GH-31958) https://github.com/python/cpython/commit/6aaf4cd866f7c8f065d30d2a3fb4fffa8461d1d8 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 02:49:28 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 06:49:28 +0000 Subject: [issue47165] [C API] Test that the Python C API is compatible with C++ In-Reply-To: <1648649675.83.0.616089924769.issue47165@roundup.psfhosted.org> Message-ID: <1649141368.84.0.529187416916.issue47165@roundup.psfhosted.org> Gregory P. Smith added the comment: If we can conditionally test new things based on C++XX version, accumulating modern issue regression tests seems useful. Otherwise 11 at minimum. As for why some things trigger this and others don't, my wild _guess_ would be whether the statements appear within an extern "C" block. Though that's not really what that is for so it isn't clear to me. ---------- components: +Tests nosy: +gregory.p.smith stage: -> test needed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 02:51:42 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 06:51:42 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1649141502.21.0.533481382711.issue47185@roundup.psfhosted.org> Change by Gregory P. Smith : ---------- nosy: +gregory.p.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 02:59:30 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 06:59:30 +0000 Subject: [issue47164] [C API] Add private "CAST" macros to clean up casts in C code In-Reply-To: <1648643290.07.0.954478247887.issue47164@roundup.psfhosted.org> Message-ID: <1649141970.74.0.10976463423.issue47164@roundup.psfhosted.org> Change by Gregory P. Smith : ---------- nosy: +gregory.p.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 03:11:42 2022 From: report at bugs.python.org (Peter Lovett) Date: Tue, 05 Apr 2022 07:11:42 +0000 Subject: [issue12445] dict view values objects are missing tp_richcmp and tp_as_number In-Reply-To: <1309392190.89.0.80399053449.issue12445@psf.upfronthosting.co.za> Message-ID: <1649142702.84.0.325043287822.issue12445@roundup.psfhosted.org> Change by Peter Lovett : ---------- nosy: +PeterL777 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 03:20:35 2022 From: report at bugs.python.org (Julien Palard) Date: Tue, 05 Apr 2022 07:20:35 +0000 Subject: [issue42238] Deprecate suspicious.py? In-Reply-To: <1604274563.95.0.828690163802.issue42238@roundup.psfhosted.org> Message-ID: <1649143235.52.0.588711586349.issue42238@roundup.psfhosted.org> Change by Julien Palard : ---------- pull_requests: +30388 pull_request: https://github.com/python/cpython/pull/32329 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 03:23:29 2022 From: report at bugs.python.org (Kaushal Sai v) Date: Tue, 05 Apr 2022 07:23:29 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649143409.46.0.849783411717.issue47226@roundup.psfhosted.org> Change by Kaushal Sai v : ---------- status: open -> pending _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 03:24:56 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 07:24:56 +0000 Subject: [issue47139] pthread_sigmask needs SIG_BLOCK behaviour explaination In-Reply-To: <1648460882.85.0.215889211593.issue47139@roundup.psfhosted.org> Message-ID: <1649143496.08.0.867298107985.issue47139@roundup.psfhosted.org> Gregory P. Smith added the comment: The irony... Documenting the caveat at least seems useful. Your workaround sounds reasonable. I don't love the idea of implementing our own mask blocked/unblocked state check, though it probably wouldn't be very complicated. Might be interesting. Another trick that'd "work" so long as people don't have multiple SIG_BLOCK calls (not something to depend on) is to force a check of our interpreter signal flags right before signal.pthread_sigmask returns to the Python caller. ---------- nosy: +gregory.p.smith stage: -> needs patch type: -> behavior versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 03:27:02 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 07:27:02 +0000 Subject: [issue47153] __doc__ should generally be writable In-Reply-To: <1648575168.9.0.879509749563.issue47153@roundup.psfhosted.org> Message-ID: <1649143622.79.0.926989439145.issue47153@roundup.psfhosted.org> Change by Gregory P. Smith : ---------- nosy: +gregory.p.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 03:41:16 2022 From: report at bugs.python.org (Eryk Sun) Date: Tue, 05 Apr 2022 07:41:16 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1649144476.85.0.306086515513.issue47203@roundup.psfhosted.org> Eryk Sun added the comment: There is something fundamentally wrong with the way modules built into the interpreter DLL (python3x.dll) are loaded if anything in sys.path or the system PATH can cause an import to fail. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 03:57:50 2022 From: report at bugs.python.org (Julien Palard) Date: Tue, 05 Apr 2022 07:57:50 +0000 Subject: [issue42238] Deprecate suspicious.py? In-Reply-To: <1604274563.95.0.828690163802.issue42238@roundup.psfhosted.org> Message-ID: <1649145470.42.0.0675848224971.issue42238@roundup.psfhosted.org> Julien Palard added the comment: New changeset d0e696e05d4aaca1f1cde72a5c3326ca3d0f5c24 by Julien Palard in branch 'main': bpo-42238: [doc]: A make sucpicious false positive. (GH-32329) https://github.com/python/cpython/commit/d0e696e05d4aaca1f1cde72a5c3326ca3d0f5c24 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 03:58:04 2022 From: report at bugs.python.org (Stanley) Date: Tue, 05 Apr 2022 07:58:04 +0000 Subject: [issue47207] Switch datetime docstrings / documentation to using "Returns" rather than "Return"? In-Reply-To: <1649002105.09.0.287178375758.issue47207@roundup.psfhosted.org> Message-ID: <1649145484.32.0.775961793852.issue47207@roundup.psfhosted.org> Stanley added the comment: Is there a bpo page or some sort that discusses why the imperative mood is used over the indicative mood other than convention of PEP 257? I found this (https://mail.python.org/pipermail/tutor/2012-May/089584.html) question and answer that seems to make sense, but it's not quite an official source. If the reason for using imperative mood in docstrings doesn't apply to documentation, then I think there wouldn't be any problems in changing it. One thing raised in the mail thread was that 'Returns ...' isn't strictly grammatical, so perhaps that's something to consider. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 04:10:39 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Tue, 05 Apr 2022 08:10:39 +0000 Subject: [issue47152] Reorganize the re module sources In-Reply-To: <1648569272.18.0.653641722475.issue47152@roundup.psfhosted.org> Message-ID: <1649146239.52.0.135359458989.issue47152@roundup.psfhosted.org> Serhiy Storchaka added the comment: See issue47211 for removing re.TEMPLATE. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 04:42:26 2022 From: report at bugs.python.org (Irit Katriel) Date: Tue, 05 Apr 2022 08:42:26 +0000 Subject: [issue28951] re.flags not documented in Module Contents as promised. In-Reply-To: <1481569048.46.0.00215126822864.issue28951@psf.upfronthosting.co.za> Message-ID: <1649148146.32.0.0424049766627.issue28951@roundup.psfhosted.org> Change by Irit Katriel : ---------- keywords: +easy versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 05:15:56 2022 From: report at bugs.python.org (Julien Palard) Date: Tue, 05 Apr 2022 09:15:56 +0000 Subject: [issue21956] Doc files deleted from repo are not deleted from docs.python.org. In-Reply-To: <1405084031.97.0.312909906567.issue21956@psf.upfronthosting.co.za> Message-ID: <1649150156.72.0.036787005169.issue21956@roundup.psfhosted.org> Julien Palard added the comment: This is resolved since https://github.com/python/docsbuild-scripts/pull/28. It could still happen in very specific conditions, but not for a long time, see: https://github.com/python/docs-community/issues/41#issuecomment-1088462199= ---------- nosy: +mdk resolution: -> fixed stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 05:21:39 2022 From: report at bugs.python.org (Christian Heimes) Date: Tue, 05 Apr 2022 09:21:39 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649150499.29.0.0867631419018.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 96e09837fb8031aebe8d823dd19ef664a34bcfad by Christian Heimes in branch 'main': bpo-40280: Add limited Emscripten REPL (GH-32284) https://github.com/python/cpython/commit/96e09837fb8031aebe8d823dd19ef664a34bcfad ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 05:31:13 2022 From: report at bugs.python.org (Stanley) Date: Tue, 05 Apr 2022 09:31:13 +0000 Subject: [issue44158] Clarify documentation for redirected stdout/stderr when using subprocess in Linux In-Reply-To: <1621280760.31.0.799968756172.issue44158@roundup.psfhosted.org> Message-ID: <1649151073.9.0.766215743766.issue44158@roundup.psfhosted.org> Stanley added the comment: Hmm, I'm not quite following - when you say that the subproccess-ed command should also inherit the redirection, which subprocess command are you referring to, and nested or unnested? I gave it a ran and everything seems to run how I'd expected it, so maybe put another way, what's the expected output from the files and stdout/stderr? ---------- nosy: +slateny _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 05:41:04 2022 From: report at bugs.python.org (Stanley) Date: Tue, 05 Apr 2022 09:41:04 +0000 Subject: [issue46168] Incorrect format specified for the "style" key in the configuration file format formatter example In-Reply-To: <1640293086.43.0.363469814409.issue46168@roundup.psfhosted.org> Message-ID: <1649151664.05.0.658496806395.issue46168@roundup.psfhosted.org> Stanley added the comment: Samriddhi, are you still working on this? ---------- nosy: +slateny _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 06:18:53 2022 From: report at bugs.python.org (Mark Shannon) Date: Tue, 05 Apr 2022 10:18:53 +0000 Subject: [issue47009] Streamline list.append for the common case In-Reply-To: <1647233858.4.0.304324509353.issue47009@roundup.psfhosted.org> Message-ID: <1649153933.85.0.691947479723.issue47009@roundup.psfhosted.org> Mark Shannon added the comment: New changeset 6c6e0408a663c1f53dad403f54a18d444da39cb7 by Dennis Sweeney in branch 'main': bpo-47009: Let PRECALL_NO_KW_LIST_APPEND do its own POP_TOP (GH-32239) https://github.com/python/cpython/commit/6c6e0408a663c1f53dad403f54a18d444da39cb7 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 06:27:26 2022 From: report at bugs.python.org (adiboo adib) Date: Tue, 05 Apr 2022 10:27:26 +0000 Subject: [issue36207] robotsparser deny all with some rules In-Reply-To: <1551865321.24.0.407834320039.issue36207@roundup.psfhosted.org> Message-ID: <1649154446.72.0.749208668666.issue36207@roundup.psfhosted.org> adiboo adib added the comment: I can't find a documentation about it, but all of the robots.txt checkers I find behave like this. You can test on this site: https://www.st-info.fr/robots.txt, I believe that this is how it's implemented now in most parsers ? ---------- nosy: +adiboo67 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 06:40:34 2022 From: report at bugs.python.org (ripspin) Date: Tue, 05 Apr 2022 10:40:34 +0000 Subject: [issue47210] './configure --help' causes infinite loop In-Reply-To: <1649054951.07.0.0464700786493.issue47210@roundup.psfhosted.org> Message-ID: <1649155234.04.0.931748271063.issue47210@roundup.psfhosted.org> ripspin added the comment: Bug closed because I get the same loop with python-3.10.4 ---------- stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 07:04:35 2022 From: report at bugs.python.org (Takuo Matsuoka) Date: Tue, 05 Apr 2022 11:04:35 +0000 Subject: [issue47136] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass In-Reply-To: <1648379876.09.0.993153417089.issue47136@roundup.psfhosted.org> Message-ID: <1649156675.32.0.585034682716.issue47136@roundup.psfhosted.org> Takuo Matsuoka added the comment: Thank you Ethan for reopening this issue and closing the other one. Here is a description of a more specific issue, containing a more reasonable example. I've changed the title of the issue to a more appropriate one accordingly. Context ------- Some classes have the variable __name__ in their namespace __dict__ , and one may wish to create more such classes with varied values of __name__ . Some of those could be created with a metaclass whose __prepare__ returns a mapping having key "__name__", for which the value is created depending on the arguments of __prepare__ and can be updated or deleted in the body of the class to be created. (See C below for a very silly example of such a metaclass.) Problem ------- The value of __name__ given by __prepare__ becomes not just that in the class body, but automatically also the value of __module__ there. As far as I could see, this is not documented, and the programmer might not notice __module__ was messed up. I think this behaviour is unexpected and problematic at least unless a warning is given on it in the document. Also, the problem means we can't safely enjoy the ability of __prepare__ of a metaclass to give a candidate for the value of __name__ in __dict__ of the class without the trouble of fixing the variable __module__ later at the top of the class body for every instance of the metaclass (very annoying) somehow (or in __new__ or __init__ of the metaclass if __module__ is not to be read in the class body). Example ------- Here's a code which produces a problem. ``` # In this example, the metaclass C is intended to be a class of # subclasses of: B = type class C(type(B)): @classmethod def __prepare__(cls, /, *args, **kwargs): return dict(__name__ = cls._name(*args, **kwargs)) @classmethod def _name(cls, /, *args, **kwargs): # The actual value of __name__ doesn't matter much to the # issue, so I make this function always return the same silly # thing in this example. return type.__dict__["__name__"] class O(B, metaclass=C): print(__module__ == __name__) # True # Could update or delete __name__ here. ``` Consequently, >>> O.__module__ Thanks. P.S. The argument mentioning "the scope outside" in my earlier post here didn't make sense without specifying which scope. I still hope the problem can be fixed. ---------- title: Wrong value assigned automatically to the variable __module__ in the class body. -> The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 07:06:41 2022 From: report at bugs.python.org (Irit Katriel) Date: Tue, 05 Apr 2022 11:06:41 +0000 Subject: [issue47186] split JUMP_IF_NOT_EXC/EG_MATCH into CHECK_EXC/EG_MATCH + jump In-Reply-To: <1648813737.43.0.969911623865.issue47186@roundup.psfhosted.org> Message-ID: <1649156801.06.0.29360704228.issue47186@roundup.psfhosted.org> Irit Katriel added the comment: New changeset 32091df41ce6e3a71df2cf37dc74b728c0d885f2 by Irit Katriel in branch 'main': bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309) https://github.com/python/cpython/commit/32091df41ce6e3a71df2cf37dc74b728c0d885f2 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 07:11:01 2022 From: report at bugs.python.org (Irit Katriel) Date: Tue, 05 Apr 2022 11:11:01 +0000 Subject: [issue47186] split JUMP_IF_NOT_EXC/EG_MATCH into CHECK_EXC/EG_MATCH + jump In-Reply-To: <1648813737.43.0.969911623865.issue47186@roundup.psfhosted.org> Message-ID: <1649157061.09.0.00427259265236.issue47186@roundup.psfhosted.org> Change by Irit Katriel : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 07:21:38 2022 From: report at bugs.python.org (Alex Waygood) Date: Tue, 05 Apr 2022 11:21:38 +0000 Subject: [issue47050] Cannot install Python 3.10.3 on Windows In-Reply-To: <1647543105.33.0.65197408482.issue47050@roundup.psfhosted.org> Message-ID: <1649157698.06.0.220489713167.issue47050@roundup.psfhosted.org> Alex Waygood added the comment: (My solution for now has been to install python on my other laptop. Thanks for the help Steve!) ---------- stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 07:49:23 2022 From: report at bugs.python.org (Irit Katriel) Date: Tue, 05 Apr 2022 11:49:23 +0000 Subject: [issue47120] Make all jump opcodes relative In-Reply-To: <1648218653.94.0.580682403112.issue47120@roundup.psfhosted.org> Message-ID: <1649159363.27.0.391103887934.issue47120@roundup.psfhosted.org> Irit Katriel added the comment: New changeset 0aa8d5cbd89cf3b61d7e8626f3a7b9c4881dfd70 by Irit Katriel in branch 'main': bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221) https://github.com/python/cpython/commit/0aa8d5cbd89cf3b61d7e8626f3a7b9c4881dfd70 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 07:59:10 2022 From: report at bugs.python.org (=?utf-8?b?R8Opcnk=?=) Date: Tue, 05 Apr 2022 11:59:10 +0000 Subject: [issue44090] Add class binding to unbound super objects for allowing autosuper with class methods In-Reply-To: <1620579731.61.0.112222809206.issue44090@roundup.psfhosted.org> Message-ID: <1649159950.06.0.258022954086.issue44090@roundup.psfhosted.org> G?ry added the comment: > Anthony Sottile provided this search to showing that at least a few popular projects are using the one argument form of super(): Thanks for the link. But it gives lots of false positives. Only two popular projects (> 1k stars) use autosuper (urwid and evennia): https://sourcegraph.com/search?q=context:global+setattr%5C%28.*super%5C%28.*%5C%29%5C%29+file:%5C.py%24+-file:test.*%5C.py%24&patternType=regexp&case=yes The remaining projects use one-argument super incorrectly, as `super(cls).method()`, which looks up the method directly on class `super`: https://sourcegraph.com/search?q=context:global+content:%5B%5E_%5Dsuper%5C%28%5Cw%2B%5C%29%5B%5E:%5D+file:%5C.py%24+-file:test.*%5C.py%24&patternType=regexp&case=yes It is either a loud bug, which raises an `AttributeError`: ``` >>> class A: ... def f(self): pass ... >>> class B(A): ... def f(self): super(B).f() ... >>> B().f() Traceback (most recent call last): File "", line 1, in File "", line 2, in f AttributeError: 'super' object has no attribute 'f' ``` Or worse with `super(cls).__init__()` (99% of the cases), it is a SILENT bug, which call the constructor of class `super` instead of the parent constructor, leaving the object in an incompletely initialized state: ``` >>> class A: ... def __init__(self): print('hello') ... >>> class B(A): ... def __init__(self): super(B).__init__() ... >>> A() hello <__main__.A object at 0x10926e460> >>> B() <__main__.B object at 0x10926e520> ``` ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 08:24:48 2022 From: report at bugs.python.org (Christian Heimes) Date: Tue, 05 Apr 2022 12:24:48 +0000 Subject: [issue47009] Streamline list.append for the common case In-Reply-To: <1647233858.4.0.304324509353.issue47009@roundup.psfhosted.org> Message-ID: <1649161488.62.0.442724315095.issue47009@roundup.psfhosted.org> Change by Christian Heimes : ---------- nosy: +christian.heimes nosy_count: 3.0 -> 4.0 pull_requests: +30389 pull_request: https://github.com/python/cpython/pull/32332 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 08:41:51 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Tue, 05 Apr 2022 12:41:51 +0000 Subject: [issue47227] Suppress expression chaining for RE parsing errors Message-ID: <1649162511.96.0.951091623392.issue47227@roundup.psfhosted.org> New submission from Serhiy Storchaka : The EAFP principle is widely used in the regular expressions parsing code. Exceptions like KeyError, IndexError, ValueError or OverflowError raised during parsing are converted into a helpful re.error. Expression chaining is usually suppressed in such cases to hide unrelated implementation details, but not in all cases. The following PR adds more "from None" in "raise" statements inside "except" blocks. ---------- components: Library (Lib), Regular Expressions messages: 416774 nosy: ezio.melotti, mrabarnett, serhiy.storchaka priority: normal severity: normal status: open title: Suppress expression chaining for RE parsing errors type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 08:54:43 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Tue, 05 Apr 2022 12:54:43 +0000 Subject: [issue47227] Suppress expression chaining for RE parsing errors In-Reply-To: <1649162511.96.0.951091623392.issue47227@roundup.psfhosted.org> Message-ID: <1649163283.19.0.456825958381.issue47227@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- keywords: +patch pull_requests: +30390 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32333 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 08:54:55 2022 From: report at bugs.python.org (Christian Heimes) Date: Tue, 05 Apr 2022 12:54:55 +0000 Subject: [issue45774] Detect SQLite in configure.ac In-Reply-To: <1636496806.29.0.76332999648.issue45774@roundup.psfhosted.org> Message-ID: <1649163295.9.0.468610670272.issue45774@roundup.psfhosted.org> Christian Heimes added the comment: New changeset f1606a5ba50bdc4e7d335d62297b4b4043a25e6e by Erlend Egeberg Aasland in branch 'main': bpo-45774: Harden SQLite detection (GH-30016) https://github.com/python/cpython/commit/f1606a5ba50bdc4e7d335d62297b4b4043a25e6e ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 09:05:47 2022 From: report at bugs.python.org (Adam) Date: Tue, 05 Apr 2022 13:05:47 +0000 Subject: [issue41395] pickle and pickletools cli interface doesn't close input and output file. In-Reply-To: <1595686330.63.0.838691465271.issue41395@roundup.psfhosted.org> Message-ID: <1649163947.6.0.956832266092.issue41395@roundup.psfhosted.org> Adam added the comment: Hi, First-time contributor here, I've made a patch in follow-up to the discussions that happened in Amir's patch in regards to this. I'd appreciate it if someone would be able to take a look and review it! https://github.com/python/cpython/pull/32257 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 09:47:24 2022 From: report at bugs.python.org (Pablo Galindo Salgado) Date: Tue, 05 Apr 2022 13:47:24 +0000 Subject: [issue47212] Minor issues in reported Syntax errors In-Reply-To: <1649070115.81.0.636423654996.issue47212@roundup.psfhosted.org> Message-ID: <1649166444.13.0.00192476138604.issue47212@roundup.psfhosted.org> Pablo Galindo Salgado added the comment: New changeset aa0f056a00c4bcaef83d729e042359ddae903382 by Matthieu Dartiailh in branch 'main': bpo-47212: Improve error messages for un-parenthesized generator expressions (GH-32302) https://github.com/python/cpython/commit/aa0f056a00c4bcaef83d729e042359ddae903382 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 09:56:26 2022 From: report at bugs.python.org (Erlend E. Aasland) Date: Tue, 05 Apr 2022 13:56:26 +0000 Subject: [issue45774] Detect SQLite in configure.ac In-Reply-To: <1636496806.29.0.76332999648.issue45774@roundup.psfhosted.org> Message-ID: <1649166986.15.0.346902188593.issue45774@roundup.psfhosted.org> Change by Erlend E. Aasland : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:03:18 2022 From: report at bugs.python.org (Kaushal Sai v) Date: Tue, 05 Apr 2022 14:03:18 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649167398.42.0.311769517184.issue47226@roundup.psfhosted.org> Change by Kaushal Sai v : ---------- assignee: -> terry.reedy components: +IDLE nosy: +terry.reedy status: pending -> open versions: +Python 3.10 -Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:04:49 2022 From: report at bugs.python.org (Paul Ganssle) Date: Tue, 05 Apr 2022 14:04:49 +0000 Subject: =?utf-8?q?=5Bissue47228=5D_Document_that_na=C3=AFve_datetime_objects_repr?= =?utf-8?q?esent_local_time?= Message-ID: <1649167488.99.0.593176824045.issue47228@roundup.psfhosted.org> New submission from Paul Ganssle : Currently, the `datetime` documentation has this to say about na?ve datetimes: > A naive object does not contain enough information to unambiguously locate itself relative to other date/time objects. Whether a naive object represents Coordinated Universal Time (UTC), local time, or time in some other timezone is purely up to the program, just like it is up to the program whether a particular number represents metres, miles, or mass. Naive objects are easy to understand and to work with, at the cost of ignoring some aspects of reality. This was accurate in Python 2.7, but as of Python 3, the picture is a bit more nuanced. `.astimezone()` and `.timestamp()` work for na?ve datetimes, but they are treated as *system local times*. It is no longer really appropriate to use a na?ve datetime to a datetime in any specific concrete time zone ? instead, they should be considered either abstract datetimes for the purposes of calendar calculations, or they should be considered as representing the realization of that abstract datetime *in the current system locale*. This new behavior is referenced in, for example, the warning in `.utcnow()`: https://docs.python.org/3.10/library/datetime.html#datetime.datetime.utcnow We make reference to this in the documentation for `.timestamp()`: https://docs.python.org/3.10/library/datetime.html#datetime.datetime.timestamp and in `.astimezone()`: https://docs.python.org/3.10/library/datetime.html#datetime.datetime.astimezone, but the top level explanation makes no reference to it. I have written a blog post about *why* this is the case: https://blog.ganssle.io/articles/2022/04/naive-local-datetimes.html and made reference to this behavior in an earlier blog post about `utcnow`: https://blog.ganssle.io/articles/2019/11/utcnow.html, but I think it would be a good idea to revamp the official documentation to reflect this change in status (12 years or so after the change?) ---------- assignee: p-ganssle components: Documentation messages: 416778 nosy: belopolsky, p-ganssle priority: normal severity: normal stage: needs patch status: open title: Document that na?ve datetime objects represent local time type: enhancement versions: Python 3.10, Python 3.11, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:04:52 2022 From: report at bugs.python.org (Kaushal Sai v) Date: Tue, 05 Apr 2022 14:04:52 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649167492.83.0.472999575093.issue47226@roundup.psfhosted.org> Change by Kaushal Sai v : ---------- title: if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error -> if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:09:36 2022 From: report at bugs.python.org (Kaushal Sai v) Date: Tue, 05 Apr 2022 14:09:36 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649167776.82.0.476672503283.issue47226@roundup.psfhosted.org> Kaushal Sai v added the comment: the error mesessage is tha unexpected incident ---------- components: +Windows -IDLE nosy: +paul.moore, steve.dower, tim.golden, zach.ware _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:12:54 2022 From: report at bugs.python.org (Kaushal Sai v) Date: Tue, 05 Apr 2022 14:12:54 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649167974.77.0.402928957335.issue47226@roundup.psfhosted.org> Change by Kaushal Sai v : ---------- status: open -> pending _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:15:34 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 14:15:34 +0000 Subject: [issue41930] Wrap sqlite3_serialize API in sqlite3 module In-Reply-To: <1601813111.02.0.183059099502.issue41930@roundup.psfhosted.org> Message-ID: <1649168134.02.0.281714482416.issue41930@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset a7551247e7cb7010fb4735281f1afa4abeb8a9cc by Erlend Egeberg Aasland in branch 'main': bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728) https://github.com/python/cpython/commit/a7551247e7cb7010fb4735281f1afa4abeb8a9cc ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:16:10 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 14:16:10 +0000 Subject: [issue41930] Wrap sqlite3_serialize API in sqlite3 module In-Reply-To: <1601813111.02.0.183059099502.issue41930@roundup.psfhosted.org> Message-ID: <1649168170.06.0.221202003193.issue41930@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks, this will be in Python 3.11. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:16:48 2022 From: report at bugs.python.org (Kaushal Sai v) Date: Tue, 05 Apr 2022 14:16:48 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649168208.18.0.574950284077.issue47226@roundup.psfhosted.org> Change by Kaushal Sai v : ---------- status: pending -> open Added file: https://bugs.python.org/file50719/python problem.PNG _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:21:12 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 14:21:12 +0000 Subject: [issue47088] Implement PEP 675 (LiteralString) In-Reply-To: <1647897875.4.0.562368830483.issue47088@roundup.psfhosted.org> Message-ID: <1649168472.1.0.113513821341.issue47088@roundup.psfhosted.org> Jelle Zijlstra added the comment: New changeset cfb849a326e52a4edc577112ebf60e1d9d0d7fdb by Jelle Zijlstra in branch 'main': bpo-47088: Add typing.LiteralString (PEP 675) (GH-32064) https://github.com/python/cpython/commit/cfb849a326e52a4edc577112ebf60e1d9d0d7fdb ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:21:25 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 14:21:25 +0000 Subject: [issue47088] Implement PEP 675 (LiteralString) In-Reply-To: <1647897875.4.0.562368830483.issue47088@roundup.psfhosted.org> Message-ID: <1649168485.83.0.821959351741.issue47088@roundup.psfhosted.org> Change by Jelle Zijlstra : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:24:48 2022 From: report at bugs.python.org (Kaushal Sai v) Date: Tue, 05 Apr 2022 14:24:48 +0000 Subject: [issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649168688.85.0.45281287093.issue47226@roundup.psfhosted.org> Change by Kaushal Sai v : ---------- components: +IDLE _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:30:04 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Tue, 05 Apr 2022 14:30:04 +0000 Subject: [issue47226] Unexpected indent message In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649169004.71.0.553031186287.issue47226@roundup.psfhosted.org> Terry J. Reedy added the comment: " keys = pygame.key.get_pressed() is showing error called unexpected indent" The problem is that the keys line in indented one less space than the line above. A shorter example below. if True: a = 1 b = 2 SyntaxError: unindent does not match any outer indentation level This issue tracker is not a help forum. Next time, please post instead to something like python-list. Give a minimal snippet of code, like my example above, showing the problem and the complete error message. Also, copy and paste the error message instead of an image. Please read https://stackoverflow.com/help/minimal-reproducible-example about how to ask good questions. This is in no way an IDLE issue. ---------- resolution: -> not a bug stage: -> resolved status: open -> closed title: if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent -> Unexpected indent message _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:30:50 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Tue, 05 Apr 2022 14:30:50 +0000 Subject: [issue47226] Unexpected indent message In-Reply-To: <1649137305.75.0.991494816695.issue47226@roundup.psfhosted.org> Message-ID: <1649169050.61.0.232795263475.issue47226@roundup.psfhosted.org> Change by Terry J. Reedy : ---------- nosy: -paul.moore, steve.dower, terry.reedy, tim.golden, zach.ware _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:50:11 2022 From: report at bugs.python.org (Steve Dower) Date: Tue, 05 Apr 2022 14:50:11 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1649170211.84.0.746628166023.issue47203@roundup.psfhosted.org> Steve Dower added the comment: > There is something fundamentally wrong with the way modules built into the interpreter DLL (python3x.dll) are loaded if anything in sys.path or the system PATH can cause an import to fail. Probably there was also shadowing involved, since the built-in module doesn't try to load anything else. Would be nice to know for sure (@Matthew) to make sure we don't have some other issue here, but you're right, I don't see any way for this to happen without other causes. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 10:59:44 2022 From: report at bugs.python.org (Matthieu Dartiailh) Date: Tue, 05 Apr 2022 14:59:44 +0000 Subject: [issue47212] Minor issues in reported Syntax errors In-Reply-To: <1649070115.81.0.636423654996.issue47212@roundup.psfhosted.org> Message-ID: <1649170784.28.0.853629077257.issue47212@roundup.psfhosted.org> Change by Matthieu Dartiailh : ---------- pull_requests: +30391 pull_request: https://github.com/python/cpython/pull/32334 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 11:12:37 2022 From: report at bugs.python.org (Dong-hee Na) Date: Tue, 05 Apr 2022 15:12:37 +0000 Subject: [issue42012] typing support in wsgiref In-Reply-To: <1602497829.72.0.629140964099.issue42012@roundup.psfhosted.org> Message-ID: <1649171557.02.0.99565225798.issue42012@roundup.psfhosted.org> Change by Dong-hee Na : ---------- nosy: +corona10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 11:15:15 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 15:15:15 +0000 Subject: [issue46607] Add DeprecationWarning to configparser's LegacyInterpolation In-Reply-To: <1643785269.24.0.226402381238.issue46607@roundup.psfhosted.org> Message-ID: <1649171715.86.0.140477516662.issue46607@roundup.psfhosted.org> Gregory P. Smith added the comment: New changeset 75280944e5ca957eec7f814b9d0608fc84fc5811 by Hugo van Kemenade in branch 'main': bpo-46607: Add DeprecationWarning for LegacyInterpolation, deprecated in docs since 3.2 (GH-30927) https://github.com/python/cpython/commit/75280944e5ca957eec7f814b9d0608fc84fc5811 ---------- nosy: +gregory.p.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 11:22:18 2022 From: report at bugs.python.org (Sebastian Rittau) Date: Tue, 05 Apr 2022 15:22:18 +0000 Subject: [issue42012] typing support in wsgiref In-Reply-To: <1602497829.72.0.629140964099.issue42012@roundup.psfhosted.org> Message-ID: <1649172138.76.0.66436338735.issue42012@roundup.psfhosted.org> Change by Sebastian Rittau : ---------- keywords: +patch pull_requests: +30392 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32335 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 12:18:11 2022 From: report at bugs.python.org (Christian Heimes) Date: Tue, 05 Apr 2022 16:18:11 +0000 Subject: [issue47009] Streamline list.append for the common case In-Reply-To: <1647233858.4.0.304324509353.issue47009@roundup.psfhosted.org> Message-ID: <1649175491.49.0.671740215133.issue47009@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 9e88b572fb904b172f9e344069fb7118f1cee517 by Christian Heimes in branch 'main': bpo-47009: Fix assert on big endian (GH-32332) https://github.com/python/cpython/commit/9e88b572fb904b172f9e344069fb7118f1cee517 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 12:21:58 2022 From: report at bugs.python.org (miss-islington) Date: Tue, 05 Apr 2022 16:21:58 +0000 Subject: [issue47212] Minor issues in reported Syntax errors In-Reply-To: <1649070115.81.0.636423654996.issue47212@roundup.psfhosted.org> Message-ID: <1649175718.55.0.983589751812.issue47212@roundup.psfhosted.org> miss-islington added the comment: New changeset 94609e3192f15636c760a48c4c1c2c236fac3217 by Matthieu Dartiailh in branch '3.10': [3.10] Backport bpo-47212 (GH-32302) to Python 3.10 (GH-32334) https://github.com/python/cpython/commit/94609e3192f15636c760a48c4c1c2c236fac3217 ---------- nosy: +miss-islington _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 12:24:11 2022 From: report at bugs.python.org (Yann Droneaud) Date: Tue, 05 Apr 2022 16:24:11 +0000 Subject: [issue47027] subprocess.run(), subprocess.Popen() should accept file descriptor as cwd parameter In-Reply-To: <1647356154.7.0.125333178117.issue47027@roundup.psfhosted.org> Message-ID: <1649175851.06.0.198983628409.issue47027@roundup.psfhosted.org> Yann Droneaud added the comment: I looked at posixmodule: os.chdir() accepts a file descriptor. Maybe it can be possible to invoke it from _posixsubprocess.c instead of calling chdir(). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 12:29:53 2022 From: report at bugs.python.org (Alex Waygood) Date: Tue, 05 Apr 2022 16:29:53 +0000 Subject: [issue47212] Minor issues in reported Syntax errors In-Reply-To: <1649070115.81.0.636423654996.issue47212@roundup.psfhosted.org> Message-ID: <1649176193.35.0.705601870426.issue47212@roundup.psfhosted.org> Change by Alex Waygood : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 12:53:26 2022 From: report at bugs.python.org (Christian Heimes) Date: Tue, 05 Apr 2022 16:53:26 +0000 Subject: [issue17004] Expand zipimport to include other compression methods In-Reply-To: <1358707302.86.0.811743649739.issue17004@psf.upfronthosting.co.za> Message-ID: <1649177606.2.0.20498732862.issue17004@roundup.psfhosted.org> Change by Christian Heimes : ---------- versions: +Python 3.11 -Python 3.8 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 13:05:53 2022 From: report at bugs.python.org (Ethan Furman) Date: Tue, 05 Apr 2022 17:05:53 +0000 Subject: [issue47136] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass In-Reply-To: <1648379876.09.0.993153417089.issue47136@roundup.psfhosted.org> Message-ID: <1649178353.57.0.189025028.issue47136@roundup.psfhosted.org> Ethan Furman added the comment: You are using the same generic example -- it does show the issue you are concerned with, but offers no rational for why we should "fix" it -- in other words, we cannot tell if it's actually broken. Please provide an example of code you are actually using -- a trimmed down metaclass is fine, but it should show the kinds of names you are changing to, why you want to change the names, etc. Maybe this is a just a documentation issue, or maybe it's an overlooked case that should be supported in Python -- we cannot tell based solely on your generic example. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 13:19:04 2022 From: report at bugs.python.org (Doug Bates) Date: Tue, 05 Apr 2022 17:19:04 +0000 Subject: [issue47229] IDLE / Thonny UI crashes on Chromebook Linux/Bullseye Message-ID: <1649179144.58.0.96853130641.issue47229@roundup.psfhosted.org> New submission from Doug Bates : Having installed IDLE on Chromebbok/Linux Bullseye, on startup the UI crashes as soon as a menu item is selected. Also when trying to use Thonny. Other packages seem OK. Used to work fine under Buster, but not since fresh install to Bullseye. Apologies from my knowledge/skill level. ---------- assignee: terry.reedy components: IDLE files: Thonny crashes.txt messages: 416790 nosy: Coloneldare, terry.reedy priority: normal severity: normal status: open title: IDLE / Thonny UI crashes on Chromebook Linux/Bullseye type: crash Added file: https://bugs.python.org/file50720/Thonny crashes.txt _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 13:32:24 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 17:32:24 +0000 Subject: [issue47131] Speedup test_unparse In-Reply-To: <1648322149.94.0.511947690727.issue47131@roundup.psfhosted.org> Message-ID: <1649179944.02.0.201290022718.issue47131@roundup.psfhosted.org> Jeremy Kloth added the comment: Resolved with merged PR. ---------- resolution: -> fixed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 13:32:41 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 17:32:41 +0000 Subject: [issue47131] Speedup test_unparse In-Reply-To: <1648322149.94.0.511947690727.issue47131@roundup.psfhosted.org> Message-ID: <1649179961.74.0.818934667368.issue47131@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 13:38:36 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 17:38:36 +0000 Subject: [issue45354] test_winconsoleio fails on Windows 11 In-Reply-To: <1633272148.77.0.0556992237798.issue45354@roundup.psfhosted.org> Message-ID: <1649180316.21.0.531456054289.issue45354@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- resolution: -> fixed status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 13:45:26 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 17:45:26 +0000 Subject: [issue47230] New compiler warnings with latest zlib Message-ID: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> New submission from Jeremy Kloth : The latest zlib (1.2.12) introduces 3 new compiler warnings. Now being an external library, I do not think we generally patch them, so I propose to simply silence the warnings for the offending file. For reference, the problem comes from: --- deflate.h.old 2022-04-05 11:27:26.869042900 -0600 +++ deflate.h.new 2022-04-05 11:26:11.512039600 -0600 @@ -329,8 +329,8 @@ # define _tr_tally_dist(s, distance, length, flush) \ { uch len = (uch)(length); \ ush dist = (ush)(distance); \ - s->sym_buf[s->sym_next++] = dist; \ - s->sym_buf[s->sym_next++] = dist >> 8; \ + s->sym_buf[s->sym_next++] = (uch)dist; \ + s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \ s->sym_buf[s->sym_next++] = len; \ dist--; \ s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \ ---------- components: Build, Windows messages: 416792 nosy: jkloth, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: New compiler warnings with latest zlib type: compile error versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 13:47:25 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 17:47:25 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649180845.24.0.805858526903.issue47230@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- keywords: +patch pull_requests: +30393 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32337 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:15:20 2022 From: report at bugs.python.org (Chris Fernald) Date: Tue, 05 Apr 2022 18:15:20 +0000 Subject: [issue47231] TarFile.getmember cannot work on tar sourced directory over 100 characters Message-ID: <1649182520.6.0.880858034818.issue47231@roundup.psfhosted.org> New submission from Chris Fernald : A fix was made to unify handling of the trailing slash in TarFile.getmember related to https://bugs.python.org/issue21987. This change fixed the <100 character case, but made it so directories over 100 character which come from a tar file can no longer be accessed through getmember, even if returned from getnames. This appears to be because internal to tarfile, member names still include the trailing slash on directories over 100 characters but getmember will always remove the trailing slash from the provided name so the comparison will always fail. A simple example of this is as follows using 3.10.4. 1. Download: https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu.tar.xz 2. place attached python script in same directory 3. run on 3.8.2 -> fails to get stripped version of path (line 16) 4. run on 3.10.4 -> fails to get even unstripped version (line 12 & 16) ---------- components: Library (Lib) files: tarfile_repro.py messages: 416793 nosy: cfernald, serhiy.storchaka priority: normal severity: normal status: open title: TarFile.getmember cannot work on tar sourced directory over 100 characters type: behavior versions: Python 3.10, Python 3.11, Python 3.9 Added file: https://bugs.python.org/file50721/tarfile_repro.py _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:18:30 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 18:18:30 +0000 Subject: [issue47139] pthread_sigmask needs SIG_BLOCK behaviour explaination In-Reply-To: <1648460882.85.0.215889211593.issue47139@roundup.psfhosted.org> Message-ID: <1649182710.81.0.435385478429.issue47139@roundup.psfhosted.org> Gregory P. Smith added the comment: The "trick" wouldn't be too useful though as this API can't block and the signal flag needs to be processed on the main thread. So I guess documentation it is. The way I think of this is that the signal.pthread_sigmask API is pretty low level. After that API is called, no more signals will _reach the process_, but the interpreter may process some that happened beforehand. So installing a handler is indeed appropriate. Also, it is entirely possible for C extension modules or code embedding Python to call pthread_sigmask in its own threads outside of the Python runtimes knowledge. So we us tracking what signals are blocked on our own may not be accurate. We could instead change the eval loop signal processing code to call `pthread_sigmask(SIG_UNBLOCK, NULL /* set */, &oldset);` to retrieve the processes current mask to decide if the flagged signals should be processed by Python or not. BUT... I can imagine complex race cases where that'd surprise people who are chaining multiple signal handlers such as one from outside of Python that saved the Python handler and calls it afterwards. Their C/process-level handler would be called, would chain to Python's "record that signal X happened and set the bit" handler, but Python wouldn't then be guaranteed to call the Python handler code if the sigmask changed before the eval loop did its pending signal check. So I'm still inclined to keep this simple and stick with just documenting best practices for now. An implementation of masking from the python eval handler may need to be something conditionally controllable for differing application situations if added. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:20:56 2022 From: report at bugs.python.org (Irit Katriel) Date: Tue, 05 Apr 2022 18:20:56 +0000 Subject: [issue28540] math.degrees(sys.float_info.max) should throw an OverflowError exception In-Reply-To: <1477517141.8.0.311598434825.issue28540@psf.upfronthosting.co.za> Message-ID: <1649182856.44.0.252468767716.issue28540@roundup.psfhosted.org> Change by Irit Katriel : ---------- keywords: +easy -patch type: -> enhancement versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:21:12 2022 From: report at bugs.python.org (Matthew Rahtz) Date: Tue, 05 Apr 2022 18:21:12 +0000 Subject: [issue47006] PEP 646: Decide on substitution behavior In-Reply-To: <1647204376.33.0.359883240304.issue47006@roundup.psfhosted.org> Message-ID: <1649182872.41.0.0612090921214.issue47006@roundup.psfhosted.org> Matthew Rahtz added the comment: [Guido] > 1. Some edge case seems to be that if *tuple[...] is involved on either side we will never simplify. Alright, let me think this through with some examples to get my head round it. It would prohibit the following difficult case: class C(Generic[*Ts]): ... Alias = C[T, *Ts] Alias[*tuple[int, ...]] # Does not simplify; stays C[T, *Ts][*tuple[int, ...]] That seems pretty reasonable. It would also prohibit these other relatively simple cases, but I guess that's fine: Alias = C[*Ts] Alias[*tuple[int, ...]] # Does not simplify; stays C[*Ts][*tuple[int, ...]] Alias = C[T, *tuple[int, ...]] Alias[str] # Does not simplify; stays C[T, *tuple[int, ...]][str] > Or perhaps a better rule is that *tuple[...] is never simplified away (but fixed items before and after it may be). Is this to say that we effectively prohibit binding *tuple[...] to anything? If we can simplify without binding *tuple[...] to anything, then we do simplify, but otherwise, we don't simplify? So under this rule, the following WOULD work? Alias = C[T, *tuple[int, ...]] Alias[str] # Simplifies to C[str, *tuple[int, ...]], because we didn't have to bind *tuple[int, ...] to do it > 2. Another edge case is that if neither side has any starred items we will always simplify (since this is the existing behavior in 3.10). This may raise an error if the number of subscripts on the right does not match the number of parameters on the left. Alright, so this is business as usual. > 3. If there's a single *Ts on the left but not on the right, we should be able to simplify, which again may raise an error if there are not enough values on the right, but if there are more than enough, the excess will be consumed by *Ts (in fact that's the only way *Ts is fed). So then: class C(Generic[*Ts]): ... Alias = C[T, *Ts] Alias[()] # Raises error Alias[int] # Simplifies to C[int, *Ts] Alias[int, str] # Simplifies to C[int, str] Alias[int, str, bool] # Simplifies to C[int, str, bool] Yup, seems straightforward. > 4. If there's a *Ts on the right but not on the left, we should _not_ simplify, since whatever we have on the left serves as a constraint for *Ts. Ok, so this is about the following situations: class C(Generic[*Ts]): ... Alias = C[T1, T2] Alias[*Ts] # Does not simplify; stays C[T1, T2][*Ts] Yikes - in fact, this is actually super hairy; I hadn't thought about this edge case at all in the PEP. Agreed that it seems reasonable not to simplify here. > E.g. tuple[int, int][*Ts] constrains *Ts to being (int, int). Was that a typo? Surely tuple[int, int][*Ts] isn't valid - since tuple[int, int] doesn't have any free parameters? > 5. If there's exactly one *Ts on the left and one on the right, we _might__ be able to simplify if the prefix and suffix of the __parameters__ match the prefix and suffix of the subscript on the right. E.g. C[int, T, *Ts, float][str, *Ts] can be simplified to C[int, str, *Ts, float]. OTOH C[int, T, *Ts, float][*Ts] cannot be simplified -- but we cannot flag it as an error either. Note that __parameters__ in this example is (T, Ts); we have to assume that typevartuples in __parameters__ are always used as *Ts (since the PEP recognizes no valid unstarred uses of Ts). Ok, this also makes sense. --- Still, though, doesn't the point that Serhiy brought up about __origin__, __parameters__ and __args__ still apply? In cases where we *don't* simplify, there'd still be the issue of what we'd set these things to be. This evening I'll also revisit the PRs adding tests for substitution to try and make them a comprehensive reference as to what's currently possible. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:24:17 2022 From: report at bugs.python.org (Ethan Furman) Date: Tue, 05 Apr 2022 18:24:17 +0000 Subject: [issue47231] TarFile.getmember cannot work on tar sourced directory over 100 characters In-Reply-To: <1649182520.6.0.880858034818.issue47231@roundup.psfhosted.org> Message-ID: <1649183057.0.0.171061044201.issue47231@roundup.psfhosted.org> Ethan Furman added the comment: Nosied others from issue21987. ---------- nosy: +andrei.avk, ethan.furman, r.david.murray, vstinner _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:26:10 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 18:26:10 +0000 Subject: [issue46576] test_peg_generator is extremely slow In-Reply-To: <1643488302.33.0.475443222477.issue46576@roundup.psfhosted.org> Message-ID: <1649183170.84.0.926481723964.issue46576@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- nosy: +jkloth nosy_count: 3.0 -> 4.0 pull_requests: +30394 pull_request: https://github.com/python/cpython/pull/32338 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:28:06 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 18:28:06 +0000 Subject: [issue46576] test_peg_generator is extremely slow In-Reply-To: <1643488302.33.0.475443222477.issue46576@roundup.psfhosted.org> Message-ID: <1649183286.46.0.318114696628.issue46576@roundup.psfhosted.org> Jeremy Kloth added the comment: My PR-32338 further reduces the runtime of the test another ~25%. On my machine, before 85s, after 65s. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:35:17 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 05 Apr 2022 18:35:17 +0000 Subject: [issue28540] math.degrees(sys.float_info.max) should throw an OverflowError exception In-Reply-To: <1477517141.8.0.311598434825.issue28540@psf.upfronthosting.co.za> Message-ID: <1649183717.81.0.772796028469.issue28540@roundup.psfhosted.org> Raymond Hettinger added the comment: I'm not interested in having this move forward. AFAICT it doesn't solve any known user problems (no one has cared about this before or since this issue was opened). It slightly slows the code. And it might break some existing code that wasn't previously a need to catch an OverflowError. Marking this as closed. If someone thinks this is really needed, feel free to reopen. ---------- resolution: -> wont fix stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:41:17 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 05 Apr 2022 18:41:17 +0000 Subject: [issue28540] math.degrees(sys.float_info.max) should throw an OverflowError exception In-Reply-To: <1477517141.8.0.311598434825.issue28540@psf.upfronthosting.co.za> Message-ID: <1649184077.16.0.900155084296.issue28540@roundup.psfhosted.org> Raymond Hettinger added the comment: One other thought. The mental model for degrees() is just a simple scaling operation. If done in pure Python, we would get *inf* rather than an OverflowError. I don't see any value in breaking with the obvious substitution: >>> sys.float_info.max * (180 / pi) inf ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:41:25 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 05 Apr 2022 18:41:25 +0000 Subject: [issue28540] math.degrees(sys.float_info.max) should throw an OverflowError exception In-Reply-To: <1477517141.8.0.311598434825.issue28540@psf.upfronthosting.co.za> Message-ID: <1649184085.13.0.449045789903.issue28540@roundup.psfhosted.org> Change by Raymond Hettinger : ---------- assignee: -> rhettinger _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:41:41 2022 From: report at bugs.python.org (Ethan Furman) Date: Tue, 05 Apr 2022 18:41:41 +0000 Subject: [issue4833] Explicit directories for zipfiles In-Reply-To: <1231088968.72.0.101458538333.issue4833@psf.upfronthosting.co.za> Message-ID: <1649184101.66.0.608482636719.issue4833@roundup.psfhosted.org> Ethan Furman added the comment: New changeset 050a8f94c678a05d506fe192c863c4a572178c42 by Sam Ezeh in branch 'main': bpo-4833: Add ZipFile.mkdir (GH-32160) https://github.com/python/cpython/commit/050a8f94c678a05d506fe192c863c4a572178c42 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 14:51:32 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Tue, 05 Apr 2022 18:51:32 +0000 Subject: [issue47027] subprocess.run(), subprocess.Popen() should accept file descriptor as cwd parameter In-Reply-To: <1647356154.7.0.125333178117.issue47027@roundup.psfhosted.org> Message-ID: <1649184692.09.0.0682253012822.issue47027@roundup.psfhosted.org> Gregory P. Smith added the comment: this mostly requires plumbing to accept an int as the cwd and plumb that through to the between fork and exec code to call `fchdir(cwd_fd)` on the `int` instead of chdir(cwd) on the `char*`. the Modules/_posixsubprocess.c internals are a bit of a mess today with a bazillion parameters passed to internal functions which makes this a pain... I want to refactor things to use a struct and not need that, but adding this feature is doable regardless. ---------- components: +Extension Modules -Library (Lib) _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:03:30 2022 From: report at bugs.python.org (Steve Dower) Date: Tue, 05 Apr 2022 19:03:30 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649185410.42.0.364520589114.issue47230@roundup.psfhosted.org> Steve Dower added the comment: Do we need to backport this? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:03:40 2022 From: report at bugs.python.org (Steve Dower) Date: Tue, 05 Apr 2022 19:03:40 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649185420.34.0.661229978693.issue47230@roundup.psfhosted.org> Steve Dower added the comment: New changeset 944f09adfcc59f54432ac2947cf95f3465d90e1e by Jeremy Kloth in branch 'main': bpo-47230: Silence compiler warnings on Windows from zlib 1.2.12 (GH-32337) https://github.com/python/cpython/commit/944f09adfcc59f54432ac2947cf95f3465d90e1e ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:05:59 2022 From: report at bugs.python.org (Brett Cannon) Date: Tue, 05 Apr 2022 19:05:59 +0000 Subject: [issue47061] Deprecate modules listed in PEP 594 In-Reply-To: <1647632770.65.0.881581261318.issue47061@roundup.psfhosted.org> Message-ID: <1649185559.77.0.00921352162849.issue47061@roundup.psfhosted.org> Brett Cannon added the comment: New changeset c1d93b6411f975d67e43942f1a2745a22983c18c by Brett Cannon in branch 'main': bpo-47061: deprecate the `aifc` module (GH-32134) https://github.com/python/cpython/commit/c1d93b6411f975d67e43942f1a2745a22983c18c ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:08:49 2022 From: report at bugs.python.org (Sam Ezeh) Date: Tue, 05 Apr 2022 19:08:49 +0000 Subject: [issue47184] multiprocessing.set_start_method force argument is not documented In-Reply-To: <1648748540.61.0.562743506466.issue47184@roundup.psfhosted.org> Message-ID: <1649185729.75.0.784206149005.issue47184@roundup.psfhosted.org> Change by Sam Ezeh : ---------- keywords: +patch nosy: +sam_ezeh nosy_count: 2.0 -> 3.0 pull_requests: +30395 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32339 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:12:05 2022 From: report at bugs.python.org (Sam Ezeh) Date: Tue, 05 Apr 2022 19:12:05 +0000 Subject: [issue47184] multiprocessing.set_start_method force argument is not documented In-Reply-To: <1648748540.61.0.562743506466.issue47184@roundup.psfhosted.org> Message-ID: <1649185925.37.0.282885343805.issue47184@roundup.psfhosted.org> Sam Ezeh added the comment: It's quite weird, the documentation says set_start_method "should not be used more than once in the program" twice. The source code also contains the following line ``` # Type of default context -- underlying context can be set at most once ``` I'm not too familiar with the multiprocessing library but with the force parameter set to True, I don't understand why that can't happen. If there's a specific reason, maybe that should be documented too. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:14:16 2022 From: report at bugs.python.org (Mark Dickinson) Date: Tue, 05 Apr 2022 19:14:16 +0000 Subject: [issue28540] math.degrees(sys.float_info.max) should throw an OverflowError exception In-Reply-To: <1477517141.8.0.311598434825.issue28540@psf.upfronthosting.co.za> Message-ID: <1649186056.92.0.567893514661.issue28540@roundup.psfhosted.org> Mark Dickinson added the comment: FWIW, I do consider this a bug, albeit a minor one. I may find time to fix it at some point (but it's fine to leave it closed until that time comes). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:27:15 2022 From: report at bugs.python.org (Hood Chatham) Date: Tue, 05 Apr 2022 19:27:15 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten Message-ID: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> New submission from Hood Chatham : I am trying to build tot Python for Emscripten to test recent changes and having trouble. The problem is caused by recent changes since 3.11.0a6 to `sre`. I build a build Python 3.11 from tot, and provided it to `./configure --with-build-python=$(HOSTBUILDDIR)/python`. However, I still see invocations to the system Python 3.11 at `/usr/local/bin/python3.11`. The problem seems to be that the generated `Makefile` has a bunch of stuff collapsed into one line: ``` PYTHON_FOR_BUILD=_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) /src/cpython/build/Python-3.11.0dev0/builddir/build-host/python ``` manually fixing this to: ``` PYTHON_FOR_BUILD=/src/cpython/build/Python-3.11.0dev0/builddir/build-host/python _PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) ``` fixes the problem. My configure invocation is as follows: ``` ( \ cd $(BUILDDIR); \ CONFIG_SITE=./config.site-wasm32-emscripten emconfigure \ ../../configure \ --cache-file=$(ROOT)/python.config.cache \ CFLAGS="${PYTHON_CFLAGS}" \ CPPFLAGS="-I$(SQLITEBUILD) -I$(BZIP2BUILD) -I$(ZLIBBUILD)" \ PLATFORM_TRIPLET="$(PLATFORM_TRIPLET)" \ --with-build-python=$(HOSTBUILDDIR)/python \ --without-pymalloc \ --disable-shared \ --disable-ipv6 \ --enable-big-digits=30 \ --enable-optimizations \ --host=wasm32-unknown-emscripten\ --build=$(shell $(EXTRACTDIR)/config.guess) \ --prefix=$(INSTALL) \ ) ``` ---------- messages: 416807 nosy: christian.heimes, hoodchatham priority: normal severity: normal status: open title: Difficulties building tip of tree Python for emscripten _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:28:09 2022 From: report at bugs.python.org (Richard Purdie) Date: Tue, 05 Apr 2022 19:28:09 +0000 Subject: [issue47139] pthread_sigmask needs SIG_BLOCK behaviour explaination In-Reply-To: <1648460882.85.0.215889211593.issue47139@roundup.psfhosted.org> Message-ID: <1649186889.39.0.168924890074.issue47139@roundup.psfhosted.org> Richard Purdie added the comment: I think the python code implementing pthread_sigmask already does trigger interrupts if any have been queued before the function returns from blocking or unblocking. The key subtlety which I initially missed is that if you have another thread in your python script, any interrupt it receives can be raised in the main thread whilst you're in the SIGBLOCK section. This obviously isn't what you expect at all as those interrupts are supposed to be blocked! It isn't really practical to try and SIGBLOCK on all your individual threads. What I'd wondered is what you mention, specifically checking if a signal is masked in the python signal raising code with something like the "pthread_sigmask(SIG_UNBLOCK, NULL /* set */, &oldset)" before it raises it and if there is blocked, just leave it queued. The current code would trigger the interrupts when it was unmasked. This would effectively only apply on the main thread where all the signals/interrupts are raised. This would certainly give the behaviour that would be expected from the calls and save everyone implementing the workarounds as I have. Due to the threads issue, I'm not sure SIGBLOCK is actually useful in the real world with the current implementation unfortunately. Equally, if that isn't an acceptable fix, documenting it would definitely be good too. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:41:49 2022 From: report at bugs.python.org (pmp-p) Date: Tue, 05 Apr 2022 19:41:49 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten In-Reply-To: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> Message-ID: <1649187709.69.0.999723430666.issue47232@roundup.psfhosted.org> Change by pmp-p : ---------- nosy: +pmpp _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:44:11 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 19:44:11 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649187851.52.0.669899318278.issue47230@roundup.psfhosted.org> Jeremy Kloth added the comment: It seems so, as the zlib update was also backported to 3.9 and 3.10. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:47:25 2022 From: report at bugs.python.org (15r10nk) Date: Tue, 05 Apr 2022 19:47:25 +0000 Subject: [issue47233] show_caches option affects code positions reported by dis.get_instructions(...) Message-ID: <1649188044.95.0.306823001804.issue47233@roundup.psfhosted.org> New submission from 15r10nk <15r10nk-python-issues at polarbit.de>: The Instructions reported by dis.get_instructions(...) and dis.Bytecode(...) have different positions depending on the value of their show_caches argument. test2.py reproduces the problem. ---------- files: test2.py messages: 416810 nosy: 15r10nk priority: normal severity: normal status: open title: show_caches option affects code positions reported by dis.get_instructions(...) type: behavior versions: Python 3.11 Added file: https://bugs.python.org/file50722/test2.py _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:51:45 2022 From: report at bugs.python.org (Matthew) Date: Tue, 05 Apr 2022 19:51:45 +0000 Subject: [issue47203] ImportError: DLL load failed while importing binascii: %1 is not a valid Win32 application. In-Reply-To: <1648922999.22.0.805414990546.issue47203@roundup.psfhosted.org> Message-ID: <1649188305.05.0.26847415329.issue47203@roundup.psfhosted.org> Matthew added the comment: > Probably there was also shadowing involved, since the built-in module doesn't try to load anything else. Would be nice to know for sure (@Matthew) to make sure we don't have some other issue here, but you're right, I don't see any way for this to happen without other causes. I'm pretty sure the Python interpreter that was causing the issue was bundled with the MSYS2 Mingw64 compiler. I tried reproducing the bug, but I've recently reinstalled the compiler due to some issues I was having with it, and the bug with importing binascii is no longer present. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:56:58 2022 From: report at bugs.python.org (Matthew Rahtz) Date: Tue, 05 Apr 2022 19:56:58 +0000 Subject: [issue47006] PEP 646: Decide on substitution behavior In-Reply-To: <1647204376.33.0.359883240304.issue47006@roundup.psfhosted.org> Message-ID: <1649188618.1.0.885978344382.issue47006@roundup.psfhosted.org> Change by Matthew Rahtz : ---------- keywords: +patch pull_requests: +30396 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32341 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 15:58:40 2022 From: report at bugs.python.org (Hood Chatham) Date: Tue, 05 Apr 2022 19:58:40 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten In-Reply-To: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> Message-ID: <1649188720.08.0.44206026936.issue47232@roundup.psfhosted.org> Hood Chatham added the comment: Okay I found the problem. Elsewhere in my Makefiles `PYTHON_FOR_BUILD` was getting overwritten. ---------- stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 16:03:02 2022 From: report at bugs.python.org (Matthew Rahtz) Date: Tue, 05 Apr 2022 20:03:02 +0000 Subject: [issue47006] PEP 646: Decide on substitution behavior In-Reply-To: <1647204376.33.0.359883240304.issue47006@roundup.psfhosted.org> Message-ID: <1649188982.59.0.913314772969.issue47006@roundup.psfhosted.org> Matthew Rahtz added the comment: Ok, https://github.com/python/cpython/pull/32341/files is a reference of how the current implementation behaves. Fwiw, it *is* mostly correct - with a few minor tweaks it might be alright for at least the 3.11 release. In particular, instead of dealing with the thorny issue of what to do about splitting unpacked arbitrary-length tuples over multiple type variables - e.g. C[T, *Ts][*tuple[int, ...]] - instead either deciding to try and evaluate it properly and living with the complexity, or leaving it unsimplified and living with the __args__, __parameters__ and __origin__ problem - for now, we could just raise an exception for any substitutions which involve an unpacked arbitrary-length tuple, since I'd guess it's going to be an extremely rare use-case. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 16:26:08 2022 From: report at bugs.python.org (Thomas Fischbacher) Date: Tue, 05 Apr 2022 20:26:08 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation Message-ID: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> New submission from Thomas Fischbacher : Here is a major general problem with python-static-typing as it is described by PEP-484: The approach described in https://peps.python.org/pep-0484/#the-numeric-tower negatively impacts our ability to reason about the behavior of code with stringency. I would like to clarify one thing in advance: this is a real problem if we subscribe to some of the important ideas that Dijkstra articulated in his classic article "On the role of scientific thought" (e.g.: https://www.cs.utexas.edu/users/EWD/transcriptions/EWD04xx/EWD447.html). Specifically, this part: """ Let me try to explain to you, what to my taste is characteristic for all intelligent thinking. It is, that one is willing to study in depth an aspect of one's subject matter in isolation for the sake of its own consistency, all the time knowing that one is occupying oneself only with one of the aspects. We know that a program must be correct and we can study it from that viewpoint only; we also know that it should be efficient and we can study its efficiency on another day, so to speak. In another mood we may ask ourselves whether, and if so: why, the program is desirable. But nothing is gained ?on the contrary!? by tackling these various aspects simultaneously. It is what I sometimes have called "the separation of concerns", which, even if not perfectly possible, is yet the only available technique for effective ordering of one's thoughts, that I know of. This is what I mean by "focussing one's attention upon some aspect": it does not mean ignoring the other aspects, it is just doing justice to the fact that from this aspect's point of view, the other is irrelevant. It is being one- and multiple-track minded simultaneously. """ So, "code should be easy to reason about". Now, let us look at this function - I am here (mostly) following the Google Python style guide (https://google.github.io/styleguide/pyguide.html) for now: === Example 1, original form === def middle_mean(xs): """Compute the average of the nonterminal elements of `xs`. Args: `xs`: a list of floating point numbers. Returns: A float, the mean of the elements in `xs[1:-1]`. Raises: ValueError: If `len(xs) < 3`. """ if len(xs) < 3: raise ValueError('Need at least 3 elements to compute middle mean.') return sum(xs[1:-1]) / (len(xs) - 2) ====== Let's not discuss performance, or whether it makes sense to readily generalize this to operate on other sequences than lists, but focus, following Dijkstra, on one specific concern here: Guaranteed properties. Given the function as it is above, I can make statements that are found to be correct when reasoning with mathematical rigor, such as this specific one that we will come back to: === Theorem 1 === If we have an object X that satisfies these properties...: 1. type(X) is list 2. len(X) == 4 3. all(type(x) is float for x in X) ...then we are guaranteed that `middle_mean(X)` evaluates to a value Y which satisfies: - type(Y) is float - Y == (X[1] + X[2]) * 0.5 or math.isnan(Y) === Now, following PEP-484, we would want to re-write our function, adding type annotations. Doing this mechanically would give us: === Example 1, with mechanically added type information === def middle_mean(xs: List[float]) -> float: """Compute the average of the nonterminal elements of `xs`. Args: `xs`: a list of floating point numbers. Returns: A float, the mean of the elements in `xs[1:-1]`. Raises: ValueError: If `len(xs) < 3`. """ if len(xs) < 3: raise ValueError('Need at least 3 elements to compute middle mean.') return sum(xs[1:-1]) / (len(xs) - 2) ====== (We are also deliberately not discussing another question here: given this documentation and type annotation, should the callee be considered to be permitted to mutate the input list?) So, given the above form, we now find that there seems to be quite a bit of redundancy here. After all, we have the type annotation but also repeat some typing information in the docstring. Hence, the obvious proposal here is to re-write the above definition again, obtaining: === Example 1, "cleaned up" === def middle_mean(xs: List[float]) -> float: """Compute the average of the nonterminal elements of `xs`. Args: `xs`: numbers to average, with terminals ignored. Returns: The mean of the elements in `xs[1:-1]`. Raises: ValueError: If `len(xs) < 3`. """ if len(xs) < 3: raise ValueError('Need at least 3 elements to compute middle mean.') return sum(xs[1:-1]) / (len(xs) - 2) ====== But now, what does this change mean for the contract? Part of the "If arguments have these properties, then these are the guarantees" contract now is no longer spelled out by the docstring, but via type annotations. We naturally would expect this to be straightforward, so, we would like to have: === Theorem 1b === If we have an object X that satisfies these properties...: 1. Static type analysis tells us that X has the appropriate type for being passed into middle_mean(). 2. len(X) == 4 ...then we are guaranteed that `middle_mean(X)` evaluates to a value Y which satisfies: - Static type analysis can tell us that this value is a float - Y == (X[1] + X[2]) * 0.5 or math.isnan(Y) === ...but the actual situation is: a) This is not guaranteed. b) PEP-484 does not seem to leave us any option to amend the type annotation so that we can obtain a corresponding guarantee. Specifically, this Python3+ example breaks it - note that PEP-484 states that: "when an argument is annotated as having type float, an argument of type int is acceptable". >>> middle_mean([0.0, 1.25, 10**1000, 0.0]) Traceback (most recent call last): File "", line 1, in File "", line 15, in middle_mean OverflowError: int too large to convert to float So, even the "this function call evaluates to..." is violated here - it does not evaluate to anything, but raises an exception instead. One option to address this would be to stick with the code as in [Example 1, with mechanically added type information], but I would argue that it is highly confusing that `float` in the static type annotation and `float` in the docstring then refer to two very different concepts. This is certainly not desirable (and we should not expect Python practitioners to do it that way)! Now, while this may superficially look like a weird edge case, that is actually not so - the problem is that such mismatches in some situations "allow us to drive in a wedge" and create conditions where there is a deviation between actual and expected program behavior. This is a common starting point for writing exploits, as for example these classic articles nicely illustrate: "Smashing The Stack For Fun And Profit" (aleph1 at underground.org, Phrack #49) (E.g.: https://inst.eecs.berkeley.edu/~cs161/fa08/papers/stack_smashing.pdf) "Delivering Signals for Fun and Profit" (Michal Zalewski) (E.g.: https://lcamtuf.coredump.cx/signals.txt) CAPEC-71: Using Unicode Encoding to Bypass Validation Logic https://capec.mitre.org/data/definitions/71.html So, clearly, we want to not only maintain the ability to reason about the behavior of Python code with mathematical stringency, but also make this reasonably simple and straightforward. I would also argue that, given the popularity of Python as a CS education language, it matters that professors have a viable substrate for teaching the skill to stringently reason about the behavior of code. ---------- messages: 416814 nosy: tfish2 priority: normal severity: normal status: open title: PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 16:28:42 2022 From: report at bugs.python.org (Hood Chatham) Date: Tue, 05 Apr 2022 20:28:42 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten In-Reply-To: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> Message-ID: <1649190522.42.0.732497320549.issue47232@roundup.psfhosted.org> Hood Chatham added the comment: I take it back, I am still having this problem. ---------- status: closed -> open _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 16:39:10 2022 From: report at bugs.python.org (Christian Heimes) Date: Tue, 05 Apr 2022 20:39:10 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten In-Reply-To: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> Message-ID: <1649191150.07.0.857500000649.issue47232@roundup.psfhosted.org> Christian Heimes added the comment: Please attach config.log and Makefile from the builddir. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 16:52:43 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Tue, 05 Apr 2022 20:52:43 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation In-Reply-To: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> Message-ID: <1649191963.06.0.307787776087.issue47234@roundup.psfhosted.org> Jelle Zijlstra added the comment: Thanks for your report, but I would appreciate a more concise explanation. Let me try to rephrase the problem. Given this function: def mean(x: list[float]) -> float: return sum(x) / len(x) We want to provide a guarantee that if x is a nonempty list containing only floats, the function returns successfully and returns a float. But the type system currently doesn't give this guarantee, because PEP 484 specifies that ints are compatible with floats, and `mean([0.0, 1.25, 10**1000, 0.0])` will throw OverflowError. --- We generally discuss issues with the general type system over at https://github.com/python/typing/issues, but here are a few thoughts: - The type system doesn't generally try to cover exceptions. Your function could also raise MemoryError, or KeyboardInterrupt, and the type system can't tell you. - The concrete proposal here would be to make int no longer implicitly compatible with float. That might be nice, but at this point it would be a big break in backwards compatibility, so I'm not sure we can do it. ---------- nosy: +AlexWaygood, JelleZijlstra, gvanrossum, kj _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 17:07:53 2022 From: report at bugs.python.org (STINNER Victor) Date: Tue, 05 Apr 2022 21:07:53 +0000 Subject: [issue46850] [C API] Move _PyEval_EvalFrameDefault() to the internal C API In-Reply-To: <1645716984.87.0.22272006941.issue46850@roundup.psfhosted.org> Message-ID: <1649192873.26.0.205404170838.issue46850@roundup.psfhosted.org> Change by STINNER Victor : ---------- pull_requests: +30397 pull_request: https://github.com/python/cpython/pull/32343 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 17:08:52 2022 From: report at bugs.python.org (Philip Prindeville) Date: Tue, 05 Apr 2022 21:08:52 +0000 Subject: [issue47222] subprocess.Popen() should allow capturing output and sending it to stdout and stderr In-Reply-To: <1649112769.31.0.762771306668.issue47222@roundup.psfhosted.org> Message-ID: <1649192932.19.0.299846942297.issue47222@roundup.psfhosted.org> Change by Philip Prindeville : ---------- keywords: +patch pull_requests: +30398 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32344 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 17:15:03 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 05 Apr 2022 21:15:03 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation In-Reply-To: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> Message-ID: <1649193303.18.0.281127855851.issue47234@roundup.psfhosted.org> Raymond Hettinger added the comment: This is a partial duplicate of an issue you already filed: https://bugs.python.org/issue47121 where math.isfinite(10**1000) raises an OverflowError even though it type checks. Here was one of the comments: """ Types relationships are useful for verifying which methods are available, but they don't make promises about the range of valid values. For example math.sqrt(float) -> float promises which types are acceptable but doesn't promise that negative inputs won't raise an exception. Likewise, "n: int=10; len(range(n))" is type correct but will raise an OverflowError for "n = 10**100". """ ---------- nosy: +rhettinger _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 17:29:20 2022 From: report at bugs.python.org (Hood Chatham) Date: Tue, 05 Apr 2022 21:29:20 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten In-Reply-To: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> Message-ID: <1649194160.5.0.43249928962.issue47232@roundup.psfhosted.org> Hood Chatham added the comment: config.log is apparently 1.7 MB and when I try to upload I get "Error 413: Entity Too Large". I've attached the Makefile. ---------- Added file: https://bugs.python.org/file50723/Makefile _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 17:52:35 2022 From: report at bugs.python.org (Hood Chatham) Date: Tue, 05 Apr 2022 21:52:35 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten In-Reply-To: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> Message-ID: <1649195555.62.0.291738634195.issue47232@roundup.psfhosted.org> Hood Chatham added the comment: There is still a pretty good change I am making some dumb mistake. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 17:57:31 2022 From: report at bugs.python.org (Christian Heimes) Date: Tue, 05 Apr 2022 21:57:31 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten In-Reply-To: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> Message-ID: <1649195851.8.0.574251790609.issue47232@roundup.psfhosted.org> Christian Heimes added the comment: You are building a cross-build with "--with-build-python=/usr/local/bin/python3.11". Is the interpreter up to date? During alpha and beta phase, the build Python interpreter should be built from the exact same git commit as the sources in "../..". If the interpreter deviates from the sources in your srcdir, then Python byte code (.pyc), frozen byte code, and re engine can have mismatching magic. I recommend that you build inside an environment that does not have Python 3.11 installed. Instead build a build Python interpreter from the same checkout that you later use for cross-compilation. "./configure && make" is sufficient. You don't have to install the build interpreter. "--with-build-python=$(pwd)/../build/python" works fine. We use this approach in python-wasm: mkdir -p cpython/builddir/build pushd cpython/builddir/build ../../configure -C make -j$(nproc) popd mkdir -p cpython/builddir/emscripten-browser pushd cpython/builddir/emscripten-browser CONFIG_SITE=../../Tools/wasm/config.site-wasm32-emscripten \ emconfigure ../../configure -C \ --host=wasm32-unknown-emscripten \ --build=$(../../config.guess) \ --with-build-python=$(pwd)/../build/python emmake make -j$(nproc) It's going to get easier and less painful as soon as we reach beta phase. During beta the byte code will only change when it is required for a bug fix. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:06:10 2022 From: report at bugs.python.org (STINNER Victor) Date: Tue, 05 Apr 2022 22:06:10 +0000 Subject: [issue47231] TarFile.getmember cannot work on tar sourced directory over 100 characters In-Reply-To: <1649182520.6.0.880858034818.issue47231@roundup.psfhosted.org> Message-ID: <1649196370.42.0.317708146611.issue47231@roundup.psfhosted.org> Change by STINNER Victor : ---------- nosy: -vstinner _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:08:56 2022 From: report at bugs.python.org (STINNER Victor) Date: Tue, 05 Apr 2022 22:08:56 +0000 Subject: [issue46607] Add DeprecationWarning to configparser's LegacyInterpolation In-Reply-To: <1643785269.24.0.226402381238.issue46607@roundup.psfhosted.org> Message-ID: <1649196536.45.0.421038301011.issue46607@roundup.psfhosted.org> STINNER Victor added the comment: Thanks Hugo for the your contribution. I close the issue. > Searching the top 5,000 PyPI sdists, there's very little (if any "real") use of LegacyInterpolation. Details: https://bugs.python.org/issue45173#msg409685 You can offer them a PR to avoid the deprecated API, or at least notify them by creating an issue that this API is deprecated in Python 3.11. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:15:37 2022 From: report at bugs.python.org (Guido van Rossum) Date: Tue, 05 Apr 2022 22:15:37 +0000 Subject: [issue44090] Add class binding to unbound super objects for allowing autosuper with class methods In-Reply-To: <1620579731.61.0.112222809206.issue44090@roundup.psfhosted.org> Message-ID: <1649196937.95.0.375676231553.issue44090@roundup.psfhosted.org> Guido van Rossum added the comment: At this point I think it's worth filing a new bug proposing to deprecate 1-arg super(), pointing out the broken usages that search found. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:19:01 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 22:19:01 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649197141.73.0.336728344983.issue47230@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- pull_requests: +30399 pull_request: https://github.com/python/cpython/pull/32346 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:19:57 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Tue, 05 Apr 2022 22:19:57 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649197197.87.0.534295278507.issue47230@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- pull_requests: +30400 pull_request: https://github.com/python/cpython/pull/32347 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:33:35 2022 From: report at bugs.python.org (Hood Chatham) Date: Tue, 05 Apr 2022 22:33:35 +0000 Subject: [issue47232] Difficulties building tip of tree Python for emscripten In-Reply-To: <1649186834.9.0.275232571142.issue47232@roundup.psfhosted.org> Message-ID: <1649198015.93.0.622500939481.issue47232@roundup.psfhosted.org> Hood Chatham added the comment: Okay I got it working. I was making several mistakes that each caused the same symptoms so it was hard to track them all down. Thanks again for your help! ---------- status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:35:28 2022 From: report at bugs.python.org (Guido van Rossum) Date: Tue, 05 Apr 2022 22:35:28 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1649198128.59.0.1701503061.issue47185@roundup.psfhosted.org> Guido van Rossum added the comment: This idea just cannot work. Take these two functions: def f(): foo() try: bar() except: pass def g(): try: foo() bar() except: pass Using dis to look at their disassembly, the only hint that in f(), the call to foo() is outside the try block and in g() it is inside it is the presence of some NOP opcodes. The actual demarcation of where the try blocks start and end is exclusively determined by the exception table. It just doesn't make sense to try to validate that correct parameters are being passed in when you are modifying co_code and friends. ---------- resolution: -> wont fix stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:46:10 2022 From: report at bugs.python.org (Mariatta) Date: Tue, 05 Apr 2022 22:46:10 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo Message-ID: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> New submission from Mariatta : In unittest.mock documentation, there is an example code which intentionally contains typo. Source: https://github.com/python/cpython/blame/main/Doc/library/unittest.mock.rst#L2553 We've received quite a number of false "bug report" regarding this text. Basically people saw the sample code containing `assret` then they rushed to create an issue/PR, before actually reading the rest of the section. This typo was intentionally placed there, so it should not be fixed. However since this is definitely confusing to readers, perhaps the documentation should be improved. On Discord, Brandt suggested to add a comment on the sample code like: ``` # Intended typo! ``` so hopefully people will stop trying to fix it. Previous false "bug reports": bpo-35789 bpo-38700 ---------- assignee: docs at python components: Documentation messages: 416826 nosy: Mariatta, docs at python priority: normal severity: normal stage: needs patch status: open title: Clarify that `assret_called_once_with` sample code is intended typo versions: Python 3.10, Python 3.11, Python 3.8, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:53:45 2022 From: report at bugs.python.org (Brandt Bucher) Date: Tue, 05 Apr 2022 22:53:45 +0000 Subject: [issue47233] show_caches option affects code positions reported by dis.get_instructions(...) In-Reply-To: <1649188044.95.0.306823001804.issue47233@roundup.psfhosted.org> Message-ID: <1649199225.5.0.667077880242.issue47233@roundup.psfhosted.org> Change by Brandt Bucher : ---------- nosy: +brandtbucher _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 18:59:54 2022 From: report at bugs.python.org (STINNER Victor) Date: Tue, 05 Apr 2022 22:59:54 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1649199594.16.0.250703589968.issue47185@roundup.psfhosted.org> STINNER Victor added the comment: >>> def f(): ... foo() ... try: ... bar() ... except: ... pass ... >>> def g(): ... try: ... foo() ... bar() ... except: ... pass ... >>> dis.dis(f) 1 0 RESUME 0 2 2 LOAD_GLOBAL 1 (NULL + foo) 14 PRECALL 0 18 CALL 0 28 POP_TOP 3 30 NOP 4 32 LOAD_GLOBAL 3 (NULL + bar) 44 PRECALL 0 48 CALL 0 58 POP_TOP 60 LOAD_CONST 0 (None) 62 RETURN_VALUE >> 64 PUSH_EXC_INFO 5 66 POP_TOP 6 68 POP_EXCEPT 70 LOAD_CONST 0 (None) 72 RETURN_VALUE >> 74 COPY 3 76 POP_EXCEPT 78 RERAISE 1 ExceptionTable: 32 to 58 -> 64 [0] 64 to 66 -> 74 [1] lasti >>> dis.dis(g) 1 0 RESUME 0 2 2 NOP 3 4 LOAD_GLOBAL 1 (NULL + foo) 16 PRECALL 0 20 CALL 0 30 POP_TOP 4 32 LOAD_GLOBAL 3 (NULL + bar) 44 PRECALL 0 48 CALL 0 58 POP_TOP 60 LOAD_CONST 0 (None) 62 RETURN_VALUE >> 64 PUSH_EXC_INFO 5 66 POP_TOP 6 68 POP_EXCEPT 70 LOAD_CONST 0 (None) 72 RETURN_VALUE >> 74 COPY 3 76 POP_EXCEPT 78 RERAISE 1 ExceptionTable: 4 to 58 -> 64 [0] 64 to 66 -> 74 [1] lasti Oh, I didn't follow recent bytecode changes. Ok, now I see that it is not longer possible to build the exception table just from the bytecode. The purpose of the exception table is to handle exceptions: the opcodes related to exception handles are simply gone in Python 3.11. I was thinking about looking for things like PUSH_EXC_INFO or POP_EXCEPT, but as Guido shows, it doesn't work: the start of the "try" block cannot be detected in the bytecode anymore in Python 3.11. > If code.replace() is not updated to recompute co_exceptiontable, at least, it would be nice to document the bpo-40222 changes in What's New in Python 3.11 and in the CodeType documentation You closed the issue. I understand that you don't want to document CodeType.replace() changes neither. Users of this API should follow Python development and notice that their code no longer works with Python 3.11. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:01:52 2022 From: report at bugs.python.org (Brandt Bucher) Date: Tue, 05 Apr 2022 23:01:52 +0000 Subject: [issue47233] show_caches option affects code positions reported by dis.get_instructions(...) In-Reply-To: <1649188044.95.0.306823001804.issue47233@roundup.psfhosted.org> Message-ID: <1649199712.14.0.912939327866.issue47233@roundup.psfhosted.org> Brandt Bucher added the comment: Nice catch. The fix should be pretty simple: just move this line... https://github.com/python/cpython/blob/c1d93b6411f975d67e43942f1a2745a22983c18c/Lib/dis.py#L425 ...up to the top of the for loop. Are you interested in working on this? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:03:54 2022 From: report at bugs.python.org (Guido van Rossum) Date: Tue, 05 Apr 2022 23:03:54 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1649199834.81.0.101100129583.issue47185@roundup.psfhosted.org> Guido van Rossum added the comment: If you think the changes to .replace() should be documented just open a new bpo. You made this issue about your various proposals to change .replace(). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:05:54 2022 From: report at bugs.python.org (Kubilay Kocak) Date: Tue, 05 Apr 2022 23:05:54 +0000 Subject: [issue47205] test_sched_getaffinity and setaffinity fail on FreeBSD buildbit In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1649199954.76.0.381754704932.issue47205@roundup.psfhosted.org> Kubilay Kocak added the comment: >From one of our base/kernel developers: -------------------------------------------------------------- > koobs wrote: > > I don't grok the system call semantics, but it appears the issue is calls > with the '-1' argument: > > mask = posix.sched_getaffinity(0) > ... > self.assertRaises(OSError, posix.sched_getaffinity, -1) > ... > self.assertRaises(OSError, posix.sched_setaffinity, -1, mask) > > This line was added 10 years ago in: > > https://github.com/python/cpython/commit/848698727fcbb633246b56ab57080b4d5493c186 > > It wants an OSError [1] and presumably was getting it before recent > failures, but isn't anymore: > > [1] https://docs.python.org/3/library/exceptions.html#OSError So this is the difference: Python 3.11.0a6+ (heads/main:38ae5b8c0c, Apr 5 2022, 03:27:23) [GCC 11.2.0] on freebsd13 Type "help", "copyright", "credits" or "license" for more information. >>> import posix >>> mask = posix.sched_getaffinity(-1) >>> mask {0, 1, 2, 3, 4, 5, 6, 7} Python 3.10.4 (main, Mar 25 2022, 00:00:00) [GCC 11.2.1 20220127 (Red Hat 11.2.1-9)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import posix >>> mask = posix.sched_getaffinity(-1) Traceback (most recent call last): File "", line 1, in ProcessLookupError: [Errno 3] No such process FreeBSD always accepted -1 as denoting the current process, while Linux does not. In fact, Linux uses 0 as current process pid alias. For FreeBSD, both -1 and 0 works as getpid(), and I do not see it right to break our traditional API conventions. I believe the test should be fixed. -------------------------------------------------------------- I am not sure what changed between 3.10 and main that changed/removed ProcessLookupError as the return for posix.sched_{get|set}affinity with -1 as the argument, but that appears to be the cause of the current test failure ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:07:44 2022 From: report at bugs.python.org (Kubilay Kocak) Date: Tue, 05 Apr 2022 23:07:44 +0000 Subject: [issue47205] posix.sched_{get|set}affinity(-1) no longer returns ProcessLookup causing test failures on FreeBSD In-Reply-To: <1648989406.44.0.565720114777.issue47205@roundup.psfhosted.org> Message-ID: <1649200064.29.0.26590365279.issue47205@roundup.psfhosted.org> Change by Kubilay Kocak : ---------- title: test_sched_getaffinity and setaffinity fail on FreeBSD buildbit -> posix.sched_{get|set}affinity(-1) no longer returns ProcessLookup causing test failures on FreeBSD _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:22:06 2022 From: report at bugs.python.org (STINNER Victor) Date: Tue, 05 Apr 2022 23:22:06 +0000 Subject: [issue47236] Document types.CodeType.replace() changes about co_exceptiontable Message-ID: <1649200926.89.0.78220733937.issue47236@roundup.psfhosted.org> New submission from STINNER Victor : It would be nice to document the bpo-40222 changes in What's New in Python 3.11 and in the CodeType documentation: * https://docs.python.org/dev/library/types.html#types.CodeType * https://docs.python.org/dev/whatsnew/3.11.html Users of types.CodeType.replace(co_code=new_code) must now pass co_exceptiontable or exception handling will no longer work as expected. Callers are responsible to build co_exceptiontable. Currently, the format of this table is documented at: https://github.com/python/cpython/blob/main/Objects/exception_handling_notes.txt There is no public function to encode this table, it's also the responsibility of the caller. See also bpo-47185 "code.replace(co_code=new_code) no longer catch exceptions on Python 3.11" closed as "won't fix" for the background. ---------- assignee: docs at python components: Documentation messages: 416831 nosy: docs at python, vstinner priority: normal severity: normal status: open title: Document types.CodeType.replace() changes about co_exceptiontable versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:22:21 2022 From: report at bugs.python.org (STINNER Victor) Date: Tue, 05 Apr 2022 23:22:21 +0000 Subject: [issue47185] code.replace(co_code=new_code) no longer catch exceptions on Python 3.11 In-Reply-To: <1648805493.81.0.634478965764.issue47185@roundup.psfhosted.org> Message-ID: <1649200941.21.0.462222647819.issue47185@roundup.psfhosted.org> STINNER Victor added the comment: Ok sure, I created bpo-47236 "Document types.CodeType.replace() changes about co_exceptiontable". ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:22:48 2022 From: report at bugs.python.org (STINNER Victor) Date: Tue, 05 Apr 2022 23:22:48 +0000 Subject: [issue40222] "Zero cost" exception handling In-Reply-To: <1586338863.3.0.393749013734.issue40222@roundup.psfhosted.org> Message-ID: <1649200968.55.0.275841389304.issue40222@roundup.psfhosted.org> STINNER Victor added the comment: I created bpo-47236 "Document types.CodeType.replace() changes about co_exceptiontable". ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:23:47 2022 From: report at bugs.python.org (Guido van Rossum) Date: Tue, 05 Apr 2022 23:23:47 +0000 Subject: [issue47236] Document types.CodeType.replace() changes about co_exceptiontable In-Reply-To: <1649200926.89.0.78220733937.issue47236@roundup.psfhosted.org> Message-ID: <1649201027.65.0.310156114644.issue47236@roundup.psfhosted.org> Change by Guido van Rossum : ---------- nosy: +gvanrossum _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:36:31 2022 From: report at bugs.python.org (Steve Dower) Date: Tue, 05 Apr 2022 23:36:31 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649201791.42.0.0532305287671.issue47230@roundup.psfhosted.org> Steve Dower added the comment: New changeset 8bce3cb16df5b8ac06ac6b2cae177dd221780b2f by Jeremy Kloth in branch '3.10': bpo-47230: Silence compiler warnings on Windows from zlib 1.2.12 (GH-32337) https://github.com/python/cpython/commit/8bce3cb16df5b8ac06ac6b2cae177dd221780b2f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 19:37:22 2022 From: report at bugs.python.org (Steve Dower) Date: Tue, 05 Apr 2022 23:37:22 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649201842.64.0.647884658859.issue47230@roundup.psfhosted.org> Steve Dower added the comment: New changeset a4c7752f3e00b75fd1e4603458b8c77a9fa3d4cb by Jeremy Kloth in branch '3.9': bpo-47230: Silence compiler warnings on Windows from zlib 1.2.12 (GH-32337) https://github.com/python/cpython/commit/a4c7752f3e00b75fd1e4603458b8c77a9fa3d4cb ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 20:03:19 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Wed, 06 Apr 2022 00:03:19 +0000 Subject: [issue47230] New compiler warnings with latest zlib In-Reply-To: <1649180726.62.0.308127491071.issue47230@roundup.psfhosted.org> Message-ID: <1649203399.88.0.655592441189.issue47230@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 20:23:03 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 00:23:03 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo In-Reply-To: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> Message-ID: <1649204583.25.0.693761897882.issue47235@roundup.psfhosted.org> Gregory P. Smith added the comment: LOL... we didn't anticipate this happening when adding the commonly found typo detection feature. ---------- assignee: docs at python -> gregory.p.smith nosy: +gregory.p.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 20:30:42 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 00:30:42 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo In-Reply-To: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> Message-ID: <1649205042.27.0.216150499753.issue47235@roundup.psfhosted.org> Change by Gregory P. Smith : ---------- keywords: +patch pull_requests: +30401 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32348 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 21:27:06 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Wed, 06 Apr 2022 01:27:06 +0000 Subject: [issue47229] IDLE / Thonny UI crashes on Chromebook Linux/Bullseye In-Reply-To: <1649179144.58.0.96853130641.issue47229@roundup.psfhosted.org> Message-ID: <1649208426.21.0.304761880289.issue47229@roundup.psfhosted.org> Terry J. Reedy added the comment: This issue tracker is for improving the CPython distribution. It is not a tracker for other software, or for general help with running Python. For the latter, try https://mail.python.org/mailman/listinfo/python-list Thonny is 3rd party software with its own tracker, although I suspect that the problem is with your upgrade Chromebook/Linux Bullseye. While running Python on Linux on PCs is supported, I do not believe Chromebooks are included; there is certainly no Chromebook buildbot for testing CPython listed on https://buildbot.python.org/all/#/builders. If there is a Chromebook Python list, you might ask if tkinter works with Bullseye for other users. IDLE *is* part of CPython. What specific release of Python are you running. This is the first thing IDLE prints when it starts. If you are running a somewhat recent release of 3.9 or 3.10, then continue. To see whether there might be an IDLE-specific or ever tkinter-specific problem, run the CPython test suite from a command line with "python3 -m test -j0 -ugui" and report results. (Or 'python ...' is 'python' works to run python 3.) If it passes except for IDLE tests, start IDLE from a command line with "python3 -m idlelib". Get IDLE to quit/crash. Then report any error info printed in the terminal. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 21:27:41 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Wed, 06 Apr 2022 01:27:41 +0000 Subject: [issue47229] IDLE crashes on Chromebook Linux/Bullseye In-Reply-To: <1649179144.58.0.96853130641.issue47229@roundup.psfhosted.org> Message-ID: <1649208461.76.0.596080904384.issue47229@roundup.psfhosted.org> Change by Terry J. Reedy : ---------- title: IDLE / Thonny UI crashes on Chromebook Linux/Bullseye -> IDLE crashes on Chromebook Linux/Bullseye _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 21:39:33 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Wed, 06 Apr 2022 01:39:33 +0000 Subject: [issue27546] Integrate tkinter and asyncio (and async) In-Reply-To: <1468815010.57.0.709565417017.issue27546@psf.upfronthosting.co.za> Message-ID: <1649209173.2.0.914659485076.issue27546@roundup.psfhosted.org> Terry J. Reedy added the comment: I posted look_tk3, I believe, as an answer to an SO question. https://stackoverflow.com/questions/47895765/use-asyncio-and-tkinter-or-another-gui-lib-together-without-freezing-the-gui/47896365#47896365 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 22:23:34 2022 From: report at bugs.python.org (Alex Waygood) Date: Wed, 06 Apr 2022 02:23:34 +0000 Subject: [issue46134] Confusing error message for AttributeError with dataclasses In-Reply-To: <1639937709.73.0.49042724739.issue46134@roundup.psfhosted.org> Message-ID: <1649211814.69.0.00172919344796.issue46134@roundup.psfhosted.org> Alex Waygood added the comment: Closing due to lack of response from OP. ---------- resolution: -> not a bug stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 22:51:00 2022 From: report at bugs.python.org (Steven D'Aprano) Date: Wed, 06 Apr 2022 02:51:00 +0000 Subject: [issue47121] math.isfinite() can raise exception when called on a number In-Reply-To: <1648229323.49.0.0271955914629.issue47121@roundup.psfhosted.org> Message-ID: <1649213460.27.0.213982597123.issue47121@roundup.psfhosted.org> Steven D'Aprano added the comment: Isn't this just a quality of implementation issue? math.isfinite should return True for all ints, since all ints are finite. (There are no int infinities or NANs). There is no need to coerce them to float to know that they are finite. Likewise for Fractions. If they overflow, that could be caught and True returned. Decimal infinities convert to float infinities, so the only way you can get an overflow error is if the Decimal is finite but too big to convert. So again, isfinite could (should?) catch the overflow error and return True. Any numeric type that has an infinity which does not coerce to float infinity, but overflows instead, is buggy, and its not isfinite's responsibility to protect against that. So here is my suggestion: isfinite() should return True for all ints, without needing to coerce them to float. For other numeric types, it should try to coerce them to float, and catch OverflowError and raise True. This should be documented, so that other numeric types know what contract they are required to follow (infinity coerces to float infinity). I'm going to change this to an enhancement for 3.11 (or 3.12). ---------- nosy: +steven.daprano type: -> enhancement versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 23:00:34 2022 From: report at bugs.python.org (Chih-Hsuan Yen) Date: Wed, 06 Apr 2022 03:00:34 +0000 Subject: [issue17004] Expand zipimport to include other compression methods In-Reply-To: <1358707302.86.0.811743649739.issue17004@psf.upfronthosting.co.za> Message-ID: <1649214034.79.0.549050749042.issue17004@roundup.psfhosted.org> Change by Chih-Hsuan Yen : ---------- nosy: -yan12125 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 23:19:51 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Wed, 06 Apr 2022 03:19:51 +0000 Subject: [issue47009] Streamline list.append for the common case In-Reply-To: <1647233858.4.0.304324509353.issue47009@roundup.psfhosted.org> Message-ID: <1649215191.28.0.714893607387.issue47009@roundup.psfhosted.org> Dennis Sweeney added the comment: Buildbots are passing, so I'm closing this. Thanks for the catch and fix! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 23:31:33 2022 From: report at bugs.python.org (Brett Cannon) Date: Wed, 06 Apr 2022 03:31:33 +0000 Subject: [issue47022] PEP 594: Document removal of asynchat, asyncore and smtpd In-Reply-To: <1647329278.28.0.312815777301.issue47022@roundup.psfhosted.org> Message-ID: <1649215893.8.0.687817144783.issue47022@roundup.psfhosted.org> Change by Brett Cannon : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 23:33:10 2022 From: report at bugs.python.org (Brett Cannon) Date: Wed, 06 Apr 2022 03:33:10 +0000 Subject: [issue47061] Deprecate modules listed in PEP 594 In-Reply-To: <1647632770.65.0.881581261318.issue47061@roundup.psfhosted.org> Message-ID: <1649215990.8.0.469187045349.issue47061@roundup.psfhosted.org> Change by Brett Cannon : ---------- pull_requests: +30402 pull_request: https://github.com/python/cpython/pull/32350 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Apr 5 23:58:49 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Wed, 06 Apr 2022 03:58:49 +0000 Subject: [issue47121] math.isfinite() can raise exception when called on a number In-Reply-To: <1648229323.49.0.0271955914629.issue47121@roundup.psfhosted.org> Message-ID: <1649217529.84.0.536417229774.issue47121@roundup.psfhosted.org> Raymond Hettinger added the comment: > isfinite() should return True for all ints, without needing > to coerce them to float Whoa there. You're venturing into changing what those math functions were all about and the core approach to how they operate. A zigzag to this new direction would need discussion with all the math folks. Many tools in the math module are thin wrapper around libmath and we never intended to be universal handlers of all numeric types. We have a lot of functions that start by coercing their input to a float. My two cents is that this would open an endless can of worms and make everyone pay a time and complexity cost for a feature that almost no one needs. AFAICT is more of a purity issue than an actual practical need that would warrant separate code paths (for example, we recently closed an issue where someone wanted math.log() to have a separate code path for Fraction inputs where it return log(f.numerator) - log(f.denominator) with the goal of handling fractional values smaller than float_min). ---------- nosy: +mark.dickinson, tim.peters _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 00:13:57 2022 From: report at bugs.python.org (Tim Peters) Date: Wed, 06 Apr 2022 04:13:57 +0000 Subject: [issue47121] math.isfinite() can raise exception when called on a number In-Reply-To: <1648229323.49.0.0271955914629.issue47121@roundup.psfhosted.org> Message-ID: <1649218437.16.0.66642942869.issue47121@roundup.psfhosted.org> Tim Peters added the comment: I'll testify that I won't volunteer one second of my time pursuing these abstract "purity" crusades ;-) `isfinite()` et alia were added to supply functions defined by current standards to work on IEEE floating-point values. People working with floats have reasonable expectations that Python will supply workalikes for industry-stand float functions. If was had to cater to all possible "numberish" types, we'd never add anything new again :-( Doing that in a principled way requires dedicated new dunder methods, and that's a high bar. That I said, I extended math.log() decades ago to work on giant integers. It was useful for real projects I was working on at the time - I was scratching my own itches. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 00:56:54 2022 From: report at bugs.python.org (Stanley) Date: Wed, 06 Apr 2022 04:56:54 +0000 Subject: [issue30718] [doc] open builtin function: specifying the size of buffer has no effect for text files In-Reply-To: <1497989929.05.0.713607879185.issue30718@psf.upfronthosting.co.za> Message-ID: <1649221014.41.0.0961744756563.issue30718@roundup.psfhosted.org> Change by Stanley : ---------- keywords: +patch nosy: +slateny nosy_count: 4.0 -> 5.0 pull_requests: +30403 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32351 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 03:14:17 2022 From: report at bugs.python.org (Ma Lin) Date: Wed, 06 Apr 2022 07:14:17 +0000 Subject: [issue47211] Remove re.template() and re.TEMPLATE In-Reply-To: <1649062573.34.0.575167973104.issue47211@roundup.psfhosted.org> Message-ID: <1649229257.93.0.362129842024.issue47211@roundup.psfhosted.org> Change by Ma Lin : ---------- nosy: +malin _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 04:13:27 2022 From: report at bugs.python.org (=?utf-8?q?Martin_Li=C5=A1ka?=) Date: Wed, 06 Apr 2022 08:13:27 +0000 Subject: [issue47188] ncurses: *** buffer overflow detected ***: terminated with -D_FORTIFY_SOURCE=3 In-Reply-To: <1648826759.01.0.991092472889.issue47188@roundup.psfhosted.org> Message-ID: <1649232807.46.0.9986471175.issue47188@roundup.psfhosted.org> Martin Li?ka added the comment: So the issue is ncurses, closing here. ---------- stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 04:20:05 2022 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Apr 2022 08:20:05 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649233205.68.0.102790317957.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30404 pull_request: https://github.com/python/cpython/pull/32352 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 04:24:20 2022 From: report at bugs.python.org (Hugo van Kemenade) Date: Wed, 06 Apr 2022 08:24:20 +0000 Subject: [issue36795] "make venv" failed in Docs In-Reply-To: <1556992118.26.0.759759719454.issue36795@roundup.psfhosted.org> Message-ID: <1649233460.25.0.787860439596.issue36795@roundup.psfhosted.org> Hugo van Kemenade added the comment: I cannot reproduce this (macOS, Python 3.10, pip 22.0.4). As xtreak said, it's probably caused by using a very old version of pip (9.0.1 from Nov 6, 2016), so let's close it. Please let us know if it happens again, and whether updating pip helps. ---------- nosy: +hugovk stage: needs patch -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 04:31:20 2022 From: report at bugs.python.org (Irit Katriel) Date: Wed, 06 Apr 2022 08:31:20 +0000 Subject: [issue47120] Make all jump opcodes relative In-Reply-To: <1648218653.94.0.580682403112.issue47120@roundup.psfhosted.org> Message-ID: <1649233880.15.0.824197897724.issue47120@roundup.psfhosted.org> Change by Irit Katriel : ---------- pull_requests: +30405 pull_request: https://github.com/python/cpython/pull/32353 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 04:41:16 2022 From: report at bugs.python.org (Daniel Draper) Date: Wed, 06 Apr 2022 08:41:16 +0000 Subject: [issue47237] Inheritance from Protocol with property in dataclass makes them non-instantiatable Message-ID: <1649234476.2.0.0289467757353.issue47237@roundup.psfhosted.org> New submission from Daniel Draper : Hi, According to https://peps.python.org/pep-0544/#explicitly-declaring-implementation it should be possible to explicitly inherit from Protocols. This however breaks the dataclass constructor when using the @property decorator in the protocol, see this example: ```python from typing import Protocol from dataclasses import dataclass class SomeProtocol(Protocol): @property def some_value(self) -> str: ... @dataclass class SomeDataclasss(SomeProtocol): some_value: str if __name__ == '__main__': a = SomeDataclasss(some_value="value") # this crashes with AttributeError: can't set attribute 'some_value' ``` The pattern of @property in the protocol is one taken from the mypy docs (see https://mypy.readthedocs.io/en/stable/protocols.html#recursive-protocols for example). When removing the explicit inheritiance mypy also correctly typechecks the dataclass implementation when doing something like, only the explicit inheritance seems to fail in python ```python a: SomeProtocol = SomeDataclass() ``` ---------- components: Library (Lib) messages: 416846 nosy: Germandrummer92 priority: normal severity: normal status: open title: Inheritance from Protocol with property in dataclass makes them non-instantiatable type: behavior versions: Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 04:52:21 2022 From: report at bugs.python.org (Alex Waygood) Date: Wed, 06 Apr 2022 08:52:21 +0000 Subject: [issue47237] Inheritance from Protocol with property in dataclass makes them non-instantiatable In-Reply-To: <1649234476.2.0.0289467757353.issue47237@roundup.psfhosted.org> Message-ID: <1649235141.06.0.726831295754.issue47237@roundup.psfhosted.org> Change by Alex Waygood : ---------- nosy: +AlexWaygood, JelleZijlstra, eric.smith, gvanrossum, kj _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 05:02:11 2022 From: report at bugs.python.org (Hugo van Kemenade) Date: Wed, 06 Apr 2022 09:02:11 +0000 Subject: [issue36329] use the right python "make -C Doc/ serve" In-Reply-To: <1552849058.57.0.633692372704.issue36329@roundup.psfhosted.org> Message-ID: <1649235731.47.0.873408854073.issue36329@roundup.psfhosted.org> Change by Hugo van Kemenade : ---------- nosy: +hugovk nosy_count: 4.0 -> 5.0 pull_requests: +30406 pull_request: https://github.com/python/cpython/pull/32354 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 05:17:05 2022 From: report at bugs.python.org (adiboo adib) Date: Wed, 06 Apr 2022 09:17:05 +0000 Subject: [issue36207] robotsparser deny all with some rules In-Reply-To: <1551865321.24.0.407834320039.issue36207@roundup.psfhosted.org> Message-ID: <1649236625.34.0.216837600775.issue36207@roundup.psfhosted.org> adiboo adib added the comment: Hi now it work on all my website https://www.matelesecretairemedicale.com/ ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 05:28:46 2022 From: report at bugs.python.org (Batuhan Taskaya) Date: Wed, 06 Apr 2022 09:28:46 +0000 Subject: [issue44501] Packing constant call arguments In-Reply-To: <1624472022.52.0.0584361591595.issue44501@roundup.psfhosted.org> Message-ID: <1649237326.97.0.410584781801.issue44501@roundup.psfhosted.org> Change by Batuhan Taskaya : ---------- resolution: -> rejected stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 05:32:26 2022 From: report at bugs.python.org (Hugo van Kemenade) Date: Wed, 06 Apr 2022 09:32:26 +0000 Subject: [issue36329] use the right python "make -C Doc/ serve" In-Reply-To: <1552849058.57.0.633692372704.issue36329@roundup.psfhosted.org> Message-ID: <1649237546.12.0.990777695755.issue36329@roundup.psfhosted.org> Hugo van Kemenade added the comment: I've made PRs for this: CPython Docs: https://github.com/python/cpython/pull/32354 Devguide: https://github.com/python/devguide/pull/826 Also set this bpo for Python 3.11. ---------- versions: +Python 3.11 -Python 3.8 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 05:38:25 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 09:38:25 +0000 Subject: [issue45210] tp_dealloc docs should mention error indicator may be set In-Reply-To: <1631724443.4.0.588312077609.issue45210@roundup.psfhosted.org> Message-ID: <1649237905.65.0.140073547902.issue45210@roundup.psfhosted.org> Change by STINNER Victor : ---------- pull_requests: +30407 pull_request: https://github.com/python/cpython/pull/32357 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 05:40:23 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 09:40:23 +0000 Subject: [issue45210] tp_dealloc docs should mention error indicator may be set In-Reply-To: <1631724443.4.0.588312077609.issue45210@roundup.psfhosted.org> Message-ID: <1649238023.66.0.650497328661.issue45210@roundup.psfhosted.org> STINNER Victor added the comment: I wrote GH-32357 to check in debug mode that tp_dealloc functions leave the current exception unchanged. You can use attached unicode_dealloc_bug.patch to inject a bug to test my PR. Example ("make" is enough to trigger the bug): --- Fatal Python error: _Py_Dealloc: Deallocator of type 'str' cleared the current exception Python runtime state: initialized Current thread 0x00007ff28d45a740 (most recent call first): File "/home/vstinner/python/main/Lib/sysconfig.py", line 349 in _parse_makefile File "/home/vstinner/python/main/Lib/sysconfig.py", line 470 in _generate_posix_vars File "/home/vstinner/python/main/Lib/sysconfig.py", line 845 in _main File "/home/vstinner/python/main/Lib/sysconfig.py", line 857 in File "", line 88 in _run_code File "", line 198 in _run_module_as_main generate-posix-vars failed --- ---------- Added file: https://bugs.python.org/file50724/unicode_dealloc_bug.patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 06:12:07 2022 From: report at bugs.python.org (Doug Bates) Date: Wed, 06 Apr 2022 10:12:07 +0000 Subject: [issue47229] IDLE / Thonny UI crashes on Chromebook Linux/Bullseye In-Reply-To: <1649208426.21.0.304761880289.issue47229@roundup.psfhosted.org> Message-ID: Doug Bates added the comment: Thank you Terry for your interest/helpfulness. I'm a bit out of my depth but to explain, I first noticed the problem attempting to run Thonny as an development tool for Raspberry Pi RP2040 Picos. Previously it all worked great running on Buster. When I hit problems after moving to Bullseye I raised a bug with thonny.org and exchanged several posts with https://github.com/aivarannamaa who was very helpful and he observed the Thonny GUI uses the same as IDLE - so I tried it and found the same. Aivar couldn't replicate the issue but after several attempts suggested: https://github.com/thonny/thonny/issues/2196#issuecomment-1069473517. You will see from our exchanges that I found the 'core' of Thonny (and IDLE if the window doesn't collapse immediately) seems to be running OK (e.g. >>> 22/7 > 3.142... etc) but any menu operations crashes it immediately. This obviously leaves a mess and neither IDLE nor Thonny will reload without restarting the whole linux container. Anyway, running the tests you suggested gives the following. Thanks again and let me know if I can help further. ?------------------ python3 -m test -j0 -ugui == CPython 3.9.2 (default, Feb 28 2021, 17:03:44) [GCC 10.2.1 20210110] == Linux-5.10.106-15260-g6010c49177e8-x86_64-with-glibc2.31 little-endian == cwd: /tmp/test_python_19389? == CPU count: 2 == encodings: locale=UTF-8, FS=utf-8 0:00:00 load avg: 0.00 Run tests in parallel using 4 child processes 0:00:00 load avg: 0.00 [ 1/10/1] test_builtin failed test test_builtin crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_builtin' 0:00:00 load avg: 0.00 [ 2/10/2] test_dict failed test test_dict crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_dict' 0:00:00 load avg: 0.00 [ 3/10/3] test_opcodes failed test test_opcodes crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_opcodes' 0:00:00 load avg: 0.00 [ 4/10/4] test_grammar failed test test_grammar crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_grammar' 0:00:00 load avg: 0.00 [ 5/10/5] test_exceptions failed test test_exceptions crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_exceptions' 0:00:00 load avg: 0.00 [ 6/10/6] test_types failed test test_types crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_types' 0:00:00 load avg: 0.00 [ 7/10/7] test_doctest failed test test_doctest crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_doctest' 0:00:01 load avg: 0.00 [ 8/10/8] test_unittest failed test test_unittest crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_unittest' 0:00:01 load avg: 0.00 [ 9/10/9] test_doctest2 failed test test_doctest2 crashed -- Traceback (most recent call last): File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 270, in _runtest_inner refleak = _runtest_inner2(ns, test_name) File "/usr/lib/python3.9/test/libregrtest/runtest.py", line 221, in _runtest_inner2 the_module = importlib.import_module(abstest) File "/usr/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 984, in _find_and_load_unlocked ModuleNotFoundError: No module named 'test.test_doctest2' 0:00:03 load avg: 0.24 [10/10/9] test_support passed == Tests result: FAILURE == 1 test OK. 9 tests failed: test_builtin test_dict test_doctest test_doctest2 test_exceptions test_grammar test_opcodes test_types test_unittest Total duration: 3.8 sec Tests result: FAILURE ?----------------------------- [comment: despite failure I tried this, leading to ?. > a window flashes on the screen and vanishes] On Wed, Apr 6, 2022 at 2:27 AM Terry J. Reedy wrote: > > Terry J. Reedy added the comment: > > This issue tracker is for improving the CPython distribution. It is not a > tracker for other software, or for general help with running Python. For > the latter, try > https://mail.python.org/mailman/listinfo/python-list > > Thonny is 3rd party software with its own tracker, although I suspect that > the problem is with your upgrade Chromebook/Linux Bullseye. While running > Python on Linux on PCs is supported, I do not believe Chromebooks are > included; there is certainly no Chromebook buildbot for testing CPython > listed on https://buildbot.python.org/all/#/builders. If there is a > Chromebook Python list, you might ask if tkinter works with Bullseye for > other users. > > IDLE *is* part of CPython. What specific release of Python are you > running. This is the first thing IDLE prints when it starts. > > If you are running a somewhat recent release of 3.9 or 3.10, then > continue. To see whether there might be an IDLE-specific or ever > tkinter-specific problem, run the CPython test suite from a command line > with "python3 -m test -j0 -ugui" and report results. (Or 'python ...' is > 'python' works to run python 3.) If it passes except for IDLE tests, start > IDLE from a command line with "python3 -m idlelib". Get IDLE to > quit/crash. Then report any error info printed in the terminal. > > ---------- > > _______________________________________ > Python tracker > > _______________________________________ > ---------- title: IDLE crashes on Chromebook Linux/Bullseye -> IDLE / Thonny UI crashes on Chromebook Linux/Bullseye _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 06:19:09 2022 From: report at bugs.python.org (Aleksandr) Date: Wed, 06 Apr 2022 10:19:09 +0000 Subject: [issue47238] Python threading.Event().wait() depends on the system time Message-ID: <1649240349.24.0.663702230761.issue47238@roundup.psfhosted.org> New submission from Aleksandr : This happens on Ubuntu on Python versions 3.8.5 and 3.10.4 I have two threads that can change the system time to a day ago. If the change in the system time for a day occurs at the time of wait, then I hang for one day plus the waiting time. I thought Event.wait() uses a monotonous clock, but this behavior points to an absolute clock. Are there any solutions? ---------- components: Library (Lib) files: reproduction.py messages: 416851 nosy: AleksandrAQ priority: normal severity: normal status: open title: Python threading.Event().wait() depends on the system time type: behavior versions: Python 3.8 Added file: https://bugs.python.org/file50725/reproduction.py _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 06:21:08 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 10:21:08 +0000 Subject: [issue36207] robotsparser deny all with some rules In-Reply-To: <1551865321.24.0.407834320039.issue36207@roundup.psfhosted.org> Message-ID: <1649240468.98.0.274308178828.issue36207@roundup.psfhosted.org> Change by STINNER Victor : ---------- Removed message: https://bugs.python.org/msg416847 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 06:21:10 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 10:21:10 +0000 Subject: [issue36207] robotsparser deny all with some rules In-Reply-To: <1551865321.24.0.407834320039.issue36207@roundup.psfhosted.org> Message-ID: <1649240470.56.0.222735161511.issue36207@roundup.psfhosted.org> Change by STINNER Victor : ---------- Removed message: https://bugs.python.org/msg416767 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 06:21:58 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 10:21:58 +0000 Subject: [issue36207] robotsparser deny all with some rules In-Reply-To: <1551865321.24.0.407834320039.issue36207@roundup.psfhosted.org> Message-ID: <1649240518.24.0.158486857346.issue36207@roundup.psfhosted.org> STINNER Victor added the comment: I removed two comments: none of the mentioned URL contains a "Disallow: ?" rule and the comments didn't add any value to this issue. It looks like regular spam (SEO). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 06:36:45 2022 From: report at bugs.python.org (Eric V. Smith) Date: Wed, 06 Apr 2022 10:36:45 +0000 Subject: [issue47237] Inheritance from Protocol with property in class makes them non-instantiatable In-Reply-To: <1649234476.2.0.0289467757353.issue47237@roundup.psfhosted.org> Message-ID: <1649241405.12.0.115559104476.issue47237@roundup.psfhosted.org> Eric V. Smith added the comment: Here's the error without dataclasses: ------ from typing import Protocol class SomeProtocol(Protocol): @property def some_value(self) -> str: ... class SomeClass(SomeProtocol): def __init__(self, some_value): self.some_value = some_value if __name__ == '__main__': a = SomeClass(some_value="value") ------ Traceback (most recent call last): File "foo.py", line 12, in a = SomeClass(some_value="value") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "foo.py", line 9, in __init__ self.some_value = some_value ^^^^^^^^^^^^^^^ AttributeError: property 'some_value' of 'SomeClass' object has no setter And here it is without Protocol: -------- class SomeProperty: @property def some_value(self) -> str: ... class SomeClass(SomeProperty): def __init__(self, some_value): self.some_value = some_value if __name__ == '__main__': a = SomeClass(some_value="value") -------- Traceback (most recent call last): File "foo.py", line 10, in a = SomeClass(some_value="value") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "foo.py", line 7, in __init__ self.some_value = some_value ^^^^^^^^^^^^^^^ AttributeError: property 'some_value' of 'SomeClass' object has no setter ---------- title: Inheritance from Protocol with property in dataclass makes them non-instantiatable -> Inheritance from Protocol with property in class makes them non-instantiatable _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 06:42:11 2022 From: report at bugs.python.org (Eric V. Smith) Date: Wed, 06 Apr 2022 10:42:11 +0000 Subject: [issue47237] Inheritance from base class with property in class makes them non-instantiatable In-Reply-To: <1649234476.2.0.0289467757353.issue47237@roundup.psfhosted.org> Message-ID: <1649241731.23.0.694176595584.issue47237@roundup.psfhosted.org> Change by Eric V. Smith : ---------- title: Inheritance from Protocol with property in class makes them non-instantiatable -> Inheritance from base class with property in class makes them non-instantiatable _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 06:56:35 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 10:56:35 +0000 Subject: [issue47103] Copy pgort140.dll when building for PGO In-Reply-To: <1648065621.85.0.817743953237.issue47103@roundup.psfhosted.org> Message-ID: <1649242595.73.0.313972914147.issue47103@roundup.psfhosted.org> Steve Dower added the comment: New changeset 074da788028c1f1e867dc81698efdcdc263f2288 by Steve Dower in branch 'main': bpo-47103: Copy pgort140.dll into output directory when building PGInstrument on Windows (GH-32083) https://github.com/python/cpython/commit/074da788028c1f1e867dc81698efdcdc263f2288 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:03:19 2022 From: report at bugs.python.org (Dutcho) Date: Wed, 06 Apr 2022 11:03:19 +0000 Subject: [issue47239] Python Launcher for Windowscd \ Message-ID: <1649242999.58.0.197722613352.issue47239@roundup.psfhosted.org> Change by Dutcho : ---------- components: Windows nosy: Dutcho, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Python Launcher for Windowscd \ versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:06:59 2022 From: report at bugs.python.org (Dutcho) Date: Wed, 06 Apr 2022 11:06:59 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version Message-ID: <1649243219.63.0.664316094201.issue47239@roundup.psfhosted.org> New submission from Dutcho : If doing `py -list` in 3.11.0a7, a star "*" shows on 3.11, even though the default (set by environment variable PY_PYTHON) is 3.10, which `py -V` confirms ``` C:\>py --list -V:3.11 * Python 3.11 (64-bit) -V:3.10 Python 3.10 (64-bit) -V:3.9 Python 3.9 (64-bit) -V:3.8 Python 3.8 (64-bit) C:\>py -V Python 3.10.4 ``` ---------- title: Python Launcher for Windowscd \ -> Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:07:39 2022 From: report at bugs.python.org (Dutcho) Date: Wed, 06 Apr 2022 11:07:39 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version In-Reply-To: <1649243219.63.0.664316094201.issue47239@roundup.psfhosted.org> Message-ID: <1649243259.57.0.871842142427.issue47239@roundup.psfhosted.org> Dutcho added the comment: That was the case in older versions (up to a6) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:08:59 2022 From: report at bugs.python.org (Sergey Fedorov) Date: Wed, 06 Apr 2022 11:08:59 +0000 Subject: [issue47240] Python 3.x built for ppc+ppc64 errs on: No module named 'msvcrt', '_posixsubprocess' Message-ID: <1649243339.36.0.0104612880177.issue47240@roundup.psfhosted.org> New submission from Sergey Fedorov : While adding definitions for additional universal binary option (ppc+ppc64) is rather straightforward (following already existing examples in the source code), and Python 3.x after patching do build as universal for named two arch, trying to install any python modules fail on the following: ``` ---> Building py39-curl Traceback (most recent call last): File "/opt/local/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 73, in import msvcrt ModuleNotFoundError: No module named 'msvcrt' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_python_py-curl/py39-curl/work/pycurl-7.44.1/setup.py", line 11, in import glob, os, re, sys, subprocess File "/opt/local/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 78, in import _posixsubprocess ModuleNotFoundError: No module named '_posixsubprocess' Command failed: /opt/local/Library/Frameworks/Python.framework/Versions/3.9/bin/python3.9 setup.py docstrings Exit code: 1 ``` Separately both ppc and ppc64 are totally fine, they build and work, but not together. At the same time `python27` after a similar patch builds as universal (ppc+ppc64) and works normally. So the problem somehow arises on 3.x versions. P. S. I am aware that Darwin PowerPC is an interest for very few users and even fewer developers, so I do not expect the upstream to fix this in the code. However I will greatly appreciate any advice which may point to what I should fix on my end. If I can fix Pythons for ppc+ppc64, it will benefit Macports users, among whom there are people using Leopard actively. Relevant ticket on Macports: https://trac.macports.org/ticket/64916 Such fix may also benefit Linux PPC users on G5 machines. I request moderators not to dismiss & close the issue, if possible. We don?t have Python experts on Macports, and all fixes for PowerPC are done by very few enthusiasts. ---------- components: macOS messages: 416857 nosy: barracuda156, ned.deily, ronaldoussoren priority: normal severity: normal status: open title: Python 3.x built for ppc+ppc64 errs on: No module named 'msvcrt', '_posixsubprocess' type: compile error versions: Python 3.10, Python 3.8, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:12:13 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 11:12:13 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version In-Reply-To: <1649243219.63.0.664316094201.issue47239@roundup.psfhosted.org> Message-ID: <1649243533.41.0.979353253308.issue47239@roundup.psfhosted.org> Steve Dower added the comment: Good catch, thanks! ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:29:27 2022 From: report at bugs.python.org (Irit Katriel) Date: Wed, 06 Apr 2022 11:29:27 +0000 Subject: [issue47120] Make all jump opcodes relative In-Reply-To: <1648218653.94.0.580682403112.issue47120@roundup.psfhosted.org> Message-ID: <1649244567.32.0.510811038602.issue47120@roundup.psfhosted.org> Change by Irit Katriel : ---------- pull_requests: +30408 pull_request: https://github.com/python/cpython/pull/32359 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:38:52 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 11:38:52 +0000 Subject: [issue47189] What's new in Python 3.11: Faster CPython Message-ID: <1649245132.42.0.0666631089733.issue47189@roundup.psfhosted.org> New submission from Ken Jin : New changeset 9ffe47df5468a72603f730eae48c2fd4ec615ffa by Ken Jin in branch 'main': bpo-47189: What's New in 3.11: Faster CPython (GH-32235) https://github.com/python/cpython/commit/9ffe47df5468a72603f730eae48c2fd4ec615ffa ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:48:10 2022 From: report at bugs.python.org (Dutcho) Date: Wed, 06 Apr 2022 11:48:10 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version In-Reply-To: <1649243219.63.0.664316094201.issue47239@roundup.psfhosted.org> Message-ID: <1649245690.69.0.819666155378.issue47239@roundup.psfhosted.org> Dutcho added the comment: BTW I just found 'py -0p' also no longer shows the 'venv' path ``` (venv) C:\>py -0p -V:3.11 * C:\Program Files\Python311\python.exe -V:3.10 C:\Program Files\Python310\python.exe -V:3.9 C:\Program Files\Python39\python.exe -V:3.8 C:\Program Files\Python38\python.exe (venv) C:\>pip -V pip 22.0.4 from C:\...\venv\Lib\site-packages\pip (python 3.11) ``` Or should I make a separate bug entry for this? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:53:50 2022 From: report at bugs.python.org (Julien Palard) Date: Wed, 06 Apr 2022 11:53:50 +0000 Subject: [issue42238] Deprecate suspicious.py? In-Reply-To: <1604274563.95.0.828690163802.issue42238@roundup.psfhosted.org> Message-ID: <1649246030.63.0.155611307527.issue42238@roundup.psfhosted.org> Julien Palard added the comment: One true positive today: https://github.com/python/cpython/pull/32355 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 07:58:12 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 11:58:12 +0000 Subject: [issue46850] [C API] Move _PyEval_EvalFrameDefault() to the internal C API In-Reply-To: <1645716984.87.0.22272006941.issue46850@roundup.psfhosted.org> Message-ID: <1649246292.37.0.414215484433.issue46850@roundup.psfhosted.org> STINNER Victor added the comment: New changeset 2b4f2f5fa4d1123c19bf0643cfa5a4fe8df4175c by Victor Stinner in branch 'main': Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)" (GH-32343) https://github.com/python/cpython/commit/2b4f2f5fa4d1123c19bf0643cfa5a4fe8df4175c ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 08:01:30 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 12:01:30 +0000 Subject: [issue46850] [C API] Move _PyEval_EvalFrameDefault() to the internal C API In-Reply-To: <1645716984.87.0.22272006941.issue46850@roundup.psfhosted.org> Message-ID: <1649246490.93.0.703239205021.issue46850@roundup.psfhosted.org> STINNER Victor added the comment: The change was rejected by the Steering Council: https://mail.python.org/archives/list/python-dev at python.org/message/GFOMU7LP63JUVFMWNJNZJLUMZDRPTUYJ/ ---------- resolution: -> rejected stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 08:05:18 2022 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Apr 2022 12:05:18 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649246718.72.0.75936202455.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30409 pull_request: https://github.com/python/cpython/pull/32360 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 08:13:58 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 12:13:58 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version In-Reply-To: <1649245690.69.0.819666155378.issue47239@roundup.psfhosted.org> Message-ID: Steve Dower added the comment: It's fine here. It affects the same part of the code. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 08:16:57 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 12:16:57 +0000 Subject: [issue40421] [C API] Add public getter functions for the internal PyFrameObject structure In-Reply-To: <1588079870.34.0.984904607646.issue40421@roundup.psfhosted.org> Message-ID: <1649247417.79.0.267323855506.issue40421@roundup.psfhosted.org> Change by STINNER Victor : ---------- pull_requests: +30410 pull_request: https://github.com/python/cpython/pull/32361 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 08:33:40 2022 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Apr 2022 12:33:40 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649248420.93.0.317598619918.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 765f6dee0fcf55c6ea258c2be4cc9dfb1b014f60 by Christian Heimes in branch 'main': bpo-40280: WASM defaults to no dynamic linking (GH-32360) https://github.com/python/cpython/commit/765f6dee0fcf55c6ea258c2be4cc9dfb1b014f60 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 08:42:10 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 12:42:10 +0000 Subject: [issue47189] What's new in Python 3.11: Faster CPython In-Reply-To: <1649245132.42.0.0666631089733.issue47189@roundup.psfhosted.org> Message-ID: <1649248930.09.0.157555143015.issue47189@roundup.psfhosted.org> Change by Ken Jin : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 09:12:45 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 13:12:45 +0000 Subject: [issue40421] [C API] Add public getter functions for the internal PyFrameObject structure In-Reply-To: <1588079870.34.0.984904607646.issue40421@roundup.psfhosted.org> Message-ID: <1649250765.31.0.542758456467.issue40421@roundup.psfhosted.org> STINNER Victor added the comment: New changeset 14a9b4895b61bcd46ed968c43c5eec27670a0aac by Victor Stinner in branch 'main': bpo-40421: test_capi uses assertEqual(), not assertEquals() (GH-32361) https://github.com/python/cpython/commit/14a9b4895b61bcd46ed968c43c5eec27670a0aac ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 09:18:28 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 13:18:28 +0000 Subject: [issue40421] [C API] Add public getter functions for the internal PyFrameObject structure In-Reply-To: <1588079870.34.0.984904607646.issue40421@roundup.psfhosted.org> Message-ID: <1649251108.66.0.649744279754.issue40421@roundup.psfhosted.org> STINNER Victor added the comment: IMO the initial goal is now reached. I close the issue. Thanks to everyone who helped implementing these changes! The PyFrameObject structure is now opaque in Python 3.11. New getter functions of the Python 3.11 C API: * PyFrame_GetBuiltins() * PyFrame_GetGenerator() * PyFrame_GetGlobals() * PyFrame_GetLocals() Finally, the PyFrameObject structure now has its own page in the C API documentation: https://docs.python.org/dev/c-api/frame.html As explained in previous comments, the work is not done: Cython, greenlet, gevent and coverage still need more getter and/or setter functions. Adding more functions is being discussed in this external issue: https://github.com/faster-cpython/ideas/issues/309 I propose to open new specific issues to add new functions. For example, open an issue to add a getter for the f_lasti member. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 09:20:11 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 13:20:11 +0000 Subject: [issue39947] [C API] Make the PyThreadState structure opaque (move it to the internal C API) In-Reply-To: <1584035214.47.0.672795796186.issue39947@roundup.psfhosted.org> Message-ID: <1649251211.75.0.233217751272.issue39947@roundup.psfhosted.org> STINNER Victor added the comment: I would be nice to make the PyThreadState opaque in Python 3.12. IMO it's too late for Python 3.11. Hopefully, Cython should be prepared for such change. At the beginning, maybe Cython can just use the internal C API, as it does to access the internal PyFrameObject structure. ---------- versions: +Python 3.11 -Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 09:56:37 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 13:56:37 +0000 Subject: [issue47241] [C API] Move the PyCodeObject structure to the internal C API (make the structure opaque) Message-ID: <1649253397.09.0.174681566447.issue47241@roundup.psfhosted.org> New submission from STINNER Victor : The PyCodeObject structure is documented at: https://docs.python.org/dev/c-api/code.html The structured evolved a lot in Python 3.11 to optimize Python/ceval.c performance: * read-only co_code (object) was replaced with modifiable co_code_adaptive (char[]) * co_varnames, co_freevars and co_cellvars were removed: merged into co_localsplusnames with co_localspluskinds * co_cell2arg was removed * co_zombieframe ("free list") was removed * co_opcache, co_opcache_map, co_opcache_flag and co_opcache_size were removed: see PEP 659 https://peps.python.org/pep-0659/ New members: * co_exceptiontable * co_warmup, co_code_adaptive * co_nlocalsplus, co_nplaincellvars, co_ncellvars, co_nfreevars * co_localsplusnames, co_localspluskinds * co_qualname * co_endlinetable, co_columntable The PyCodeObject structure should be made opaque in the public C API and only accessed with function calls. In Python 3.11, the PyFrameObject structure was made opaque (bpo-46836) and multiple getters were added (bpo-40421). The idea is similar, but it might be too late to do that in Python 3.11 (beta1 feature freeze is close). --- By the way, it was proposed multiple times on python-dev to mark the PyCode_New() function as "unstable" since its API changed often. PEP 670 "Python Positional-Only Parameters" caused a lot of troubles in Cython when it added a new parameter to PyCode_New(). The change was reverted: instead, a new PyCode_NewWithPosOnlyArgs() function was added. * PyCode_New() has 19 parameters! * PyCode_NewWithPosOnlyArgs() has 20 parameters!! On Python 3.11a1 and newer, Cython uses the code.replace() method (added to Python 3.8) to build new code objects. Otherwise, it just calls directly PyCode_New(). https://docs.python.org/dev/library/types.html#types.CodeType.replace ---------- components: C API messages: 416869 nosy: vstinner priority: normal severity: normal status: open title: [C API] Move the PyCodeObject structure to the internal C API (make the structure opaque) versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 09:57:47 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 13:57:47 +0000 Subject: [issue40421] [C API] Add public getter functions for the internal PyFrameObject structure In-Reply-To: <1588079870.34.0.984904607646.issue40421@roundup.psfhosted.org> Message-ID: <1649253467.56.0.695507945916.issue40421@roundup.psfhosted.org> STINNER Victor added the comment: The PyFrameObject structure was made opaque by bpo-46836. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:18:08 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 14:18:08 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version In-Reply-To: <1649243219.63.0.664316094201.issue47239@roundup.psfhosted.org> Message-ID: <1649254688.3.0.0425011528315.issue47239@roundup.psfhosted.org> Change by Steve Dower : ---------- keywords: +patch pull_requests: +30411 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32364 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:23:27 2022 From: report at bugs.python.org (matele secretaire) Date: Wed, 06 Apr 2022 14:23:27 +0000 Subject: [issue39187] urllib.robotparser does not respect the longest match for the rule In-Reply-To: <1577938445.91.0.743054392693.issue39187@roundup.psfhosted.org> Message-ID: <1649255007.06.0.508408003025.issue39187@roundup.psfhosted.org> matele secretaire added the comment: I can't find a documentation about it, but all of the robots.txt checkers I find behave like this. You can test on this site: https://www.st-info.fr/robots.txt, I believe that this is how it's implemented now in most parsers ? ---------- nosy: +matelesecretaire67 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:25:25 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 14:25:25 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version In-Reply-To: <1649243219.63.0.664316094201.issue47239@roundup.psfhosted.org> Message-ID: <1649255125.82.0.521159705108.issue47239@roundup.psfhosted.org> Steve Dower added the comment: PR posted, and here's some sample output with the change: C:\> py.exe --list * Active venv -V:3.11 Python 3.11 (Store) -V:3.10 Python 3.10 (Store) -V:3.10-32 Python 3.10 (32-bit) -V:3.9 Python 3.9 (64-bit) -V:3.9-32 Python 3.9 (32-bit) -V:3.8 Python 3.8 (64-bit) -V:3.7 Python 3.7 (64-bit) -V:ContinuumAnalytics/Anaconda38-64 Anaconda 2021.05 -V:ContinuumAnalytics/Anaconda37-64 Anaconda py37_4.8.3 C:\> py.exe --list-paths * C:\Temp\env310\Scripts\python_d.exe -V:3.11 C:\Users\steve\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.11_3847v3x7pw1km\python.exe -V:3.10 C:\Users\steve\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.10_3847v3x7pw1km\python.exe -V:3.10-32 C:\Users\steve\AppData\Local\Programs\Python\Python310-32\python.exe -V:3.9 C:\Users\steve\AppData\Local\Programs\Python\Python39\python.exe -V:3.9-32 C:\Users\steve\AppData\Local\Programs\Python\Python39-32\python.exe -V:3.8 C:\Python38\python.exe -V:3.7 C:\Python37\python.exe -V:ContinuumAnalytics/Anaconda38-64 C:\Users\steve\Anaconda3\python.exe -V:ContinuumAnalytics/Anaconda37-64 C:\Users\steve\Miniconda3\python.exe ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:30:29 2022 From: report at bugs.python.org (Petr Viktorin) Date: Wed, 06 Apr 2022 14:30:29 +0000 Subject: [issue47168] Improvements for stable ABI definition files In-Reply-To: <1648654772.36.0.475029979354.issue47168@roundup.psfhosted.org> Message-ID: <1649255429.48.0.864741591964.issue47168@roundup.psfhosted.org> Change by Petr Viktorin : ---------- pull_requests: +30412 pull_request: https://github.com/python/cpython/pull/32365 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:33:29 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 14:33:29 +0000 Subject: [issue47103] Copy pgort140.dll when building for PGO In-Reply-To: <1648065621.85.0.817743953237.issue47103@roundup.psfhosted.org> Message-ID: <1649255609.21.0.091766825708.issue47103@roundup.psfhosted.org> Change by Steve Dower : ---------- pull_requests: +30413 pull_request: https://github.com/python/cpython/pull/32366 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:37:24 2022 From: report at bugs.python.org (Ronald Oussoren) Date: Wed, 06 Apr 2022 14:37:24 +0000 Subject: [issue47240] Python 3.x built for ppc+ppc64 errs on: No module named 'msvcrt', '_posixsubprocess' In-Reply-To: <1649243339.36.0.0104612880177.issue47240@roundup.psfhosted.org> Message-ID: <1649255844.27.0.92991506098.issue47240@roundup.psfhosted.org> Ronald Oussoren added the comment: The problem you should look into is why the _posixsubprocess doesn't build, the message about msvcrt is a red herring due to the way subprocess.py is structured. Also compare the pyconfig.h files created for the two single architecture builds, maybe there are differences in detected features for the two architectures (other than CPU differences, there's a pymacconfig.h files that sets the correct values for sizes of basic types). That said, I won't be debugging this issue myself. MacOS on PowerPC is by now a thing of the past and IIRC the last time I had access to a 64-bit PPC machine was before GUI code would run properly in PPC64 mode. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:46:10 2022 From: report at bugs.python.org (Steven D'Aprano) Date: Wed, 06 Apr 2022 14:46:10 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation In-Reply-To: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> Message-ID: <1649256370.09.0.0145790217882.issue47234@roundup.psfhosted.org> Change by Steven D'Aprano : ---------- nosy: +steven.daprano _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:50:59 2022 From: report at bugs.python.org (Petr Viktorin) Date: Wed, 06 Apr 2022 14:50:59 +0000 Subject: [issue47115] Documentation inconsistency with the stable ABI In-Reply-To: <1648195503.34.0.47585180018.issue47115@roundup.psfhosted.org> Message-ID: <1649256659.11.0.497905006478.issue47115@roundup.psfhosted.org> Petr Viktorin added the comment: New changeset d79f118d044e9b4244b5dfda35448d39202d7f56 by Petr Viktorin in branch 'main': bpo-47115: Document which parts of structs are in limited API/stable ABI (GH-32196) https://github.com/python/cpython/commit/d79f118d044e9b4244b5dfda35448d39202d7f56 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 10:53:07 2022 From: report at bugs.python.org (Petr Viktorin) Date: Wed, 06 Apr 2022 14:53:07 +0000 Subject: [issue47169] Stable ABI: Some optional (#ifdef'd) functions aren't handled correctly In-Reply-To: <1648655557.05.0.882264493098.issue47169@roundup.psfhosted.org> Message-ID: <1649256787.52.0.667710417964.issue47169@roundup.psfhosted.org> Change by Petr Viktorin : ---------- keywords: +patch pull_requests: +30414 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32365 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:07:19 2022 From: report at bugs.python.org (miss-islington) Date: Wed, 06 Apr 2022 15:07:19 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo In-Reply-To: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> Message-ID: <1649257639.29.0.498246659755.issue47235@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +30415 pull_request: https://github.com/python/cpython/pull/32367 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:07:14 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 15:07:14 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo In-Reply-To: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> Message-ID: <1649257634.87.0.269254199044.issue47235@roundup.psfhosted.org> Gregory P. Smith added the comment: New changeset ac1fb07b6ecb6b93446484f52894914e5199de63 by Gregory P. Smith in branch 'main': bpo-47235: Note where a typo is intentional in code. (GH-32348) https://github.com/python/cpython/commit/ac1fb07b6ecb6b93446484f52894914e5199de63 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:07:27 2022 From: report at bugs.python.org (miss-islington) Date: Wed, 06 Apr 2022 15:07:27 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo In-Reply-To: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> Message-ID: <1649257647.55.0.0861266563548.issue47235@roundup.psfhosted.org> Change by miss-islington : ---------- pull_requests: +30416 pull_request: https://github.com/python/cpython/pull/32368 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:13:34 2022 From: report at bugs.python.org (Josh Rosenberg) Date: Wed, 06 Apr 2022 15:13:34 +0000 Subject: [issue39812] Avoid daemon threads in concurrent.futures In-Reply-To: <1583071410.96.0.599538732629.issue39812@roundup.psfhosted.org> Message-ID: <1649258014.29.0.478094956174.issue39812@roundup.psfhosted.org> Josh Rosenberg added the comment: I think this is causing a regression for code that explicitly desires the ThreadPoolExecutor to go away abruptly when all other non-daemon threads complete (by choosing not to use a with statement, and if shutdown is called, calling it with wait=False, or even with those conditions, by creating it from a daemon thread of its own). It doesn't seem like it's necessary, since the motivation was "subinterpreters forbid daemon threads" and the same release that contained this change (3.9.0alpha6) also contained #40234's change that backed out the change that forbade spawning daemon threads in subinterpreters (because they now support them by default). If the conflicts with some uses of subinterpreters that make it necessary to use non-daemon threads, could that be made a configurable option (ideally defaulting to the pre-3.9 choice to use daemon threads)? ---------- nosy: +josh.r _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:13:40 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 15:13:40 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo In-Reply-To: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> Message-ID: <1649258020.21.0.836064142783.issue47235@roundup.psfhosted.org> Change by Gregory P. Smith : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.8 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:15:35 2022 From: report at bugs.python.org (Josh Rosenberg) Date: Wed, 06 Apr 2022 15:15:35 +0000 Subject: [issue39812] Avoid daemon threads in concurrent.futures In-Reply-To: <1583071410.96.0.599538732629.issue39812@roundup.psfhosted.org> Message-ID: <1649258135.79.0.76585498562.issue39812@roundup.psfhosted.org> Change by Josh Rosenberg : ---------- Removed message: https://bugs.python.org/msg416876 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:30:12 2022 From: report at bugs.python.org (miss-islington) Date: Wed, 06 Apr 2022 15:30:12 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo In-Reply-To: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> Message-ID: <1649259012.2.0.7174817928.issue47235@roundup.psfhosted.org> miss-islington added the comment: New changeset 3856b4995ec0e632d47b733cdecb5183ac830568 by Miss Islington (bot) in branch '3.10': bpo-47235: Note where a typo is intentional in code. (GH-32348) https://github.com/python/cpython/commit/3856b4995ec0e632d47b733cdecb5183ac830568 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:30:37 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 15:30:37 +0000 Subject: [issue24778] mailcap.findmatch: document shell command Injection danger in filename parameter In-Reply-To: <1438503907.2.0.780338961431.issue24778@psf.upfronthosting.co.za> Message-ID: <1649259037.11.0.678724754083.issue24778@roundup.psfhosted.org> STINNER Victor added the comment: In 2022, Python 3.11 still has the issue: ---------------- vstinner at apu$ python3.11 -m mailcap Mailcap files: /home/vstinner/.mailcap /etc/mailcap (...) Mailcap entries: (...) text/html copiousoutput lineno 5 view /usr/bin/xdg-open %s $ python3 -m mailcap text/html 'filename; pwd' Executing: /usr/bin/xdg-open filename; pwd (...) /home/vstinner/python/main ---------------- Maybe subst() can be modified to work on a list (as Bernd Dietzel proposed) and then use subprocess to avoid shell and so avoid having to pass a single string, but pass a *list* of arguments (strings). The problem is that it would change the public mailcap.findmatch() API: "Return a 2-tuple; the first element is a string containing the command line to be executed (which can be passed to os.system()), (...)" https://docs.python.org/dev/library/mailcap.html#mailcap.findmatch Adding a new findmatch_list() function avoids the backward compatibility issue, but the existing findmatch() function would remain vulnerable. The other problem is that the mailcap.findmatch() function supports "test" command which executes os.system() on string created by mailcap.subst(). Is the mailcap format (RFC 1524) still used in 2022? Does the mailcap module still belong to the Python stdlib in 2022? I propose to: * (1) Document the shell injection vulnerability: the caller is responsible to validate the filename * (2) Deprecate the mailcap module A code search in the top 5000 PyPI projects (at 2022-01-26) did not find any Python source code using the "mailcap" module. I only found the word "mailcap" used to refer to other things: * https://docs.djangoproject.com/en/4.0/ref/contrib/staticfiles/ mentions a "mailcap" RHEL package: "This can be achieved, for example, by installing or updating the mailcap package on a Red Hat distribution, mime-support on a Debian distribution, or by editing the keys under HKEY_CLASSES_ROOT in the Windows registry." * wxPython refers to "KDE< mailcap and mime.types" https://docs.djangoproject.com/en/4.0/ref/contrib/staticfiles/ ---------- nosy: +vstinner versions: +Python 3.11 -Python 2.7, Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:32:29 2022 From: report at bugs.python.org (miss-islington) Date: Wed, 06 Apr 2022 15:32:29 +0000 Subject: [issue47235] Clarify that `assret_called_once_with` sample code is intended typo In-Reply-To: <1649198769.94.0.805026141496.issue47235@roundup.psfhosted.org> Message-ID: <1649259149.61.0.840455788525.issue47235@roundup.psfhosted.org> miss-islington added the comment: New changeset 770780e63e2a99f842670ef901a257ba64293d6b by Miss Islington (bot) in branch '3.9': bpo-47235: Note where a typo is intentional in code. (GH-32348) https://github.com/python/cpython/commit/770780e63e2a99f842670ef901a257ba64293d6b ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:43:49 2022 From: report at bugs.python.org (Guido van Rossum) Date: Wed, 06 Apr 2022 15:43:49 +0000 Subject: [issue47237] Inheritance from base class with property in class makes them non-instantiatable In-Reply-To: <1649234476.2.0.0289467757353.issue47237@roundup.psfhosted.org> Message-ID: <1649259829.89.0.340441593394.issue47237@roundup.psfhosted.org> Guido van Rossum added the comment: So is the conclusion that this should be closed as "not a bug"? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:46:01 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Wed, 06 Apr 2022 15:46:01 +0000 Subject: [issue47237] Inheritance from base class with property in class makes them non-instantiatable In-Reply-To: <1649234476.2.0.0289467757353.issue47237@roundup.psfhosted.org> Message-ID: <1649259961.5.0.295343668039.issue47237@roundup.psfhosted.org> Jelle Zijlstra added the comment: I think the behavior with regular classes is expected (that's just how inheritance works), but a case could be made that dataclasses should handle this case specially. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:54:34 2022 From: report at bugs.python.org (Eric V. Smith) Date: Wed, 06 Apr 2022 15:54:34 +0000 Subject: [issue47237] Inheritance from base class with property in class makes them non-instantiatable In-Reply-To: <1649234476.2.0.0289467757353.issue47237@roundup.psfhosted.org> Message-ID: <1649260474.25.0.281514134605.issue47237@roundup.psfhosted.org> Eric V. Smith added the comment: What would dataclasses do that's different from a regular class? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 11:56:20 2022 From: report at bugs.python.org (Guido van Rossum) Date: Wed, 06 Apr 2022 15:56:20 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation In-Reply-To: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> Message-ID: <1649260580.35.0.595093988826.issue47234@roundup.psfhosted.org> Change by Guido van Rossum : ---------- nosy: -gvanrossum _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 12:20:05 2022 From: report at bugs.python.org (antudic) Date: Wed, 06 Apr 2022 16:20:05 +0000 Subject: [issue47242] Annoying white bar in IDLE (line 457 in sidebar.py) Message-ID: <1649262004.92.0.683235384715.issue47242@roundup.psfhosted.org> New submission from antudic : I noticed there was a white bar to the left in my IDLE when I upgraded to 3.10, it stuck out like a soar thumb since I have a custom dark theme. This was not an issue with earlier versions. After scouring through the code I found the perpetrator to be a "padx=2" in sidebar.py on line 457. Changing this value from "2" to "0" fixes this issue. Changing this line of code solves this issue and leaves the color choices up to the user, as intended. ---------- assignee: terry.reedy components: IDLE messages: 416883 nosy: antudic, terry.reedy priority: normal severity: normal status: open title: Annoying white bar in IDLE (line 457 in sidebar.py) type: behavior versions: Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 12:54:27 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 16:54:27 +0000 Subject: [issue47211] Remove re.template() and re.TEMPLATE In-Reply-To: <1649062573.34.0.575167973104.issue47211@roundup.psfhosted.org> Message-ID: <1649264067.41.0.458916483122.issue47211@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset b09184bf05b07b77c5ecfedd4daa846be3cbf0a9 by Serhiy Storchaka in branch 'main': bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300) https://github.com/python/cpython/commit/b09184bf05b07b77c5ecfedd4daa846be3cbf0a9 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 12:54:53 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 16:54:53 +0000 Subject: [issue47227] Suppress expression chaining for RE parsing errors In-Reply-To: <1649162511.96.0.951091623392.issue47227@roundup.psfhosted.org> Message-ID: <1649264093.36.0.332877468354.issue47227@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset 50872dbadcba1f52867b6f76050cd7b5d0aa1e18 by Serhiy Storchaka in branch 'main': bpo-47227: Suppress expression chaining for more RE parsing errors (GH-32333) https://github.com/python/cpython/commit/50872dbadcba1f52867b6f76050cd7b5d0aa1e18 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 12:56:41 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 16:56:41 +0000 Subject: [issue43464] set intersections should short-circuit In-Reply-To: <1615394359.7.0.616950024555.issue43464@roundup.psfhosted.org> Message-ID: <1649264201.99.0.441589519406.issue43464@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset 31cd25f4e17cd68487dc76c1b2ec162a646818c2 by Serhiy Storchaka in branch 'main': bpo-43464: Optimize set.intersection() for non-set arguments (GH-31316) https://github.com/python/cpython/commit/31cd25f4e17cd68487dc76c1b2ec162a646818c2 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 12:57:17 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 16:57:17 +0000 Subject: [issue46721] Optimize set.issuperset() for non-set argument In-Reply-To: <1644592523.91.0.460084742995.issue46721@roundup.psfhosted.org> Message-ID: <1649264237.34.0.64993624021.issue46721@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset a69a4a917c436579c2c4112081ea86a70f1f05d3 by Serhiy Storchaka in branch 'main': bpo-46721: Optimize set.issuperset() for non-set arguments (GH-31280) https://github.com/python/cpython/commit/a69a4a917c436579c2c4112081ea86a70f1f05d3 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:00:19 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 17:00:19 +0000 Subject: [issue26579] Support pickling slots in subclasses of common classes In-Reply-To: <1458204186.54.0.651323931278.issue26579@psf.upfronthosting.co.za> Message-ID: <1649264419.93.0.594038472678.issue26579@roundup.psfhosted.org> Serhiy Storchaka added the comment: New changeset 884eba3c76916889fd6bff3b37b8552bfb4f9566 by Serhiy Storchaka in branch 'main': bpo-26579: Add object.__getstate__(). (GH-2821) https://github.com/python/cpython/commit/884eba3c76916889fd6bff3b37b8552bfb4f9566 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:02:02 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 17:02:02 +0000 Subject: [issue26579] Support pickling slots in subclasses of common classes In-Reply-To: <1458204186.54.0.651323931278.issue26579@psf.upfronthosting.co.za> Message-ID: <1649264522.32.0.615884324699.issue26579@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 -Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:03:17 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 17:03:17 +0000 Subject: [issue43464] set intersections should short-circuit In-Reply-To: <1615394359.7.0.616950024555.issue43464@roundup.psfhosted.org> Message-ID: <1649264597.04.0.719818324924.issue43464@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.11 -Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:03:44 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 17:03:44 +0000 Subject: [issue47227] Suppress expression chaining for RE parsing errors In-Reply-To: <1649162511.96.0.951091623392.issue47227@roundup.psfhosted.org> Message-ID: <1649264624.5.0.721154632604.issue47227@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:04:13 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 17:04:13 +0000 Subject: [issue47211] Remove re.template() and re.TEMPLATE In-Reply-To: <1649062573.34.0.575167973104.issue47211@roundup.psfhosted.org> Message-ID: <1649264653.98.0.649598563248.issue47211@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:05:20 2022 From: report at bugs.python.org (Serhiy Storchaka) Date: Wed, 06 Apr 2022 17:05:20 +0000 Subject: [issue46721] Optimize set.issuperset() for non-set argument In-Reply-To: <1644592523.91.0.460084742995.issue46721@roundup.psfhosted.org> Message-ID: <1649264720.55.0.245717447596.issue46721@roundup.psfhosted.org> Change by Serhiy Storchaka : ---------- dependencies: -Use-after-free by mutating set during set operations resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:21:16 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 17:21:16 +0000 Subject: [issue46769] Improve documentation for `typing.TypeVar` In-Reply-To: <1645030878.3.0.822530505617.issue46769@roundup.psfhosted.org> Message-ID: <1649265676.83.0.678254051155.issue46769@roundup.psfhosted.org> Change by Ken Jin : ---------- pull_requests: +30417 pull_request: https://github.com/python/cpython/pull/32374 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:23:31 2022 From: report at bugs.python.org (LiarPrincess) Date: Wed, 06 Apr 2022 17:23:31 +0000 Subject: [issue47243] Duplicate entry in 'Objects/unicodetype_db.h' Message-ID: <1649265811.35.0.201706038285.issue47243@roundup.psfhosted.org> New submission from LiarPrincess : This one is so tiny that I'm not really sure we want to merge it? === Problem === `Objects/unicodetype_db.h` starts in a following way: ```c /* a list of unique character type descriptors */ const _PyUnicode_TypeRecord _PyUnicode_TypeRecords[] = { {0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 32}, {0, 0, 0, 0, 0, 48}, ? ``` The 1st record (`{0, 0, 0, 0, 0, 0}`) is duplicated. This is not a problem, since the 1st occurrence is never used, but if we wanted to remove it then this is the ticket about it. === Detailed description === `Objects/unicodetype_db.h` is generated by `Tools/unicode/makeunicodedata.py` (I removed irrelevant lines): ```py def makeunicodetype(unicode, trace): dummy = (0, 0, 0, 0, 0, 0) table = [dummy] # (1) cache = {0: dummy} # (2) for char in unicode.chars: # Things? item = (upper, lower, title, decimal, digit, flags) i = cache.get(item) # (3) if i is None: cache[item] = i = len(table) table.append(item) index[char] = i ``` - (1) - list which contains unique character properties (as `(upper, lower, title, decimal, digit, flags)` tuples) - (2) - mapping from character properties to index in `table` - improperly initialized as a mapping from index to character properties - (3) - we check if the current tuple is in `cache` === Result === The first time we get to a character that has `(0, 0, 0, 0, 0, 0)` properties (which is code point 0 - `NULL`) we check if it is in cache. It it not (there is an entry that goes from index `0` to `(0, 0, 0, 0, 0, 0)` - the other way around), so we add this entry to `table` and `cache`. === Fix === In the line `(2)` we should have: `cache = {dummy: 0}`. Obviously after doing so we have to run `makeunicodedata.py` - this is why this simple change modifies a lot of lines. I will submit PR on github in just a sec? ---------- components: Unicode messages: 416889 nosy: LiarPrincess, ezio.melotti, vstinner priority: normal severity: normal status: open title: Duplicate entry in 'Objects/unicodetype_db.h' type: enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:24:21 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 17:24:21 +0000 Subject: [issue46769] Improve documentation for `typing.TypeVar` In-Reply-To: <1645030878.3.0.822530505617.issue46769@roundup.psfhosted.org> Message-ID: <1649265861.43.0.46252714118.issue46769@roundup.psfhosted.org> Change by Ken Jin : ---------- pull_requests: +30418 pull_request: https://github.com/python/cpython/pull/32375 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:28:51 2022 From: report at bugs.python.org (LiarPrincess) Date: Wed, 06 Apr 2022 17:28:51 +0000 Subject: [issue47243] Duplicate entry in 'Objects/unicodetype_db.h' In-Reply-To: <1649265811.35.0.201706038285.issue47243@roundup.psfhosted.org> Message-ID: <1649266131.53.0.509520426359.issue47243@roundup.psfhosted.org> Change by LiarPrincess : ---------- keywords: +patch pull_requests: +30419 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32376 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:35:04 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 17:35:04 +0000 Subject: [issue47104] Rewrite asyncio.to_thread tests to use IsolatedAsyncioTestCase In-Reply-To: <1648070237.55.0.0731871988516.issue47104@roundup.psfhosted.org> Message-ID: <1649266504.05.0.59537253393.issue47104@roundup.psfhosted.org> Ken Jin added the comment: Andrew, it seems that the post-commit CI has started failing after this commit. Specifically it says "test_asyncio failed (env changed)" >From this page, https://github.com/python/cpython/commits/3.10?after=3856b4995ec0e632d47b733cdecb5183ac830568+34&branch=3.10 the Ubuntu CI link for that commit: https://github.com/python/cpython/runs/5667655099?check_suite_focus=true Failing buildbots on 3.10: https://buildbot.python.org/all/#/release_status Sorry that I can't help more. I'm not an asyncio expert so I'm not sure why this is triggering. ---------- nosy: +kj resolution: fixed -> status: closed -> open _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:45:12 2022 From: report at bugs.python.org (Alec Rosenbaum) Date: Wed, 06 Apr 2022 17:45:12 +0000 Subject: [issue47244] email.utils.formataddr does not respect double spaces Message-ID: <1649267112.95.0.680497304101.issue47244@roundup.psfhosted.org> New submission from Alec Rosenbaum : It seems that `email.utils.formataddr` and `email.utils.parseaddr` are not directly inverse from each other, because `formataddr` does not respect double spaces within the "realname" section. For example: ``` from email.utils import formataddr, parseaddr identity = '"foo bar" ' print(formataddr(parseaddr(identity))) # 'foo bar ' print(formataddr(parseaddr(formataddr(parseaddr(identity))))) # 'foo bar ' ``` The first round trip strips the quotes, and the second round trip strips the double space in the "realname" section. The utility function only seems to check for special characters, but it should also check for double spaces. ---------- components: email messages: 416891 nosy: AlecRosenbaum, barry, r.david.murray priority: normal severity: normal status: open title: email.utils.formataddr does not respect double spaces type: behavior versions: Python 3.10, Python 3.11, Python 3.7, Python 3.8, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:48:43 2022 From: report at bugs.python.org (LiarPrincess) Date: Wed, 06 Apr 2022 17:48:43 +0000 Subject: [issue47243] Duplicate entry in 'Objects/unicodetype_db.h' In-Reply-To: <1649265811.35.0.201706038285.issue47243@roundup.psfhosted.org> Message-ID: <1649267323.76.0.758580598752.issue47243@roundup.psfhosted.org> LiarPrincess added the comment: CLA is signed, but there is this 'it might take a few days before your tracker profile is updated'. Added version 3.11 (present also in previous versions, bot no point in back-porting it). Github: https://github.com/python/cpython/pull/32376 ---------- versions: +Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 13:56:00 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 17:56:00 +0000 Subject: [issue47104] Rewrite asyncio.to_thread tests to use IsolatedAsyncioTestCase In-Reply-To: <1648070237.55.0.0731871988516.issue47104@roundup.psfhosted.org> Message-ID: <1649267760.9.0.292902024025.issue47104@roundup.psfhosted.org> Ken Jin added the comment: I forgot to specify, that this is *only* on 3.10, not main. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 14:00:35 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 18:00:35 +0000 Subject: [issue46769] Improve documentation for `typing.TypeVar` In-Reply-To: <1645030878.3.0.822530505617.issue46769@roundup.psfhosted.org> Message-ID: <1649268035.01.0.398280451032.issue46769@roundup.psfhosted.org> Ken Jin added the comment: New changeset 80af26d25af5568229d31ecb2a8f1bf9702b7791 by Ken Jin in branch '3.10': [3.10] bpo-46769: Fix backticks in typing.rst to appease rstlint (GH-32374) https://github.com/python/cpython/commit/80af26d25af5568229d31ecb2a8f1bf9702b7791 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 14:03:19 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 18:03:19 +0000 Subject: [issue46769] Improve documentation for `typing.TypeVar` In-Reply-To: <1645030878.3.0.822530505617.issue46769@roundup.psfhosted.org> Message-ID: <1649268199.77.0.927077836547.issue46769@roundup.psfhosted.org> Ken Jin added the comment: New changeset d6a7ee69fb3263450ba47bed9104f4a68a08a9bd by Ken Jin in branch '3.9': [3.9] bpo-46769: Fix backticks in typing.rst to appease rstlint (GH-32375) https://github.com/python/cpython/commit/d6a7ee69fb3263450ba47bed9104f4a68a08a9bd ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 14:15:05 2022 From: report at bugs.python.org (Ken Jin) Date: Wed, 06 Apr 2022 18:15:05 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation In-Reply-To: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> Message-ID: <1649268905.41.0.946974590956.issue47234@roundup.psfhosted.org> Change by Ken Jin : ---------- nosy: -kj _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 14:22:50 2022 From: report at bugs.python.org (Brett Cannon) Date: Wed, 06 Apr 2022 18:22:50 +0000 Subject: [issue47061] Deprecate modules listed in PEP 594 In-Reply-To: <1647632770.65.0.881581261318.issue47061@roundup.psfhosted.org> Message-ID: <1649269370.47.0.753686699633.issue47061@roundup.psfhosted.org> Brett Cannon added the comment: New changeset 32b33879c2e19cde735c1971b06869976200e1d8 by Brett Cannon in branch 'main': bpo-47061: use `warnings._deprecated()` with asynchat, asyncore, and smtpd (GH-32350) https://github.com/python/cpython/commit/32b33879c2e19cde735c1971b06869976200e1d8 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 16:24:52 2022 From: report at bugs.python.org (=?utf-8?b?0JzQsNGA0Log0JrQvtGA0LXQvdCx0LXRgNCz?=) Date: Wed, 06 Apr 2022 20:24:52 +0000 Subject: [issue47245] Subprocess with vfork() is broken Message-ID: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> New submission from ???? ????????? : Using vfork in #35823 is VERY tricky. Please comment out vfork() usage for now. Yes, we can (should) use vfork(), but we have to rewrite the child code. https://bugzilla.kernel.org/show_bug.cgi?id=215813 I would say it's URGENT. ---------- components: Extension Modules messages: 416897 nosy: socketpair priority: normal severity: normal status: open title: Subprocess with vfork() is broken versions: Python 3.10, Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 16:30:00 2022 From: report at bugs.python.org (=?utf-8?b?0JzQsNGA0Log0JrQvtGA0LXQvdCx0LXRgNCz?=) Date: Wed, 06 Apr 2022 20:30:00 +0000 Subject: [issue47245] Subprocess with vfork() is broken In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649277000.36.0.636333704682.issue47245@roundup.psfhosted.org> ???? ????????? added the comment: Rewriting in a way that guarantee no stack (and heap) usage. Because stack is shared between child and parent. It seems there is no crossplatform way. Happily we can use some code like I wrote by link in the first message. OR, stick to posix_nspawn which is cross-platform. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 16:37:58 2022 From: report at bugs.python.org (=?utf-8?b?0JzQsNGA0Log0JrQvtGA0LXQvdCx0LXRgNCz?=) Date: Wed, 06 Apr 2022 20:37:58 +0000 Subject: [issue47245] Subprocess with vfork() is broken In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649277478.18.0.553838212142.issue47245@roundup.psfhosted.org> ???? ????????? added the comment: https://github.com/python/cpython/blob/4a08c4c469d36f99d3a5e0f17ad82ab35dcf2835/Modules/_posixsubprocess.c#L717 child_exec(exec_array, argv, envp, cwd, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, errpipe_read, errpipe_write, close_fds, restore_signals, call_setsid, call_setgid, gid, call_setgroups, groups_size, groups, call_setuid, uid, child_umask, child_sigmask, py_fds_to_keep, preexec_fn, preexec_fn_args_tuple); ---------------- Py_NO_INLINE static void child_exec(char *const exec_array[], char *const argv[], char *const envp[], const char *cwd, int p2cread, int p2cwrite, int c2pread, int c2pwrite, ------------- So, calling child_exec pushes to stack GUARANTEED. This is the bug. In fact everything works, but is too weak and break at any moment. Again. Please comment calling vfork() for now. And re-implement child part later. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 17:13:05 2022 From: report at bugs.python.org (=?utf-8?b?0JzQsNGA0Log0JrQvtGA0LXQvdCx0LXRgNCz?=) Date: Wed, 06 Apr 2022 21:13:05 +0000 Subject: [issue47245] Subprocess with vfork() is broken In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649279585.96.0.0625291318039.issue47245@roundup.psfhosted.org> ???? ????????? added the comment: Solution: https://github.com/bminor/glibc/blob/master/sysdeps/unix/sysv/linux/spawni.c#L309 In short - do not use vfork(). Use clone(CLONE_VM | CLONE_VFORK). and do something with stack. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 17:16:41 2022 From: report at bugs.python.org (=?utf-8?b?0JzQsNGA0Log0JrQvtGA0LXQvdCx0LXRgNCz?=) Date: Wed, 06 Apr 2022 21:16:41 +0000 Subject: [issue35823] Use vfork() in subprocess on Linux In-Reply-To: <1548381806.02.0.709569222975.issue35823@roundup.psfhosted.org> Message-ID: <1649279801.15.0.388971157914.issue35823@roundup.psfhosted.org> ???? ????????? added the comment: See #47245. https://github.com/bminor/glibc/blob/master/sysdeps/unix/sysv/linux/spawni.c#L309 In short - do not use vfork(). Use clone(CLONE_VM | CLONE_VFORK). And build separate stack. Current implementation is heavily broken. Another guy has failed: https://bugzilla.kernel.org/show_bug.cgi?id=215813. Please comment calling vfork() as soon as possible in order to fallback to fork() implementation. Until you (or me?) write good vfork children code. ---------- nosy: +socketpair _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 17:56:11 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 21:56:11 +0000 Subject: [issue46576] test_peg_generator is extremely slow In-Reply-To: <1643488302.33.0.475443222477.issue46576@roundup.psfhosted.org> Message-ID: <1649282171.67.0.612760921879.issue46576@roundup.psfhosted.org> Gregory P. Smith added the comment: New changeset 612e422c6ea9df60d3382ed1491d8254c283e93f by Jeremy Kloth in branch 'main': bpo-46576: Speed up test_peg_generator by using a static library for shared sources (GH-32338) https://github.com/python/cpython/commit/612e422c6ea9df60d3382ed1491d8254c283e93f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 18:22:07 2022 From: report at bugs.python.org (Jeremy Kloth) Date: Wed, 06 Apr 2022 22:22:07 +0000 Subject: [issue46576] test_peg_generator is extremely slow In-Reply-To: <1643488302.33.0.475443222477.issue46576@roundup.psfhosted.org> Message-ID: <1649283727.13.0.580480037918.issue46576@roundup.psfhosted.org> Change by Jeremy Kloth : ---------- pull_requests: +30420 pull_request: https://github.com/python/cpython/pull/32382 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 18:38:31 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 22:38:31 +0000 Subject: [issue35134] Add a new Include/cpython/ subdirectory for the "CPython API" with implementation details In-Reply-To: <1541076409.33.0.788709270274.issue35134@psf.upfronthosting.co.za> Message-ID: <1649284711.46.0.765289808111.issue35134@roundup.psfhosted.org> Change by STINNER Victor : ---------- pull_requests: +30421 pull_request: https://github.com/python/cpython/pull/32383 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 18:46:26 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 22:46:26 +0000 Subject: [issue35134] Add a new Include/cpython/ subdirectory for the "CPython API" with implementation details In-Reply-To: <1541076409.33.0.788709270274.issue35134@psf.upfronthosting.co.za> Message-ID: <1649285186.54.0.825222418928.issue35134@roundup.psfhosted.org> Change by STINNER Victor : ---------- pull_requests: +30422 pull_request: https://github.com/python/cpython/pull/32384 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 18:47:22 2022 From: report at bugs.python.org (Thomas MK) Date: Wed, 06 Apr 2022 22:47:22 +0000 Subject: [issue47166] Dataclass transform should ignore TypeAlias variables In-Reply-To: <1648651772.62.0.141726987387.issue47166@roundup.psfhosted.org> Message-ID: <1649285242.44.0.207528994928.issue47166@roundup.psfhosted.org> Thomas MK added the comment: There is of course no hard reason for not using the global scope. I just often have enums (or other types) that are very closely linked to one class. And it makes sense to me then to have a TypeAlias in that class so that I don't have to import the enum separately. For normal classes, the nested TypeAlias works completely fine in the type checkers I tested (pyright and mypy). It's just dataclasses that are the problem. But I see now that there is a general wish to keep the implementation of dataclass simple, which I can understand. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 18:58:30 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 22:58:30 +0000 Subject: [issue35134] Add a new Include/cpython/ subdirectory for the "CPython API" with implementation details In-Reply-To: <1541076409.33.0.788709270274.issue35134@psf.upfronthosting.co.za> Message-ID: <1649285910.45.0.594447248533.issue35134@roundup.psfhosted.org> Change by STINNER Victor : ---------- pull_requests: +30423 pull_request: https://github.com/python/cpython/pull/32385 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 18:59:16 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 22:59:16 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649285956.82.0.0203648951119.issue47245@roundup.psfhosted.org> Gregory P. Smith added the comment: Can you provide a reproducable way to demonstrate evidence of a problem in CPython's use of the Linux libc vfork() implementation? A test case that causes a CPython parent or child process on Linux when built with HAVE_VFORK failing to function properly would help prioritize this because in practice nobody has reported problems in 3.10. (we've deployed the subprocess vfork code into thousands production Python programs at work in the past year w/o issues being reported - though we have a constrained environment with use on only a couple of libc versions and limited set of kernels on a few very common architectures) General thinking (possible dated and incorrect - against what https://man7.org/linux/man-pages/man2/vfork.2.html wording claims with its "or calls any other function" text): Pushing additional data onto the stack in the child process _should_ not a problem. That by definition lands in previously unused pre-allocated stack space. If that page faults, that could map a new page into the process state shared by both the paused parent and running child. But this page mapping should be fine - the child exec that resumes the parent means the parent is the only one who sees it. When the parent process resumes, sure, that data will be in that memory on the unallocated portion of stack, but critically the *stack pointer* in the parent process (a register) never changes. As far as I understand things, registers are not shared between vfork()ed processes. So the parent only sees some temporary data having been written to the unused region of the stack by the since-replaced by exec() child process. No big deal. **Untrue wishful thinking**: If a new stack were needed on a given platform for use in the vfork()ed child, I'd like it to be the job of libc to take care of that for us. glibc sources do no such thing (every vfork supporting architecture has a vfork.S code that appears to make the syscall and jump back to the caller without stack manipulation). ---------- assignee: -> gregory.p.smith nosy: +gregory.p.smith stage: -> test needed title: Subprocess with vfork() is broken -> potential undefined behavior with subprocess using vfork() on Linux type: -> behavior _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:01:45 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 23:01:45 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649286105.31.0.052810668697.issue47245@roundup.psfhosted.org> Gregory P. Smith added the comment: Immediate action item: Add a way for people to disable vfork at runtime by setting a flag in the subprocess module, just in case. This can be backported to 3.10 - It'd provide an escape hatch for anyone without a need to rebuild Python to disable use of vfork() without resorting to LD_PRELOAD hacks. This is not an urgent issue unless actual practical problems are being observed in the field. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:01:57 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 23:01:57 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649286117.0.0.848654939684.issue47245@roundup.psfhosted.org> Change by Gregory P. Smith : ---------- keywords: +3.10regression _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:05:35 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 23:05:35 +0000 Subject: [issue35134] Add a new Include/cpython/ subdirectory for the "CPython API" with implementation details In-Reply-To: <1541076409.33.0.788709270274.issue35134@psf.upfronthosting.co.za> Message-ID: <1649286335.29.0.465185688326.issue35134@roundup.psfhosted.org> STINNER Victor added the comment: New changeset ca219f6dfc57f8f4984f96df0f733b7de92fe91c by Victor Stinner in branch 'main': bpo-35134: Add Include/cpython/complexobject.h header (GH-32383) https://github.com/python/cpython/commit/ca219f6dfc57f8f4984f96df0f733b7de92fe91c ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:10:08 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 23:10:08 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version In-Reply-To: <1649243219.63.0.664316094201.issue47239@roundup.psfhosted.org> Message-ID: <1649286608.37.0.034037374387.issue47239@roundup.psfhosted.org> Steve Dower added the comment: New changeset 2390b2236d4b6ea96217478221d6f7d4b4f344f8 by Steve Dower in branch 'main': bpo-47239: Fixes py.exe output when run in a virtual environment. (GH-32364) https://github.com/python/cpython/commit/2390b2236d4b6ea96217478221d6f7d4b4f344f8 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:11:17 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 23:11:17 +0000 Subject: [issue47239] Python Launcher for Windows (`py -0`) no longer shows star ("*") for default version In-Reply-To: <1649243219.63.0.664316094201.issue47239@roundup.psfhosted.org> Message-ID: <1649286677.86.0.925729303803.issue47239@roundup.psfhosted.org> Change by Steve Dower : ---------- assignee: -> steve.dower resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:12:09 2022 From: report at bugs.python.org (Steve Dower) Date: Wed, 06 Apr 2022 23:12:09 +0000 Subject: [issue47103] Copy pgort140.dll when building for PGO In-Reply-To: <1648065621.85.0.817743953237.issue47103@roundup.psfhosted.org> Message-ID: <1649286729.98.0.158965329284.issue47103@roundup.psfhosted.org> Steve Dower added the comment: Backport is blocked on issue47104 (or a randomly successful CI run, which seems to occur occasionally). ---------- versions: +Python 3.10, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:15:31 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Apr 2022 23:15:31 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649286931.87.0.292828205813.issue47245@roundup.psfhosted.org> Gregory P. Smith added the comment: Our current assumptions around the use of vfork() are very much glibc specific. Another useful reference for reasoning, comments, and history is https://github.com/golang/go/blob/master/src/syscall/exec_linux.go#L146 `forkAndExecInChild1` ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:26:28 2022 From: report at bugs.python.org (STINNER Victor) Date: Wed, 06 Apr 2022 23:26:28 +0000 Subject: [issue35134] Add a new Include/cpython/ subdirectory for the "CPython API" with implementation details In-Reply-To: <1541076409.33.0.788709270274.issue35134@psf.upfronthosting.co.za> Message-ID: <1649287588.05.0.731287444841.issue35134@roundup.psfhosted.org> STINNER Victor added the comment: New changeset 5c4d1f6e0e192653560ae2941a6677fbf4fbd1f2 by Victor Stinner in branch 'main': bpo-35134: Add Include/cpython/setobject.h header (GH-32384) https://github.com/python/cpython/commit/5c4d1f6e0e192653560ae2941a6677fbf4fbd1f2 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:30:14 2022 From: report at bugs.python.org (Guido van Rossum) Date: Wed, 06 Apr 2022 23:30:14 +0000 Subject: [issue45116] Performance regression 3.10b1: inlining issue in the big _PyEval_EvalFrameDefault() function with Visual Studio (MSC) In-Reply-To: <1630942038.24.0.156228540374.issue45116@roundup.psfhosted.org> Message-ID: <1649287814.76.0.546846773206.issue45116@roundup.psfhosted.org> Guido van Rossum added the comment: > -_Py_DECREF (pgo hard reject) What exactly does "pgo hard reject" mean? I Googled it and found no hits besides this very issue. I am trying to redefine the top three from this error log as macros, but since I still don't have stable benchmark results it's hard to know if this has any effect. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 19:37:21 2022 From: report at bugs.python.org (C.A.M. Gerlach) Date: Wed, 06 Apr 2022 23:37:21 +0000 Subject: [issue5901] missing meta-info in documentation pdf In-Reply-To: <1241246578.79.0.771794251259.issue5901@psf.upfronthosting.co.za> Message-ID: <1649288241.94.0.969236436272.issue5901@roundup.psfhosted.org> Change by C.A.M. Gerlach : ---------- keywords: +patch nosy: +CAM-Gerlach nosy_count: 5.0 -> 6.0 pull_requests: +30424 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32386 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 20:09:15 2022 From: report at bugs.python.org (Guido van Rossum) Date: Thu, 07 Apr 2022 00:09:15 +0000 Subject: [issue45116] Performance regression 3.10b1: inlining issue in the big _PyEval_EvalFrameDefault() function with Visual Studio (MSC) In-Reply-To: <1630942038.24.0.156228540374.issue45116@roundup.psfhosted.org> Message-ID: <1649290155.64.0.472588639246.issue45116@roundup.psfhosted.org> Change by Guido van Rossum : ---------- pull_requests: +30425 pull_request: https://github.com/python/cpython/pull/32387 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 20:29:55 2022 From: report at bugs.python.org (STINNER Victor) Date: Thu, 07 Apr 2022 00:29:55 +0000 Subject: [issue35134] Add a new Include/cpython/ subdirectory for the "CPython API" with implementation details In-Reply-To: <1541076409.33.0.788709270274.issue35134@psf.upfronthosting.co.za> Message-ID: <1649291395.98.0.571486909042.issue35134@roundup.psfhosted.org> STINNER Victor added the comment: New changeset 85addfb9c6496eb3d26082348cf5aca848c877ef by Victor Stinner in branch 'main': bpo-35134: Remove the Include/code.h header file (GH-32385) https://github.com/python/cpython/commit/85addfb9c6496eb3d26082348cf5aca848c877ef ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 21:02:00 2022 From: report at bugs.python.org (Brett Cannon) Date: Thu, 07 Apr 2022 01:02:00 +0000 Subject: [issue47061] Deprecate modules listed in PEP 594 In-Reply-To: <1647632770.65.0.881581261318.issue47061@roundup.psfhosted.org> Message-ID: <1649293320.67.0.700399817151.issue47061@roundup.psfhosted.org> Change by Brett Cannon : ---------- pull_requests: +30426 pull_request: https://github.com/python/cpython/pull/32392 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Apr 6 21:50:13 2022 From: report at bugs.python.org (Guido van Rossum) Date: Thu, 07 Apr 2022 01:50:13 +0000 Subject: [issue47006] PEP 646: Decide on substitution behavior In-Reply-To: <1647204376.33.0.359883240304.issue47006@roundup.psfhosted.org> Message-ID: <1649296213.88.0.755138878209.issue47006@roundup.psfhosted.org> Guido van Rossum added the comment: We need to move on this, because the outcome of this discussion is a release blocker for 3.11b1 -- the next release! ---------- priority: normal -> release blocker type: -> behavior _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 01:12:24 2022 From: report at bugs.python.org (Takuo Matsuoka) Date: Thu, 07 Apr 2022 05:12:24 +0000 Subject: [issue47136] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass In-Reply-To: <1648379876.09.0.993153417089.issue47136@roundup.psfhosted.org> Message-ID: <1649308344.2.0.822231781591.issue47136@roundup.psfhosted.org> Takuo Matsuoka added the comment: Thank you Ethan for your comments. Sure, I was not familiar with how you measure the magnitude of the consequences. The code in my own work was of the kind of the generic example I gave, but I have abandoned the approach, and don't seem able to find it any more. I think the approach turned out not ideal for the specific aim I had, which I'm sorry I can't recall now. I might just say there may be circumstances where a not so thoughtful programmer might get inclined to implementing a metaclass C in some manner like: ``` class C(type(B)): # Skip __init__ . It's just to help checking type later. def __init__(self, /, *args, **kwargs): super().__init__(*args, **kwargs) dict_ = self.__dict__ try: name = dict_["__name__"] except KeyError: pass else: name._owner = self @classmethod def __prepare__(cls, /, *args, **kwargs): return dict(__name__ = cls._name(*args, **kwargs)) @classmethod class _name: def __get__(self, instance, owner=None): if instance is None: if issubclass(owner, self_owner := self._owner): return self else: raise TypeError(f'{owner} is not a subclass of' f' {self_owner.__qualname__}') name = instance._super().__name__ # See the class O # below. # # # Any procedure here, depending on what you'd like to do # with the instance of your class... # return name def __init__(self, cls, /, *args, **kwargs): ...... def __set__(self, instance, value): ...... def __delete__(self, instance): ...... ``` where she creates instances of the metaclass C by inheriting from: ``` class O(B, metaclass=C): def _super(self): return super() def __init_subclass__(cls, /, *args, **kwargs): return super().__init_subclass__(*args) ``` Another thing I can say is code that does something like that is not what I write often or even had written before, I guess. Still, I reported the issue thinking some people (possibly including myself) may come around the kind of code some time in the future again. If the behaviour is not going to be changed, then I think the documentation should at least be made sure to warn about it. I don't think the behaviour can be expected without documentation. Thanks. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 01:28:18 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Thu, 07 Apr 2022 05:28:18 +0000 Subject: [issue47229] IDLE UI crashes on Chromebook Linux/Bullseye In-Reply-To: <1649179144.58.0.96853130641.issue47229@roundup.psfhosted.org> Message-ID: <1649309298.28.0.390651908172.issue47229@roundup.psfhosted.org> Terry J. Reedy added the comment: "Thonny GUI uses the same as IDLE": I presume this means that Thonny also uses tkinter and both fail, which means that tkinter is not working right. Your test run indicates that python is not running correctly either. It only tried to run 10 of what should be over 400 tests and 9 of those failed because of failure to import the test file. You should report this to whoever supplies python on Chromebook, which I presume is whoever supplies Bullseye. ---------- resolution: -> third party stage: -> resolved status: open -> closed title: IDLE / Thonny UI crashes on Chromebook Linux/Bullseye -> IDLE UI crashes on Chromebook Linux/Bullseye _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 01:29:26 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Thu, 07 Apr 2022 05:29:26 +0000 Subject: [issue47229] Python tests fail on Chromebook Linux/Bullseye In-Reply-To: <1649179144.58.0.96853130641.issue47229@roundup.psfhosted.org> Message-ID: <1649309366.33.0.33121564234.issue47229@roundup.psfhosted.org> Change by Terry J. Reedy : ---------- components: +Tests -IDLE title: IDLE UI crashes on Chromebook Linux/Bullseye -> Python tests fail on Chromebook Linux/Bullseye type: crash -> behavior _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 03:23:18 2022 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Apr 2022 07:23:18 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649316198.89.0.683502891442.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: New changeset 2b16a08bc77475917dd5c96417aef4c5210b45ac by Christian Heimes in branch 'main': bpo-40280: Detect missing threading on WASM platforms (GH-32352) https://github.com/python/cpython/commit/2b16a08bc77475917dd5c96417aef4c5210b45ac ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 04:10:42 2022 From: report at bugs.python.org (Alexey Izbyshev) Date: Thu, 07 Apr 2022 08:10:42 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649319042.93.0.80847240761.issue47245@roundup.psfhosted.org> Alexey Izbyshev added the comment: In short: both this bug report and [1] are invalid. The reason why doing syscall(SYS_vfork) is illegal is explained by Florian Weimer in [2]: >The syscall function in glibc does not protect the on-stack return address against overwriting, so it can't be used to call SYS_vfork on x86. This is off-topic here because CPython calls vfork() via libc, but I'll still expand the Florian's comment. Suppose one wants to write my_vfork() wrapper over vfork syscall. When vfork syscall returns the first time, my_vfork() has to return to its caller. This necessarily involves knowing the return address. On some architectures this return address is stored on the stack by the caller (e.g. x86). The problem is that any data in my_vfork() stack frame can be overwritten by its caller once it returns the first time. Then, when vfork syscall returns the second time, my_vfork() could be unable to return to its caller because the data it fetches from its (now invalid) stack frame is garbage. This is precisely what happens when one implements my_vfork() as syscall(SYS_vfork). To avoid this, the most common strategy is to store the return address into a register that's guaranteed to be preserved around syscall by the OS ABI. For example, the x86-64 musl implementation [3] stores the return address in rdx (which is preserved around syscall) and then restores it after syscall (both on the first and the second return of the syscall). Now back to CPython. The real problem with stack sharing between the child and the parent could be due to compiler bugs, e.g. if a variable stored on the stack is modified in the child branch of "if (vfork())", but the compiler assumes that some other variable sharing the stack slot with the first one is *not* modified in the parent branch (i.e. after vfork() returns the second time). But all production compilers handle vfork() (and setjmp(), which has a similar issue) in a special way to avoid this, and GCC has __attribute__((returns_twice)) that a programmer could use for custom functions behaving in this way (my_vfork() would have to use this attribute). Regarding a separate stack for the child and clone(CLONE_VM|CLONE_VFORK), I considered this in #35823, but this has its own problems. The most important one is that CPython would be in business of choosing the correct stack size for the child's stack, but CPython is *not* in control of all the code executing in the child because it calls into libc. In practice, people use various LD_PRELOAD-based software that wraps various libc functions (e.g. Scratchbox 2 build environment for Sailfish OS is an LD_PRELOAD-based sandbox), so even common-sense assumptions like "execve() in libc can't use a lot of stack!" might turn out to be wrong. CPython *could* work around that by using direct syscalls for everything in the child, or by using some "large" size that "should be enough for everybody", but I wouldn't want to see that unless we have a real problem with vfork(). Note that vfork()-based posix_spawn() implementations in C libraries do *not* have this problem because they fully control all code in the child (e.g. they would use a non-interposable execve() symbol or a direct syscall). > Immediate action item: Add a way for people to disable vfork at runtime by setting a flag in the subprocess module, just in case. I don't think any action is needed at all, and I think this issue should be closed. > Our current assumptions around the use of vfork() are very much glibc specific. Could you clarify what glibc-specific assumptions you mean? In #35823 I tried to use as little assumptions as possible. [1] https://bugzilla.kernel.org/show_bug.cgi?id=215813 [2] https://bugzilla.kernel.org/show_bug.cgi?id=215813#c2 [3] https://git.musl-libc.org/cgit/musl/tree/src/process/x86_64/vfork.s?id=ced75472d7e3d73d5b057e36ccbc7b7fcba95104 ---------- nosy: +izbyshev _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 04:17:57 2022 From: report at bugs.python.org (Kumar Aditya) Date: Thu, 07 Apr 2022 08:17:57 +0000 Subject: [issue43588] [Subinterpreters]: use static variable under building Python with --with-experimental-isolated-subinterpreters cause crash. In-Reply-To: <1616400572.08.0.67077600893.issue43588@roundup.psfhosted.org> Message-ID: <1649319477.86.0.219341863805.issue43588@roundup.psfhosted.org> Kumar Aditya added the comment: Most of the static variables were removed by GH-31366 so I closed those PRs as they were outdated, however some static variable still exist. ---------- nosy: +kumaraditya _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 04:39:21 2022 From: report at bugs.python.org (Kumar Aditya) Date: Thu, 07 Apr 2022 08:39:21 +0000 Subject: [issue43528] "connect_read_pipe" raises errors on Windows for STDIN In-Reply-To: <1615985024.13.0.408410632002.issue43528@roundup.psfhosted.org> Message-ID: <1649320761.06.0.513148708006.issue43528@roundup.psfhosted.org> Change by Kumar Aditya : ---------- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> ProactorEventLoop doesn't support stdin/stdout nor files with connect_read_pipe/connect_write_pipe _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 04:44:47 2022 From: report at bugs.python.org (Dieter Maurer) Date: Thu, 07 Apr 2022 08:44:47 +0000 Subject: [issue47246] Race condition in `threadig.Thread._wait_for_tstate_lock` Message-ID: <1649321087.35.0.157706510591.issue47246@roundup.psfhosted.org> New submission from Dieter Maurer : I have observed an `AssertionError (assert self._is_stopped)` in `threading.Thread._wait_for_tstate_lock`. This indicates that Python's internal state has been corrupted. The analysis revealed the following race condition: `_wait_for_tstate:lock` contains the code: ``` lock.release() self._stop() ``` The `lock.release()` allows a conflicting call to execute. If this happens before `self._stop()` has executed `self._is_stopped = True`, the `AssertionError` is raised. I suggest to give `_stop` an additional parameter `locked` with default `False`. In indicates whether the caller holds the `tstate_lock`. If this is the case, `_stop` releases the lock after it has ensured a consistent state (esspecially set `_is_stopped` to `True`). With this modification to `_stop` the two lines above can be replaced by `self._stop(locked=True)`. ---------- components: Library (Lib) messages: 416919 nosy: dmaurer priority: normal severity: normal status: open title: Race condition in `threadig.Thread._wait_for_tstate_lock` type: behavior versions: Python 3.10, Python 3.11, Python 3.7, Python 3.8, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 05:34:45 2022 From: report at bugs.python.org (Dieter Maurer) Date: Thu, 07 Apr 2022 09:34:45 +0000 Subject: [issue47246] Race condition in `threadig.Thread._wait_for_tstate_lock` In-Reply-To: <1649321087.35.0.157706510591.issue47246@roundup.psfhosted.org> Message-ID: <1649324085.44.0.480197974496.issue47246@roundup.psfhosted.org> Dieter Maurer added the comment: Apparently, the explanation is not that easy: `_stop` first sets `_is_stopped` to `True` and only then `_tstate_lock` to `None`. Therefore, the race should not cause the `AssertionError`. I observed the `AssertionError` in Python 3.6. The related `threading` code is however almost identical to that in Python 3.11. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 05:52:37 2022 From: report at bugs.python.org (Aidan Woolley) Date: Thu, 07 Apr 2022 09:52:37 +0000 Subject: [issue47247] Default arguments for access 'mode' parameters in pathlib and os should display as octal literals Message-ID: <1649325157.18.0.197038999405.issue47247@roundup.psfhosted.org> New submission from Aidan Woolley : E.g. 0o777 rather than 511 This is a regression since the docs for 3.9 Affected functions/methods: pathlib.Path.mkdir pathlib.Path.touch os.open os.mkdir os.makedirs os.mkfifo os.mknod ---------- assignee: docs at python components: Documentation messages: 416921 nosy: AidanWoolley, docs at python priority: normal severity: normal status: open title: Default arguments for access 'mode' parameters in pathlib and os should display as octal literals type: enhancement versions: Python 3.10, Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 05:53:50 2022 From: report at bugs.python.org (Dieter Maurer) Date: Thu, 07 Apr 2022 09:53:50 +0000 Subject: [issue47246] Race condition in `threadig.Thread._wait_for_tstate_lock` In-Reply-To: <1649321087.35.0.157706510591.issue47246@roundup.psfhosted.org> Message-ID: <1649325230.37.0.647071733249.issue47246@roundup.psfhosted.org> Dieter Maurer added the comment: The observation was caused by a bug which has been fixed in newer Python versions (3.9+ if I remember correctly). `isAlive` was called on a `_DummyThread` (while `_DummyThread` overides `is_alive` it had forgotten to override `isAlive` as well). ---------- resolution: -> rejected stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 07:30:33 2022 From: report at bugs.python.org (Mark Shannon) Date: Thu, 07 Apr 2022 11:30:33 +0000 Subject: [issue47248] Possible slowdown of regex searching in 3.11 Message-ID: <1649331033.49.0.157065067689.issue47248@roundup.psfhosted.org> New submission from Mark Shannon : The 3 regular expression benchmarks in the pyperformance suite, regex_v8, regex_effbot and regex_dna show slowdowns between 3% and 10%. Looking at the stats, nothing seems wrong with specialization or the memory optimizations. Which strongly suggests a regression in the sre module itself, but I can't say so for certain. ---------- keywords: 3.11regression messages: 416923 nosy: Mark.Shannon priority: normal severity: normal status: open title: Possible slowdown of regex searching in 3.11 type: performance versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 07:50:41 2022 From: report at bugs.python.org (Steven D'Aprano) Date: Thu, 07 Apr 2022 11:50:41 +0000 Subject: [issue47136] The variable __module__ in the class body getting an undesirable value from __prepare__ of the metaclass In-Reply-To: <1649308344.2.0.822231781591.issue47136@roundup.psfhosted.org> Message-ID: <20220407114943.GE27890@ando.pearwood.info> Steven D'Aprano added the comment: It would be nice if the class creation process was documented a bit better. Here is my experiment to see what is going on: ``` # the global `__name__` is normally the module's name. __name__ = "something" class Meta_default_prepare(type): def __new__(meta, name, bases, ns): print("ns for", name, "\n ", ns) return super().__new__(meta, name, bases, ns) class Meta_custom_prepare(Meta_default_prepare): def __prepare__(meta, *args): return {'__name__': 'another_name'} class Spam(metaclass=Meta_default_prepare): pass class Eggs(metaclass=Meta_custom_prepare): pass print("Spam module and name:", Spam.__module__, Spam.__name__) print("Eggs module and name:", Eggs.__module__, Eggs.__name__) ``` And the output in Python 3.10 is: ``` ns for Spam {'__module__': 'something', '__qualname__': 'Spam'} ns for Eggs {'__name__': 'another_name', '__module__': 'another_name', '__qualname__': 'Eggs'} Spam module and name: something Spam Eggs module and name: another_name Eggs ``` My take on this is that if the key __name__ is not present, the value of the class __module__ is taken from the global variable. So far so good. But if '__name__' is a key in the mapping returned by __prepare__, it gets left in the class dict, and gets used to set the class __module__ as well. But in neither case does it get used to set the class __name__. I cannot decide whether or not this makes sense to me. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 08:26:54 2022 From: report at bugs.python.org (Ewout ter Hoeven) Date: Thu, 07 Apr 2022 12:26:54 +0000 Subject: [issue1666807] Incorrect file path reported by inspect.getabsfile() Message-ID: <1649334414.71.0.743998793545.issue1666807@roundup.psfhosted.org> Ewout ter Hoeven added the comment: When running anything with a freshly installed version of Python 3.11.0a7 on 64-bit Windows, the following message is printed: ------------------------------------------------------------------------------- pydev debugger: CRITICAL WARNING: This version of python seems to be incorrectly compiled (internal generated filenames are not absolute) pydev debugger: The debugger may still function, but it will work slower and may miss breakpoints. pydev debugger: Related bug: http://bugs.python.org/issue1666807 ------------------------------------------------------------------------------- ---------- nosy: +EwoutH versions: +Python 3.11 -Python 2.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 09:41:52 2022 From: report at bugs.python.org (tongxiaoge) Date: Thu, 07 Apr 2022 13:41:52 +0000 Subject: [issue47249] test_multiprocessing_fork probabilistic failure Message-ID: <1649338912.69.0.915707675531.issue47249@roundup.psfhosted.org> New submission from tongxiaoge : This problem is probabilistic. I run Python3 all test cases on OBS. In recent months, there have been about three times that the test cases hang on probabilistically. The current version with problems is 3.10.2, this problem has also appeared in 3.10.0 and 3.9.9. ---------- components: Tests files: test hang on.png messages: 416926 nosy: sxt1001 priority: normal severity: normal status: open title: test_multiprocessing_fork probabilistic failure type: behavior versions: Python 3.10, Python 3.11, Python 3.9 Added file: https://bugs.python.org/file50726/test hang on.png _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 09:50:37 2022 From: report at bugs.python.org (tongxiaoge) Date: Thu, 07 Apr 2022 13:50:37 +0000 Subject: [issue47249] test_multiprocessing_fork probabilistic failure In-Reply-To: <1649338912.69.0.915707675531.issue47249@roundup.psfhosted.org> Message-ID: <1649339437.74.0.196005518957.issue47249@roundup.psfhosted.org> tongxiaoge added the comment: I previously suspected the patch d0d83a9 (https://github.com/python/cpython/commit/d0d83a94314402366e04e7ea2638f809510eb830) fixed this problem, so I upgraded python3 to 3.10.2, but the problem still occurred. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 10:21:03 2022 From: report at bugs.python.org (Ma Lin) Date: Thu, 07 Apr 2022 14:21:03 +0000 Subject: [issue47248] Possible slowdown of regex searching in 3.11 In-Reply-To: <1649331033.49.0.157065067689.issue47248@roundup.psfhosted.org> Message-ID: <1649341263.37.0.955706056276.issue47248@roundup.psfhosted.org> Ma Lin added the comment: Could you give the two versions? I will do a git bisect. I tested 356997c~1 and 356997c [1], msvc2022 non-pgo release build: # regex_dna ### an +- std dev: 151 ms +- 1 ms -> 152 ms +- 1 ms: 1.01x slower t significant # regex_effbot ### an +- std dev: 2.47 ms +- 0.01 ms -> 2.46 ms +- 0.02 ms: 1.00x faster t significant # regex_v8 ### an +- std dev: 21.7 ms +- 0.1 ms -> 22.4 ms +- 0.1 ms: 1.03x slower gnificant (t=-30.82) https://github.com/python/cpython/commit/356997cccc21a3391175d20e9ef03d434675b496 ---------- nosy: +malin _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 10:25:35 2022 From: report at bugs.python.org (Eric V. Smith) Date: Thu, 07 Apr 2022 14:25:35 +0000 Subject: [issue47247] Default arguments for access 'mode' parameters in pathlib and os should display as octal literals In-Reply-To: <1649325157.18.0.197038999405.issue47247@roundup.psfhosted.org> Message-ID: <1649341535.31.0.0441215359575.issue47247@roundup.psfhosted.org> Eric V. Smith added the comment: I think this is a duplicate of #46782. ---------- nosy: +eric.smith _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 10:56:51 2022 From: report at bugs.python.org (STINNER Victor) Date: Thu, 07 Apr 2022 14:56:51 +0000 Subject: [issue47250] Add object.__getstate__() introduced a refleak Message-ID: <1649343411.93.0.530563428982.issue47250@roundup.psfhosted.org> New submission from STINNER Victor : The following change introduced reference leaks: --- commit 884eba3c76916889fd6bff3b37b8552bfb4f9566 Author: Serhiy Storchaka Date: Wed Apr 6 20:00:14 2022 +0300 bpo-26579: Add object.__getstate__(). (GH-2821) Copying and pickling instances of subclasses of builtin types bytearray, set, frozenset, collections.OrderedDict, collections.deque, weakref.WeakSet, and datetime.tzinfo now copies and pickles instance attributes implemented as slots. --- Example of buildbot failure. AMD64 RHEL8 Refleaks 3.x: https://buildbot.python.org/all/#builders/259/builds/355 14 tests failed: test_bytes test_copy test_datetime test_deque test_descr test_distutils test_minidom test_ordered_dict test_pickle test_set test_shutil test_tarfile test_typing test_weakset Example of leak: $ ./python -m test -R 3:3 test_descr -m test_issue24097 (...) beginning 6 repetitions 123456 ...... test_descr leaked [1, 1, 1] references, sum=3 test_descr failed (reference leak) (...) ---------- components: Interpreter Core messages: 416930 nosy: corona10, erlendaasland, pablogsal, serhiy.storchaka, vstinner priority: normal severity: normal status: open title: Add object.__getstate__() introduced a refleak versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 10:57:28 2022 From: report at bugs.python.org (STINNER Victor) Date: Thu, 07 Apr 2022 14:57:28 +0000 Subject: [issue26579] Support pickling slots in subclasses of common classes In-Reply-To: <1458204186.54.0.651323931278.issue26579@psf.upfronthosting.co.za> Message-ID: <1649343448.96.0.711743841516.issue26579@roundup.psfhosted.org> STINNER Victor added the comment: > bpo-26579: Add object.__getstate__(). (GH-2821) > https://github.com/python/cpython/commit/884eba3c76916889fd6bff3b37b8552bfb4f9566 This change introduced reference leaks: see bpo-47250. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 10:58:17 2022 From: report at bugs.python.org (STINNER Victor) Date: Thu, 07 Apr 2022 14:58:17 +0000 Subject: [issue47250] Add object.__getstate__() introduced refleaks In-Reply-To: <1649343411.93.0.530563428982.issue47250@roundup.psfhosted.org> Message-ID: <1649343497.58.0.498687355266.issue47250@roundup.psfhosted.org> Change by STINNER Victor : ---------- title: Add object.__getstate__() introduced a refleak -> Add object.__getstate__() introduced refleaks _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 10:59:34 2022 From: report at bugs.python.org (Irit Katriel) Date: Thu, 07 Apr 2022 14:59:34 +0000 Subject: [issue47120] Make all jump opcodes relative In-Reply-To: <1648218653.94.0.580682403112.issue47120@roundup.psfhosted.org> Message-ID: <1649343574.9.0.120015368938.issue47120@roundup.psfhosted.org> Change by Irit Katriel : ---------- pull_requests: +30427 pull_request: https://github.com/python/cpython/pull/32400 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 11:25:46 2022 From: report at bugs.python.org (Guido van Rossum) Date: Thu, 07 Apr 2022 15:25:46 +0000 Subject: [issue1666807] Incorrect file path reported by inspect.getabsfile() Message-ID: <1649345146.94.0.929048790749.issue1666807@roundup.psfhosted.org> Guido van Rossum added the comment: @Ewout, the current workaround (until pydevd is fixed) is to add -Xfrozen_modules=off to the Python command line. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 11:53:11 2022 From: report at bugs.python.org (Terry J. Reedy) Date: Thu, 07 Apr 2022 15:53:11 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649346791.15.0.0695718788474.issue40280@roundup.psfhosted.org> Terry J. Reedy added the comment: Christian: IDLE and test_idle require threading. I once tested for threading in test_idle (not sure about IDLE itself) but removed the test when threading was made supposedly non-optional. Test_idle still tests for tkinter and idlelib. For PR 32352. did you miss IDLE's requirement or is tkinter and hence IDLE and its test not included on WASM/emscripten? Will it never be? ---------- nosy: +terry.reedy _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 12:02:55 2022 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Apr 2022 16:02:55 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649347375.95.0.713599439979.issue40280@roundup.psfhosted.org> Christian Heimes added the comment: In GH-32352 I changed only tests that I was able to execute under wasm32-emscripten. As far as I know TK does not build for WASM. Somebody would have to port TCL/TK to WebGL or SDL2 to make it work in the browser. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 12:25:26 2022 From: report at bugs.python.org (Brandt Bucher) Date: Thu, 07 Apr 2022 16:25:26 +0000 Subject: [issue47250] Add object.__getstate__() introduced refleaks In-Reply-To: <1649343411.93.0.530563428982.issue47250@roundup.psfhosted.org> Message-ID: <1649348726.96.0.599478918561.issue47250@roundup.psfhosted.org> Brandt Bucher added the comment: Found it. This line should be removed: https://github.com/python/cpython/blob/4c92427fb85e420404a9bd26347e32acc1bbd3b7/Objects/typeobject.c#L5033 ---------- nosy: +brandtbucher _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 13:30:06 2022 From: report at bugs.python.org (Dong-hee Na) Date: Thu, 07 Apr 2022 17:30:06 +0000 Subject: [issue47250] Add object.__getstate__() introduced refleaks In-Reply-To: <1649343411.93.0.530563428982.issue47250@roundup.psfhosted.org> Message-ID: <1649352606.12.0.331022150224.issue47250@roundup.psfhosted.org> Change by Dong-hee Na : ---------- keywords: +patch pull_requests: +30428 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32403 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 13:56:33 2022 From: report at bugs.python.org (Andre Burgaud) Date: Thu, 07 Apr 2022 17:56:33 +0000 Subject: [issue39187] urllib.robotparser does not respect the longest match for the rule In-Reply-To: <1577938445.91.0.743054392693.issue39187@roundup.psfhosted.org> Message-ID: <1649354193.36.0.113555427436.issue39187@roundup.psfhosted.org> Andre Burgaud added the comment: Hi Matele, Thanks for looking into this issue. I have seen indeed some implementations that were based on the Python implementation and that had the same problems. The Crystal implementation in particular (as far as I remember, as it was a while ago). As a reference, I used the Google implementation https://github.com/google/robotstxt that respects the internet draft https://datatracker.ietf.org/doc/html/draft-koster-rep-00. The 2 main points are described in section https://datatracker.ietf.org/doc/html/draft-koster-rep-00#section-2.2.2, especially in the following paragraph: "To evaluate if access to a URI is allowed, a robot MUST match the paths in allow and disallow rules against the URI. The matching SHOULD be case sensitive. The most specific match found MUST be used. The most specific match is the match that has the most octets. If an allow and disallow rule is equivalent, the allow SHOULD be used." 1) The most specific match found MUST be used. The most specific match is the match that has the most octets. 2) If an allow and disallow rule is equivalent, the allow SHOULD be used. In the robots.txt example you provided, the longest rule is Allow: /wp-admin/admin-ajax.php. Therefore it will take precedence over the other shorter Disallow rule for the sub-directory admin-ajax.php that should be allowed. To achieve that, the sort of the rule should list the Allow rule first. I'm currently traveling. I'm sorry if my explanations sound a bit limited. If it helps, I can pickup this discussion when I'm back home, after mid-April. In particular, I can run new tests with Python 3.10, since I raised this potential problem a bit more than two years ago and that I may need to refresh my memory :-) In the meantime, let me know if there is anything that I could provide to give a clearer background. For example, are you referring to the 2 issues I highlighted above, or is it something else that you are thinking about. Also, could you point me to the other robots checkers that you looked at? Thanks! Andre ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 14:12:17 2022 From: report at bugs.python.org (Alex Waygood) Date: Thu, 07 Apr 2022 18:12:17 +0000 Subject: [issue47250] New object.__getstate__() method introduced refleaks In-Reply-To: <1649343411.93.0.530563428982.issue47250@roundup.psfhosted.org> Message-ID: <1649355137.02.0.200405320104.issue47250@roundup.psfhosted.org> Change by Alex Waygood : ---------- title: Add object.__getstate__() introduced refleaks -> New object.__getstate__() method introduced refleaks _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 14:29:37 2022 From: report at bugs.python.org (Brandt Bucher) Date: Thu, 07 Apr 2022 18:29:37 +0000 Subject: [issue45542] Using multiple comparison operators can cause performance issues In-Reply-To: <1634754333.52.0.650287816276.issue45542@roundup.psfhosted.org> Message-ID: <1649356177.63.0.30816467841.issue45542@roundup.psfhosted.org> Change by Brandt Bucher : ---------- nosy: +brandtbucher _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 15:10:15 2022 From: report at bugs.python.org (Pieter Eendebak) Date: Thu, 07 Apr 2022 19:10:15 +0000 Subject: [issue47251] Merge BINARY_SUBSCR_LIST_INT with BINARY_SUBSCR_LIST_TUPLE Message-ID: <1649358615.39.0.761940609811.issue47251@roundup.psfhosted.org> New submission from Pieter Eendebak : The implementations of BINARY_SUBSCR_LIST_INT and BINARY_SUBSCR_TUPLE_INT are almost identical. They can be merged, so there is one opcode less and the code is shared. ---------- components: Interpreter Core messages: 416937 nosy: pieter.eendebak priority: normal severity: normal status: open title: Merge BINARY_SUBSCR_LIST_INT with BINARY_SUBSCR_LIST_TUPLE versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 15:12:32 2022 From: report at bugs.python.org (Pieter Eendebak) Date: Thu, 07 Apr 2022 19:12:32 +0000 Subject: [issue47251] Merge BINARY_SUBSCR_LIST_INT with BINARY_SUBSCR_LIST_TUPLE In-Reply-To: <1649358615.39.0.761940609811.issue47251@roundup.psfhosted.org> Message-ID: <1649358752.42.0.00368642883403.issue47251@roundup.psfhosted.org> Change by Pieter Eendebak : ---------- keywords: +patch pull_requests: +30429 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32404 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 15:31:05 2022 From: report at bugs.python.org (Brandt Bucher) Date: Thu, 07 Apr 2022 19:31:05 +0000 Subject: [issue47177] Frames should store next_instr instead of lasti In-Reply-To: <1648689146.75.0.35492797482.issue47177@roundup.psfhosted.org> Message-ID: <1649359865.93.0.00441570140394.issue47177@roundup.psfhosted.org> Brandt Bucher added the comment: New changeset ef6a482b0285870c45f39c9b17ed827362b334ae by Brandt Bucher in branch 'main': bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208) https://github.com/python/cpython/commit/ef6a482b0285870c45f39c9b17ed827362b334ae ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 15:32:09 2022 From: report at bugs.python.org (Brandt Bucher) Date: Thu, 07 Apr 2022 19:32:09 +0000 Subject: [issue47177] Frames should store next_instr instead of lasti In-Reply-To: <1648689146.75.0.35492797482.issue47177@roundup.psfhosted.org> Message-ID: <1649359929.04.0.692178835673.issue47177@roundup.psfhosted.org> Change by Brandt Bucher : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 15:36:04 2022 From: report at bugs.python.org (Ronald Oussoren) Date: Thu, 07 Apr 2022 19:36:04 +0000 Subject: [issue47179] pymalloc should align to max_align_t In-Reply-To: <1648717184.73.0.9591468393.issue47179@roundup.psfhosted.org> Message-ID: <1649360164.99.0.486123824575.issue47179@roundup.psfhosted.org> Ronald Oussoren added the comment: > If we want to respect sizeof(max_align_t) alignment, we can compute sizeof(max_align_t) in configure and uses the result in obmalloc.c. I expect that it's either 16 or 32, so we can maybe just hardcode ALIGNMENT_SHIFT using something like: "if == 32 ... #elif == 16 ... #else #error ...". This should be "alignof(max_align_t)" instead of "sizeof(...)". The size itself is not relevant. BTW, on macOS/arm64 alignof(max_align_t) is 8, not 16 (as the code seems to expect given the pointer size). This is harmless of course. ---------- nosy: +ronaldoussoren _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 15:57:29 2022 From: report at bugs.python.org (Gobot1234) Date: Thu, 07 Apr 2022 19:57:29 +0000 Subject: [issue46522] concurrent.futures.__getattr__ raises the wrong AttributeError message In-Reply-To: <1643123783.64.0.215214582085.issue46522@roundup.psfhosted.org> Message-ID: <1649361449.57.0.112021311993.issue46522@roundup.psfhosted.org> Gobot1234 added the comment: I was just looking through the git diff for this PR and found a bug in this https://github.com/python/cpython/pull/30887/files#diff-2828caacf5c85c7bd6023ea0e4a381cc5c65179a9822398534c5e9ad9ccbd90dR73. There's a missing f on the io __getattr__'s message ---------- nosy: +Gobot1234 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 16:22:30 2022 From: report at bugs.python.org (PySimpleGUI) Date: Thu, 07 Apr 2022 20:22:30 +0000 Subject: [issue46180] Button clicked failed when mouse hover tooltip and tooltip destroyed In-Reply-To: <1640515148.68.0.766649384181.issue46180@roundup.psfhosted.org> Message-ID: <1649362950.09.0.579792028181.issue46180@roundup.psfhosted.org> PySimpleGUI added the comment: Hi Ned... thank you kindly for the response. Code was provided on Dec 26, 2021 that reproduces the problem. We've taken the extra step of verifying on Linux and Mac that indeed the problem is on those operating systems as well. I'm struggling to understand why it's now suggested that the way to get help from the tkinter team is to also produce code directly in TCl/TK directly or that posts on StackOverflow would be of help. It appears to be a bug that's in the lower-level code that happened between releases 8.6.11 and 8.6.12. We're not looking for a workaround, which I suppose is the purpose of posting on StackOverflow, we're looking for a fix. We're doing our best to follow solid best practices of reproducing problems, providing code to demonstrate the bug, and using the official bug reporting mechanism (bugs.python.org). Any help that can be provided in getting the right persons from the tkinter team responsible for the code is greatly appreciated. Greatly appreciated! ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 16:40:01 2022 From: report at bugs.python.org (15r10nk) Date: Thu, 07 Apr 2022 20:40:01 +0000 Subject: [issue47233] show_caches option affects code positions reported by dis.get_instructions(...) In-Reply-To: <1649188044.95.0.306823001804.issue47233@roundup.psfhosted.org> Message-ID: <1649364001.26.0.841029876347.issue47233@roundup.psfhosted.org> Change by 15r10nk <15r10nk-python-issues at polarbit.de>: ---------- keywords: +patch pull_requests: +30430 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32406 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 16:52:44 2022 From: report at bugs.python.org (Alon Menczer) Date: Thu, 07 Apr 2022 20:52:44 +0000 Subject: [issue47252] socket.makefile documentation is missing data regarding the 'buffering' parameter Message-ID: <1649364764.73.0.205203720334.issue47252@roundup.psfhosted.org> New submission from Alon Menczer : The documentation of the socket.makefile method is missing data regarding the behavior of the `buffering` parameter. ---------- assignee: docs at python components: Documentation messages: 416943 nosy: alon.menczer, docs at python priority: normal severity: normal status: open title: socket.makefile documentation is missing data regarding the 'buffering' parameter type: enhancement versions: Python 3.10, Python 3.11, Python 3.7, Python 3.8, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 16:52:49 2022 From: report at bugs.python.org (15r10nk) Date: Thu, 07 Apr 2022 20:52:49 +0000 Subject: [issue47233] show_caches option affects code positions reported by dis.get_instructions(...) In-Reply-To: <1649188044.95.0.306823001804.issue47233@roundup.psfhosted.org> Message-ID: <1649364769.87.0.731279406326.issue47233@roundup.psfhosted.org> 15r10nk <15r10nk-python-issues at polarbit.de> added the comment: I moved the line. Is there anything else required? unittests? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 17:02:08 2022 From: report at bugs.python.org (Semyon) Date: Thu, 07 Apr 2022 21:02:08 +0000 Subject: [issue20907] behavioral differences between shutil.unpack_archive and ZipFile.extractall In-Reply-To: <1394703965.34.0.603199781912.issue20907@psf.upfronthosting.co.za> Message-ID: <1649365328.53.0.308596768143.issue20907@roundup.psfhosted.org> Change by Semyon : ---------- nosy: +MarSoft _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 17:05:52 2022 From: report at bugs.python.org (15r10nk) Date: Thu, 07 Apr 2022 21:05:52 +0000 Subject: [issue47253] LOAD_GLOBAL instruction with wrong source position Message-ID: <1649365552.36.0.995574813482.issue47253@roundup.psfhosted.org> New submission from 15r10nk <15r10nk-python-issues at polarbit.de>: The LOAD_GLOBAL instruction has a different/wrong source position if it refers the name of an imported module. ---------- files: test3.py messages: 416945 nosy: 15r10nk priority: normal severity: normal status: open title: LOAD_GLOBAL instruction with wrong source position type: behavior versions: Python 3.11 Added file: https://bugs.python.org/file50727/test3.py _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 17:46:09 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Thu, 07 Apr 2022 21:46:09 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux? In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649367969.78.0.229485349626.issue47245@roundup.psfhosted.org> Gregory P. Smith added the comment: Thanks! I agree with you that this is probably not an actual problem on Linux. _I did look at the various glibc architecture vfork.s implementations: Cute tricks used on some where they need to avoid a stack modifying traditional return from vfork()._ As for glibc specifics, I'm mostly thinking of the calls we do in the child. According to the "Standard Description (POSIX.1)" calls to anything other than `_exit()` or `exec*()` are not allowed. But the longer "Linux Description" in that vfork(2) man page does not say that. Which implies merely by omission that calls to other things are okay so long as you understand everything they do to the process heap/stack/state. (I wish it were *explicit* about that) Some of the calls we do from our child_exec() code... many are likely "just" syscall shims and thus fine - but that is technically up to libc. A few others are Py functions that go elsewhere in CPython and while they may be fine for practical reasons today with dangerous bits on conditional branches that technically should not be possible to hit given the state by the time we're at this point in _posixsubprocess, pose a future risk - anyone touching implementations of those is likely unaware of vfork'ed child limitations that must be met. For example if one of the potential code paths that trigger an indirect Py_FatalError() is hit... that fatal exit code is definitely not post-vfork-child safe. The pre-exec child dying via that could screw up the vfork parent process's state. ---------- title: potential undefined behavior with subprocess using vfork() on Linux -> potential undefined behavior with subprocess using vfork() on Linux? _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 18:21:10 2022 From: report at bugs.python.org (Steve Dower) Date: Thu, 07 Apr 2022 22:21:10 +0000 Subject: [issue47103] Copy pgort140.dll when building for PGO In-Reply-To: <1648065621.85.0.817743953237.issue47103@roundup.psfhosted.org> Message-ID: <1649370070.87.0.00202075419641.issue47103@roundup.psfhosted.org> Steve Dower added the comment: New changeset b0ec17b6d9e0fb61081b6d15a1b2a14b607851b7 by Steve Dower in branch '3.10': bpo-47103: Copy pgort140.dll into output directory when building PGInstrument on Windows (GH-32083) https://github.com/python/cpython/commit/b0ec17b6d9e0fb61081b6d15a1b2a14b607851b7 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 18:21:22 2022 From: report at bugs.python.org (apostofes) Date: Thu, 07 Apr 2022 22:21:22 +0000 Subject: [issue47254] enhanced dir? Message-ID: <1649370082.57.0.519891152305.issue47254@roundup.psfhosted.org> New submission from apostofes : current dir gives output like this, ``` from collection import OrderedDict od = OrderedDict({'a': 1, 'b': 2, 'c': 3}) print(dir(od)) ``` ``` ['__class__', '__contains__', '__delattr__', '__delitem__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'clear', 'copy', 'fromkeys', 'get', 'items', 'keys', 'move_to_end', 'pop', 'popitem', 'setdefault', 'update', 'values'] ``` but wouldn't it be better if the output was like this, ``` {'OrderedDict': {'__contains__', '__delitem__', '__dir__', '__eq__', '__format__', '__ge__', '__getitem__', '__gt__', '__init__', '__init_subclass__', '__iter__', '__le__', '__lt__', '__ne__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__setitem__', '__sizeof__', '__subclasshook__', 'clear', 'copy', 'fromkeys', 'get', 'items', 'keys', 'move_to_end', 'pop', 'popitem', 'setdefault', 'update', 'values'}, 'dict': {'__getattribute__', '__len__', '__new__'}, 'object': {'__delattr__', '__setattr__', '__str__'}} ``` ??? ---------- messages: 416948 nosy: apostofes priority: normal severity: normal status: open title: enhanced dir? type: enhancement versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 18:23:30 2022 From: report at bugs.python.org (Steve Dower) Date: Thu, 07 Apr 2022 22:23:30 +0000 Subject: [issue47103] Copy pgort140.dll when building for PGO In-Reply-To: <1648065621.85.0.817743953237.issue47103@roundup.psfhosted.org> Message-ID: <1649370210.68.0.476290326507.issue47103@roundup.psfhosted.org> Change by Steve Dower : ---------- pull_requests: +30432 pull_request: https://github.com/python/cpython/pull/32407 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 18:47:11 2022 From: report at bugs.python.org (apostofes) Date: Thu, 07 Apr 2022 22:47:11 +0000 Subject: [issue47254] enhanced dir? In-Reply-To: <1649370082.57.0.519891152305.issue47254@roundup.psfhosted.org> Message-ID: <1649371631.57.0.113603550742.issue47254@roundup.psfhosted.org> Change by apostofes : ---------- keywords: +patch pull_requests: +30433 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32408 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 19:27:28 2022 From: report at bugs.python.org (Dong-hee Na) Date: Thu, 07 Apr 2022 23:27:28 +0000 Subject: [issue47250] New object.__getstate__() method introduced refleaks In-Reply-To: <1649343411.93.0.530563428982.issue47250@roundup.psfhosted.org> Message-ID: <1649374048.67.0.513226250815.issue47250@roundup.psfhosted.org> Change by Dong-hee Na : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 19:27:29 2022 From: report at bugs.python.org (Dong-hee Na) Date: Thu, 07 Apr 2022 23:27:29 +0000 Subject: [issue47250] New object.__getstate__() method introduced refleaks In-Reply-To: <1649343411.93.0.530563428982.issue47250@roundup.psfhosted.org> Message-ID: <1649374049.41.0.885631810644.issue47250@roundup.psfhosted.org> Dong-hee Na added the comment: New changeset e2d78baed385c349d756e96d8f0def0268fa9c4f by Dong-hee Na in branch 'main': bpo-47250: Fix refleak from object.__getstate__() (GH-32403) https://github.com/python/cpython/commit/e2d78baed385c349d756e96d8f0def0268fa9c4f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 19:41:04 2022 From: report at bugs.python.org (neonene) Date: Thu, 07 Apr 2022 23:41:04 +0000 Subject: [issue45116] Performance regression 3.10b1: inlining issue in the big _PyEval_EvalFrameDefault() function with Visual Studio (MSC) In-Reply-To: <1630942038.24.0.156228540374.issue45116@roundup.psfhosted.org> Message-ID: <1649374864.49.0.499792007543.issue45116@roundup.psfhosted.org> neonene added the comment: >What exactly does "pgo hard reject" mean? In my recognition, "pgo hard reject" is based on the PGOptimizer's heuristic, "reject" is related to the probe count (hot/cold). https://developercommunity.visualstudio.com/t/1531987#T-N1535774 And there was a reply from MSVC team, closing the issue. MSVC won't be fixed in the near future. https://developercommunity.visualstudio.com/t/1595341#T-N1695626 >From the reply and my investigation, 3.11 would need the following: 1. Some callsites such as tp_* pointer should not inline its fastpaths in the eval switch-case. They often conflict. Each pointer needs to be wrapped with a function or maybe _PyEval_EvalFrameDefault needs to be enclosed with "inline_depth(0)" pragma. 2. __assume(0) should be replaced with other function, inside the eval switch-case or in the inlined paths of callees. This is critical with PGO. 3. For inlining, use __forceinline / macro / const function pointer. MSVC's stuck can be avoided in many ways, when force-inlining in the evalloop a ton of Py_DECREF()s, unless tp_dealloc does not create a inlined callsite: void _Py_Dealloc(PyObject *op) { ... #pragma inline_depth(0) // effects from here, PGO accepts only 0. (*dealloc)(op); // conflicts when inlined. } #pragma inline_depth() // can be reset only outside the func. * Virtual Call Speculation: https://docs.microsoft.com/en-us/cpp/build/profile-guided-optimizations?view=msvc-170#optimizations-performed-by-pgo * The profiler runs under /GENPROFILE:PATH option, but at the big ceval-func, the optimizer merges the profiles into one like /GENPROFILE:NOPATH mode. https://docs.microsoft.com/en-us/cpp/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build?view=msvc-170#arguments * __assume(0) (Py_UNREACHABLE): https://devblogs.microsoft.com/cppblog/visual-studio-2017-throughput-improvements-and-advice/#remove-usages-of-__assume ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 19:55:13 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Thu, 07 Apr 2022 23:55:13 +0000 Subject: [issue47254] enhanced dir? In-Reply-To: <1649370082.57.0.519891152305.issue47254@roundup.psfhosted.org> Message-ID: <1649375713.41.0.0090114786862.issue47254@roundup.psfhosted.org> Jelle Zijlstra added the comment: This would be nice, but backward compatibility alone means we can't change dir() to return a dictionary. What you propose would make more sense as a new function, perhaps in a package like pydoc or a third-party tool like IPython. ---------- nosy: +JelleZijlstra _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 20:03:06 2022 From: report at bugs.python.org (Steve Dower) Date: Fri, 08 Apr 2022 00:03:06 +0000 Subject: [issue47103] Copy pgort140.dll when building for PGO In-Reply-To: <1648065621.85.0.817743953237.issue47103@roundup.psfhosted.org> Message-ID: <1649376186.45.0.230310219773.issue47103@roundup.psfhosted.org> Steve Dower added the comment: New changeset 80c115385c01f456cdc6550543cf2112ae7a8161 by Steve Dower in branch '3.9': bpo-47103: Copy pgort140.dll into output directory when building PGInstrument on Windows (GH-32083) https://github.com/python/cpython/commit/80c115385c01f456cdc6550543cf2112ae7a8161 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 20:05:00 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Fri, 08 Apr 2022 00:05:00 +0000 Subject: [issue34975] start_tls() difficult when using asyncio.start_server() In-Reply-To: <1539460993.6.0.788709270274.issue34975@psf.upfronthosting.co.za> Message-ID: <1649376300.28.0.753419877234.issue34975@roundup.psfhosted.org> Gregory P. Smith added the comment: https://discuss.python.org/t/need-reconsideration-of-bpo-34975-add-start-tls-method-to-streams-api/14720 would like to see this reconsidered. reopening. ---------- nosy: +gregory.p.smith resolution: wont fix -> stage: resolved -> status: closed -> open versions: +Python 3.11 -Python 3.8 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 20:30:53 2022 From: report at bugs.python.org (apostofes) Date: Fri, 08 Apr 2022 00:30:53 +0000 Subject: [issue47254] enhanced dir? In-Reply-To: <1649370082.57.0.519891152305.issue47254@roundup.psfhosted.org> Message-ID: <1649377853.19.0.92821361171.issue47254@roundup.psfhosted.org> apostofes added the comment: would adding an argument to dir be a possible solution, like, ``` l = [1, 2, 3] dir(l, categorize=True) ``` ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 21:33:59 2022 From: report at bugs.python.org (apostofes) Date: Fri, 08 Apr 2022 01:33:59 +0000 Subject: [issue47254] enhanced dir? In-Reply-To: <1649370082.57.0.519891152305.issue47254@roundup.psfhosted.org> Message-ID: <1649381639.72.0.221359242909.issue47254@roundup.psfhosted.org> apostofes added the comment: plus I would want it to have some more methods, ``` l = [1, 2, 3] ``` using enhanced dir should give, ``` {'list': {'__add__', '__contains__', '__delitem__', '__eq__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__iadd__', '__imul__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__repr__', '__reversed__', '__rmul__', '__setitem__', '__sizeof__', '__subclasshook__', 'append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'}, 'object': {'__delattr__', '__dir__', '__format__', '__reduce__', '__reduce_ex__', '__setattr__', '__str__'}} ``` obtained from, (here only printing, made a dictionary in the implementation in the PR) ``` for j in dir(l): print(f'l.{j}.__qualname__') ``` this check fails for, ``` {'list': {'__doc__', '__hash__', '__class__'}} ``` I would also want these, ``` {'list': {'__instancecheck__','__subclasscheck__', '__subclasses__', 'mro'}, 'type': {'__call__', '__prepare__'}} ``` which were obtained from, ``` for j in set(dir(type(l))) - set(dir(l)): print(f'l.{j}.__qualname__') ``` and it fails for, ``` {'list': {'__abstractmethods__', '__base__', '__bases__', '__basicsize__', '__dict__', '__dictoffset__', '__flags__', '__itemsize__', '__module__', '__mro__', '__name__', '__qualname__', '__text_signature__', '__weakrefoffset__'} ``` ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 23:13:27 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Fri, 08 Apr 2022 03:13:27 +0000 Subject: [issue47255] Many broken :meth: roles in the docs Message-ID: <1649387607.61.0.419587041058.issue47255@roundup.psfhosted.org> New submission from Jelle Zijlstra : The docs for the hash() builtin use :meth:`__hash__`, but this doesn't actually link to the datamodel documentation for __hash__: it needs :meth:`~object.__hash__` instead. I'm fixing this in the builtin functions docs, but there are probably more places. Why don't we warn when a :meth: link doesn't actually create a link? ---------- assignee: docs at python components: Documentation messages: 416956 nosy: JelleZijlstra, docs at python priority: normal severity: normal status: open title: Many broken :meth: roles in the docs versions: Python 3.10, Python 3.11, Python 3.9 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 23:15:16 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Fri, 08 Apr 2022 03:15:16 +0000 Subject: [issue47255] Many broken :meth: roles in the docs In-Reply-To: <1649387607.61.0.419587041058.issue47255@roundup.psfhosted.org> Message-ID: <1649387716.32.0.0410256199629.issue47255@roundup.psfhosted.org> Change by Jelle Zijlstra : ---------- keywords: +patch pull_requests: +30435 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32409 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 23:24:32 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Fri, 08 Apr 2022 03:24:32 +0000 Subject: [issue47255] Many broken :meth: roles in the docs In-Reply-To: <1649387607.61.0.419587041058.issue47255@roundup.psfhosted.org> Message-ID: <1649388272.5.0.288077225668.issue47255@roundup.psfhosted.org> Jelle Zijlstra added the comment: There are a lot of places in the rest of the docs that have the same problem: Doc % git grep ':meth:`__' | grep -v whatsnew | wc -l 610 I wonder if we can make the :meth: role globally default to linking to object.__dunder__. Would that require a change to Sphinx? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Apr 7 23:39:21 2022 From: report at bugs.python.org (Brett Cannon) Date: Fri, 08 Apr 2022 03:39:21 +0000 Subject: [issue47061] Deprecate modules listed in PEP 594 In-Reply-To: <1647632770.65.0.881581261318.issue47061@roundup.psfhosted.org> Message-ID: <1649389161.82.0.30415418085.issue47061@roundup.psfhosted.org> Change by Brett Cannon : ---------- pull_requests: +30436 pull_request: https://github.com/python/cpython/pull/32410 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 01:07:15 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Fri, 08 Apr 2022 05:07:15 +0000 Subject: [issue46981] Empty typing.Tuple In-Reply-To: <1646986872.43.0.932223345125.issue46981@roundup.psfhosted.org> Message-ID: <1649394435.24.0.500089036679.issue46981@roundup.psfhosted.org> Jelle Zijlstra added the comment: I tried out 3.11 on my pyanalyze type checker and got some failures because of this change, because my previous trick for distinguishing between Tuple and Tuple[()] failed. 3.10: >>> from typing import get_args, Tuple >>> get_args(Tuple[()]) ((),) >>> get_args(Tuple) () 3.11: >>> from typing import get_args, Tuple >>> get_args(Tuple[()]) () >>> get_args(Tuple) () However, the new behavior is more consistent: get_args(tuple[()]) always returned (). It's also easy enough to work around (just check `... is Tuple`). I'll put a note in the What's New for 3.11 about this change. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 02:04:50 2022 From: report at bugs.python.org (Dennis Sweeney) Date: Fri, 08 Apr 2022 06:04:50 +0000 Subject: [issue47248] Possible slowdown of regex searching in 3.11 In-Reply-To: <1649331033.49.0.157065067689.issue47248@roundup.psfhosted.org> Message-ID: <1649397890.75.0.169797140467.issue47248@roundup.psfhosted.org> Dennis Sweeney added the comment: Possibly related to the new atomic grouping support from GH-31982? ---------- nosy: +Dennis Sweeney, serhiy.storchaka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 02:54:08 2022 From: report at bugs.python.org (Ma Lin) Date: Fri, 08 Apr 2022 06:54:08 +0000 Subject: [issue47256] re: limit the maximum capturing group to 1, 073, 741, 823, reduce sizeof(match_context). Message-ID: <1649400848.85.0.841306262185.issue47256@roundup.psfhosted.org> New submission from Ma Lin : These changes reduce sizeof(match_context): - 32-bit build: 36 bytes, no change. - 64-bit build: 72 bytes -> 56 bytes. sre uses stack and `match_context` struct to simulate recursive call, smaller struct brings: - deeper recursive call - less memory consume - less memory realloc Here is a test, if limit the stack size to 1 GiB, the max available value of n is: re.match(r'(ab)*', n * 'ab') # need to save MARKs 72 bytes: n = 11,184,808 64 bytes: n = 12,201,609 56 bytes: n = 13,421,770 re.match(r'(?:ab)*', n * 'ab') # no need to save MARKs 72 bytes: n = 13,421,770 64 bytes: n = 14,913,078 56 bytes: n = 16,777,213 1,073,741,823 capturing groups should enough for almost all users. If limit it to 16,383 (2-byte integer), the context size may reduce more. But maybe some patterns generated by program will have more than this number of capturing groups. 1??Performance: Before regex_dna: Mean +- std dev: 149 ms +- 1 ms regex_effbot: Mean +- std dev: 2.22 ms +- 0.02 ms regex_v8: Mean +- std dev: 22.3 ms +- 0.1 ms my benchmark[1]: 13.9 sec +- 0.0 sec Commit 1. limit the maximum capture group to 1,073,741,823 regex_dna: Mean +- std dev: 150 ms +- 1 ms regex_effbot: Mean +- std dev: 2.16 ms +- 0.02 ms regex_v8: Mean +- std dev: 22.3 ms +- 0.1 ms my benchmark: 13.8 sec +- 0.0 sec Commit 2. further reduce sizeof(SRE(match_context)) regex_dna: Mean +- std dev: 150 ms +- 1 ms regex_effbot: Mean +- std dev: 2.16 ms +- 0.02 ms regex_v8: Mean +- std dev: 22.2 ms +- 0.1 ms my benchmark: 13.8 sec +- 0.1 sec If further change the types of toplevel/jump from int to char, in 32-bit build sizeof(match_context) will be reduced from 36 to 32 (In 64-bit build still 56). But it's slower on 64-bit build, so I didn't adopt it: regex_dna: Mean +- std dev: 150 ms +- 1 ms regex_effbot: Mean +- std dev: 2.18 ms +- 0.01 ms regex_v8: Mean +- std dev: 22.4 ms +- 0.1 ms my benchmark: 14.1 sec +- 0.0 sec 2?? The type of match_context.count is Py_ssize_t - If change it to 4-byte integer, need to modify some engine code. - If keep it as Py_ssize_t, SRE_MAXREPEAT may >= 4 GiB in future versions. Currently SRE_MAXREPEAT can't >= 4 GiB. So the type of match_context.count is unchanged. [1] My re benchmark, it uses 16 patterns to process 100 MiB text data: https://github.com/animalize/re_benchmarks ---------- components: Library (Lib) messages: 416960 nosy: ezio.melotti, malin, mrabarnett, serhiy.storchaka priority: normal severity: normal status: open title: re: limit the maximum capturing group to 1,073,741,823, reduce sizeof(match_context). type: resource usage versions: Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 03:02:49 2022 From: report at bugs.python.org (Ma Lin) Date: Fri, 08 Apr 2022 07:02:49 +0000 Subject: [issue47256] re: limit the maximum capturing group to 1, 073, 741, 823, reduce sizeof(match_context). In-Reply-To: <1649400848.85.0.841306262185.issue47256@roundup.psfhosted.org> Message-ID: <1649401369.84.0.792811170067.issue47256@roundup.psfhosted.org> Change by Ma Lin : ---------- keywords: +patch pull_requests: +30437 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32411 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 03:22:53 2022 From: report at bugs.python.org (Ma Lin) Date: Fri, 08 Apr 2022 07:22:53 +0000 Subject: [issue47248] Possible slowdown of regex searching in 3.11 In-Reply-To: <1649331033.49.0.157065067689.issue47248@roundup.psfhosted.org> Message-ID: <1649402573.14.0.55797886696.issue47248@roundup.psfhosted.org> Ma Lin added the comment: > Possibly related to the new atomic grouping support from GH-31982? It seems not likely. I will do some benchmarks for this issue, more information (version/platform) is welcome. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 04:03:40 2022 From: report at bugs.python.org (paul rubin) Date: Fri, 08 Apr 2022 08:03:40 +0000 Subject: [issue47257] add methods to get first and last elements of a range Message-ID: <1649405020.81.0.958587305451.issue47257@roundup.psfhosted.org> New submission from paul rubin : Inspired by a question on comp.lang.python about how to deal with an int set composed of integers and ranges. Range objects like range(1,5,2) contain start, stop, and step values, but it's messy and potentially tricky to get the actual first and last values of the range. Examples: range(1,5,2) - first = 1, last = 3 range (5, 1, 2) - range is empty, first = last = None range(5, 1, -1) - first is 5, last is 2 Note in the case where the range is not empty, you can get the "last" by a messy calculation but it's easier to pick the first element from the reverse iterator. But then you might forget to catch the stopiteration exception in the case that the list is empty. The same goes for the first element, roughly. And constructing the iterators just to pick one element seems like unnecessary overhead. So it is better to have actual methods for these, with type Optional[int]. Then mypy should remind you to check for the empty case if you forget. ---------- messages: 416962 nosy: phr priority: normal severity: normal status: open title: add methods to get first and last elements of a range type: enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 04:18:41 2022 From: report at bugs.python.org (Marco Barisione) Date: Fri, 08 Apr 2022 08:18:41 +0000 Subject: [issue39442] from __future__ import annotations makes dataclasses.Field.type a string, not type In-Reply-To: <1579866520.75.0.652812484582.issue39442@roundup.psfhosted.org> Message-ID: <1649405921.15.0.229757256039.issue39442@roundup.psfhosted.org> Marco Barisione added the comment: This is particularly annoying if you are using `Annotated` with a dataclass. For instance: ``` from __future__ import annotations import dataclasses from typing import Annotated, get_type_hints @dataclasses.dataclass class C: v: Annotated[int, "foo"] v_type = dataclasses.fields(C)[0].type print(repr(v_type)) # "Annotated[int, 'foo']" print(repr(get_type_hints(C)["v"])) # print(repr(eval(v_type))) # typing.Annotated[int, 'foo'] ``` In the code above it looks like the only way to get the `Annotated` so you get get its args is using `eval`. The problem is that, in non-trivial, examples, `eval` would not be simple to use as you need to consider globals and locals, see https://peps.python.org/pep-0563/#resolving-type-hints-at-runtime. ---------- nosy: +barisione _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 04:28:46 2022 From: report at bugs.python.org (Alexey Izbyshev) Date: Fri, 08 Apr 2022 08:28:46 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux? In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649406526.71.0.529257169674.issue47245@roundup.psfhosted.org> Alexey Izbyshev added the comment: > As for glibc specifics, I'm mostly thinking of the calls we do in the child. > According to the "Standard Description (POSIX.1)" calls to anything other than `_exit()` or `exec*()` are not allowed. But the longer "Linux Description" in that vfork(2) man page does not say that. Which implies merely by omission that calls to other things are okay so long as you understand everything they do to the process heap/stack/state. (I wish it were *explicit* about that) If we're talking about the kernel side of things, sure, we rely on Linux being "sane" here, though I suppose on *BSDs the situation is similar. > Some of the calls we do from our child_exec() code... many are likely "just" syscall shims and thus fine - but that is technically up to libc. Yes, but I wouldn't say that "being just syscall shims" is specific for glibc. It's just a "natural" property that just about any libc is likely to possess. (Yeah, I know, those are vague words, but in my experience "glibc-specific" is usually applied to some functionality/bug present in glibc and absent in other libcs, and I don't think we rely on something like that). Of course, there are also LD_PRELOAD things that could be called instead of libc, but good news here is that we don't create new constrains for them (CPython is not the only software that uses vfork()), and they're on their own otherwise. > A few others are Py functions that go elsewhere in CPython and while they may be fine for practical reasons today with dangerous bits on conditional branches that technically should not be possible to hit given the state by the time we're at this point in _posixsubprocess, pose a future risk - anyone touching implementations of those is likely unaware of vfork'ed child limitations that must be met. We already have async-signal-safety requirement for all such code because of fork(). Requirements of vfork() are a bit more strict, but at least the set of functions we have to watch for dangerous changes is the same. And I suspect that most practical violations of vfork()-safety also violate async-signal-safety. > For example if one of the potential code paths that trigger an indirect Py_FatalError() is hit... that fatal exit code is definitely not post-vfork-child safe. The pre-exec child dying via that could screw up the vfork parent process's state. Yeah, and it can break the fork parent too, at least because it uses exit() (not _exit()), so stdio buffers will be flushed twice, in the child and in the parent. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 05:16:17 2022 From: report at bugs.python.org (Marco Barisione) Date: Fri, 08 Apr 2022 09:16:17 +0000 Subject: [issue39442] from __future__ import annotations makes dataclasses.Field.type a string, not type In-Reply-To: <1579866520.75.0.652812484582.issue39442@roundup.psfhosted.org> Message-ID: <1649409377.55.0.71575104184.issue39442@roundup.psfhosted.org> Marco Barisione added the comment: Actually, sorry I realise I can pass `include_extras` to `get_type_hints`. Still, it would be nicer not to have to do that. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 05:35:24 2022 From: report at bugs.python.org (Thomas Grainger) Date: Fri, 08 Apr 2022 09:35:24 +0000 Subject: [issue43944] Processes in Python 3.9 exiting with code 1 when It's created inside a ThreadPoolExecutor In-Reply-To: <1619470785.38.0.461987263008.issue43944@roundup.psfhosted.org> Message-ID: <1649410524.25.0.934826533795.issue43944@roundup.psfhosted.org> Thomas Grainger added the comment: the problem is multiprocessing/process is calling threading._shutdown which tries to join its own thread, because concurrent.futures.thread._threads_queues contains the main thread in the subprocess File "/home/graingert/miniconda3/envs/dask-distributed/lib/python3.10/multiprocessing/process.py", line 333, in _bootstrap threading._shutdown() File "/home/graingert/miniconda3/envs/dask-distributed/lib/python3.10/threading.py", line 1530, in _shutdown atexit_call() File "/home/graingert/miniconda3/envs/dask-distributed/lib/python3.10/concurrent/futures/thread.py", line 31, in _python_exit t.join() File "/home/graingert/miniconda3/envs/dask-distributed/lib/python3.10/threading.py", line 1086, in join raise RuntimeError("cannot join current thread") ---------- nosy: +graingert _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 05:57:35 2022 From: report at bugs.python.org (Thomas Fischbacher) Date: Fri, 08 Apr 2022 09:57:35 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation In-Reply-To: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> Message-ID: <1649411855.24.0.411672247995.issue47234@roundup.psfhosted.org> Thomas Fischbacher added the comment: This is not a partial duplicate of https://bugs.python.org/issue47121 about math.isfinite(). The problem there is about a specific function on which the documentation may be off - I'll comment separately on that. The problem here is: There is a semantic discrepancy between what the term 'float' means "at run time", such as in a check like: issubclass(type(x), float) (I am deliberately writing it that way, given that isinstance() can, in general [but actually not for float], lie.) and what the term 'float' means in a statically-checkable type annotation like: def f(x: float) -> ... : ... ...and this causes headaches. The specific example ('middle_mean') illustrates the sort of weird situations that arise due to this. (I discovered this recently when updating some of our company's Python onboarding material, where the aspiration naturally is to be extremely accurate with all claims.) So, basically, there is a choice to make between these options: Option A: Give up on the idea that "we want to be able to reason with stringency about the behavior of code" / "we accept that there will be gaps between what code does and what we can reason about". (Not really an option, especially with an eye on "writing secure code requires being able to reason out everything with stringency".) Option B: Accept the discrepancy and tell people that they have to be mindful about float-the-dynamic-type being a different concept from float-the-static-type. Option C: Realizing that having "float" mean different things for dynamic and static typing was not a great idea to begin with, and get everybody who wants to state things such as "this function parameter can be any instance of a real number type" to use the type `numbers.Real` instead (which may well need better support by tooling), respectively express "can be int or float" as `Union[int, float]`. Also, there is Option D: PEP-484 has quite a lot of other problems where the design does not meet rather natural requirements, such as: "I cannot introduce a newtype for 'a mapping where I know the key to be a particular enum-type, but the value is type-parametric' (so the new type would also be 1-parameter type-parametric)", and this float-mess is merely one symptom of "maybe PEP-484 was approved too hastily and should have been also scrutinized by people from a community with more static typing experience". Basically, Option B would spell out as: 'We expect users who use static type annotations to write code like this, and expect them to be aware of the fact that the four places where the term "float" occurs refer to two different concepts': def foo(x: float) -> float: """Returns the foo of the number `x`. Args: x: float, the number to foo. Returns: float, the value of the foo-function at `x`. """ ... ...which actually is shorthand for...: def foo(x: float # Note: means float-or-int ) -> float # Note: means float-or-int : """Returns the foo of the number `x`. Args: x: the number to foo, an instance of the `float` type. Returns: The value of the foo-function at `x`, as an instance of the `float` type. """ ... Option C (and perhaps D) appear - to me - to be the only viable choices here. The pain with Option C is that it invalidates/changes the meaning of already-written code that claims to follow PEP-484, and the main point of Option D is all about: "If we have to cause a new wound and open up the patient again, let's try to minimize the number of times we have to do this." Option C would amount to changing the meaning of...: def foo(x: float) -> float: """Returns the foo of the number `x`. Args: x: float, the number to foo. Returns: float, the value of the foo-function at `x`. """ ... to "static type annotation float really means instance-of-float here" (I do note that issubclass(numpy.float64, float), so passing a numpy-float64 is expected to work here, which is good), and ask people who would want to have functions that can process more generic real numbers to announce this properly. So, we would end up with basically a list of different things that a function-sketch like the one above could turn into - depending on the author's intentions for the function, some major cases being perhaps: (a) ("this is supposed to strictly operate on float") def foo(x: float) -> float: """Returns the foo of the number `x`. Args: x: the number to foo. Returns: the value of the foo-function at `x`. """ (b) ("this will eat any kind of real number") def foo(x: numbers.Real) -> numbers.Real: """Returns the foo of the number `x`. Args: x: the number to foo. Returns: the value of the foo-function at `x`. """ (c) ("this will eat any kind of real number, but the result will always be float") def foo(x: numbers.Real) -> float: """Returns the foo of the number `x`. Args: x: the number to foo. Returns: the value of the foo-function at `x`. """ (d) ("this will eat int or float, but the result will always be float") def foo(x: Union[int, float]) -> float: """Returns the foo of the number `x`. Args: x: the number to foo. Returns: the value of the foo-function at `x`. """ (e) ("this will eat int or float, and the result will also be of that type") def foo(x: Union[int, float]) -> Union[int, float]: """Returns the foo of the number `x`. Args: x: the number to foo. Returns: the value of the foo-function at `x`. """ (f) ("this method maps a float to a real number, but subclasses can generalize this to accept more than float, and return something that gives more guarantees than being a real number.") def myfoo(self, x: float) -> numbers.Real: """Returns the foo of the number `x`. Args: x: the number to foo. Returns: the value of the foo-function at `x`. """ ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:02:05 2022 From: report at bugs.python.org (Richard Purdie) Date: Fri, 08 Apr 2022 10:02:05 +0000 Subject: [issue47258] Python 3.10 hang at exit in drop_gil() (due to resource warning at exit?) Message-ID: <1649412125.79.0.637229410178.issue47258@roundup.psfhosted.org> New submission from Richard Purdie : We had a python hang at shutdown. The gdb python backtrace and C backtraces are below. It is hung in the COND_WAIT(gil->switch_cond, gil->switch_mutex) call in drop_gil(). Py_FinalizeEx -> handle_system_exit() -> PyGC_Collect -> handle_weakrefs -> drop_gil I think from the stack trace it may have been printing the warning: sys:1: ResourceWarning: unclosed file <_io.TextIOWrapper name='/home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-1560250/bitbake-cookerdaemon.log' mode='a+' encoding='UTF-8'> however I'm not sure if it was that or trying to show a different exception. Even if we have a resource leak, it shouldn't really hang! (gdb) py-bt Traceback (most recent call first): File "/usr/lib64/python3.10/weakref.py", line 106, in remove def remove(wr, selfref=ref(self), _atomic_removal=_remove_dead_weakref): Garbage-collecting #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f0f7bd54b20 <_PyRuntime+512>) at futex-internal.c:57 #1 __futex_abstimed_wait_common (futex_word=futex_word at entry=0x7f0f7bd54b20 <_PyRuntime+512>, expected=expected at entry=0, clockid=clockid at entry=0, abstime=abstime at entry=0x0, private=private at entry=0, cancel=cancel at entry=true) at futex-internal.c:87 #2 0x00007f0f7b88979f in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word at entry=0x7f0f7bd54b20 <_PyRuntime+512>, expected=expected at entry=0, clockid=clockid at entry=0, abstime=abstime at entry=0x0, private=private at entry=0) at futex-internal.c:139 #3 0x00007f0f7b88beb0 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f0f7bd54b28 <_PyRuntime+520>, cond=0x7f0f7bd54af8 <_PyRuntime+472>) at pthread_cond_wait.c:504 #4 ___pthread_cond_wait (cond=cond at entry=0x7f0f7bd54af8 <_PyRuntime+472>, mutex=mutex at entry=0x7f0f7bd54b28 <_PyRuntime+520>) at pthread_cond_wait.c:619 #5 0x00007f0f7bb388d8 in drop_gil (ceval=0x7f0f7bd54a78 <_PyRuntime+344>, ceval2=, tstate=0x558744ef7c10) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/ceval_gil.h:182 #6 0x00007f0f7bb223e8 in eval_frame_handle_pending (tstate=) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/ceval.c:1185 #7 _PyEval_EvalFrameDefault (tstate=, f=, throwflag=) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/ceval.c:1775 #8 0x00007f0f7bb19600 in _PyEval_EvalFrame (throwflag=0, f=Frame 0x7f0f7a0c8a60, for file /usr/lib64/python3.10/weakref.py, line 106, in remove (wr=, selfref=, _atomic_removal=), tstate=0x558744ef7c10) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Include/internal/pycore_ceval.h:46 #9 _PyEval_Vector (tstate=, con=, locals=, args=, argcount=1, kwnames=) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/ceval.c:5065 #10 0x00007f0f7bb989a8 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=9223372036854775809, args=0x7fff8b815bc8, callable=, tstate=0x558744ef7c10) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Include/cpython/abstract.h:114 #11 PyObject_CallOneArg (func=, arg=) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Include/cpython/abstract.h:184 #12 0x00007f0f7bb0fce1 in handle_weakrefs (old=0x558744edbd30, unreachable=0x7fff8b815c70) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/gcmodule.c:887 #13 gc_collect_main (tstate=0x558744ef7c10, generation=2, n_collected=0x7fff8b815d50, n_uncollectable=0x7fff8b815d48, nofail=0) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/gcmodule.c:1281 #14 0x00007f0f7bb9194e in gc_collect_with_callback (tstate=tstate at entry=0x558744ef7c10, generation=generation at entry=2) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/gcmodule.c:1413 #15 0x00007f0f7bbc827e in PyGC_Collect () at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/gcmodule.c:2099 #16 0x00007f0f7bbc7bc2 in Py_FinalizeEx () at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/pylifecycle.c:1781 #17 0x00007f0f7bbc7d7c in Py_Exit (sts=0) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/pylifecycle.c:2858 #18 0x00007f0f7bbc4fbb in handle_system_exit () at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/pythonrun.c:775 #19 0x00007f0f7bbc4f3d in _PyErr_PrintEx (set_sys_last_vars=1, tstate=0x558744ef7c10) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/pythonrun.c:785 #20 PyErr_PrintEx (set_sys_last_vars=1) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/pythonrun.c:880 #21 0x00007f0f7bbbcece in PyErr_Print () at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/pythonrun.c:886 #22 _PyRun_SimpleFileObject (fp=, filename=, closeit=1, flags=0x7fff8b815f18) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/pythonrun.c:462 #23 0x00007f0f7bbbcc57 in _PyRun_AnyFileObject (fp=0x558744ed9370, filename='/home/pokybuild/yocto-worker/oe-selftest-fedora/build/bitbake/bin/bitbake', closeit=1, flags=0x7fff8b815f18) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/pythonrun.c:90 #24 0x00007f0f7bbb9e44 in pymain_run_file_obj (skip_source_first_line=0, filename='/home/pokybuild/yocto-worker/oe-selftest-fedora/build/bitbake/bin/bitbake', program_name='python3') at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/main.c:353 #25 pymain_run_file (config=0x558744edbe30) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/main.c:372 #26 pymain_run_python (exitcode=0x7fff8b815f10) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/main.c:587 #27 Py_RunMain () at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/main.c:666 #28 0x00007f0f7bb8670d in Py_BytesMain (argc=, argv=) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Modules/main.c:720 #29 0x00007f0f7b82c560 in __libc_start_call_main (main=main at entry=0x558743bfd160
, argc=argc at entry=5, argv=argv at entry=0x7fff8b816168) at ../sysdeps/nptl/libc_start_call_main.h:58 #30 0x00007f0f7b82c60c in __libc_start_main_impl (main=0x558743bfd160
, argc=5, argv=0x7fff8b816168, init=, fini=, rtld_fini=, stack_end=0x7fff8b816158) at ../csu/libc-start.c:409 #31 0x0000558743bfd095 in _start () ---------- components: Interpreter Core messages: 416968 nosy: rpurdie priority: normal severity: normal status: open title: Python 3.10 hang at exit in drop_gil() (due to resource warning at exit?) versions: Python 3.10 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:04:22 2022 From: report at bugs.python.org (Kubilay Kocak) Date: Fri, 08 Apr 2022 10:04:22 +0000 Subject: [issue46263] FreeBSD buildbots cannot compile Python In-Reply-To: <1641337743.6.0.289093043654.issue46263@roundup.psfhosted.org> Message-ID: <1649412262.76.0.415152101998.issue46263@roundup.psfhosted.org> Change by Kubilay Kocak : ---------- nosy: +koobs _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:09:13 2022 From: report at bugs.python.org (Thomas Fischbacher) Date: Fri, 08 Apr 2022 10:09:13 +0000 Subject: [issue47121] math.isfinite() can raise exception when called on a number In-Reply-To: <1648229323.49.0.0271955914629.issue47121@roundup.psfhosted.org> Message-ID: <1649412553.17.0.986322711256.issue47121@roundup.psfhosted.org> Thomas Fischbacher added the comment: Tim, the problem may well be simply due to the documentation of math.isfinite() being off here. This is what we currently have: https://docs.python.org/3/library/math.html#math.isfinite === math.isfinite(x) Return True if x is neither an infinity nor a NaN, and False otherwise. (Note that 0.0 is considered finite.) New in version 3.2. === If this were re-worded as follows (and corresponding changes were made to other such functions), everyone would know what the expectations and behavior are: === math.isfinite(x) If `x` is a `float` instance, this evaluates to `True` if `x` is neither a float infinity nor a NaN, and `False` otherwise. If `x` is not a `float` instance, this is evaluates to `math.isfinite(float(x))`. New in version 3.2. === This would be an accurate defining description of the actual behavior. Note that, "thanks to PEP-484", this abbreviation would currently be ambiguous though: === math.isfinite(x) If `x` is a float, this evaluates to `True` if `x` is neither a float infinity nor a NaN, and `False` otherwise. If `x` is not a float, this is evaluates to `math.isfinite(float(x))`. New in version 3.2. === ("ambiguous" since "float" means different things as a static type and as a numbers class - and it is not clear what would be referred to here). Changing/generalizing the behavior might potentially be an interesting other proposal, but I would argue that then one would want to change the behavior of quite a few other functions here as well, and all this should then perhaps go into some other `xmath` (or so) module - bit like it is with `cmath`. However, since the Python philosophy is to not rely on bureaucracy to enforce contracts (as C++, Java, etc. do it), but instead to rely on people's ability to define their own contracts, making the math.isfinite() contract more accurate w.r.t. actual behavior in the CPython implementation via extra clarification looks like a good thing to do, no? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:11:25 2022 From: report at bugs.python.org (Alexey Izbyshev) Date: Fri, 08 Apr 2022 10:11:25 +0000 Subject: [issue35823] Use vfork() in subprocess on Linux In-Reply-To: <1548381806.02.0.709569222975.issue35823@roundup.psfhosted.org> Message-ID: <1649412685.36.0.324777260209.issue35823@roundup.psfhosted.org> Alexey Izbyshev added the comment: The preceding comment is wrong, see discussion in #47245 and https://bugzilla.kernel.org/show_bug.cgi?id=215813#c14 for explanation of why that bug report is irrelevant for CPython. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:13:09 2022 From: report at bugs.python.org (Mark Dickinson) Date: Fri, 08 Apr 2022 10:13:09 +0000 Subject: [issue47257] add methods to get first and last elements of a range In-Reply-To: <1649405020.81.0.958587305451.issue47257@roundup.psfhosted.org> Message-ID: <1649412789.74.0.282346855746.issue47257@roundup.psfhosted.org> Mark Dickinson added the comment: > but it's messy and potentially tricky to get the actual first and last values of the range Doesn't simple indexing already provide what you need here? >>> range(1, 5, 2)[0] # first element of range 1 >>> range(1, 5, 2)[-1] # last element of range 3 ---------- nosy: +mark.dickinson _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:17:32 2022 From: report at bugs.python.org (Christian Heimes) Date: Fri, 08 Apr 2022 10:17:32 +0000 Subject: [issue40280] Consider supporting emscripten/webassembly as a build target In-Reply-To: <1586848295.92.0.690921486188.issue40280@roundup.psfhosted.org> Message-ID: <1649413052.8.0.589096978063.issue40280@roundup.psfhosted.org> Change by Christian Heimes : ---------- pull_requests: +30438 pull_request: https://github.com/python/cpython/pull/32412 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:32:00 2022 From: report at bugs.python.org (Pierre Ossman) Date: Fri, 08 Apr 2022 10:32:00 +0000 Subject: [issue47259] string sorting often incorrect Message-ID: <1649413919.78.0.3890118506.issue47259@roundup.psfhosted.org> New submission from Pierre Ossman : There is a big gotcha in Python that is easily overlooked and should at the very least be more prominently pointed out in the documentation. Sorting strings will produce results that is very confusing for humans. I happens to work for ASCII, but will generally produce bad results for other things as code points do not always follow the alphabetical order. The expressions chapter? mentions this fact, but you have to dig quite a bit to reach that. It also mentions that normalization is an issue, but it never mentions the issue about code point order versus alphabetical order. The sorting tutorial mentions under "Odds and ends"? that you need to use a special key or comparison function to get locale aware sorting. It doesn't mention that this also includes respecting alphabetical order, which might be overlooked unless you are very familiar with how the sorting works. The tutorial is also something you have to dig a bit to reach. Ideally string comparison would always be locale aware in a high level language such as Python. However, a smaller step would be a note on sorted()? that extra care needs to be taken for strings as the default behaviour will produce unexpected results once your strings include anything outside the English alphabet. ? https://docs.python.org/3/reference/expressions.html ? https://docs.python.org/3/howto/sorting.html#odd-and-ends ? https://docs.python.org/3/library/functions.html#sorted ---------- components: Interpreter Core messages: 416972 nosy: CendioOssman priority: normal severity: normal status: open title: string sorting often incorrect _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:34:44 2022 From: report at bugs.python.org (paul rubin) Date: Fri, 08 Apr 2022 10:34:44 +0000 Subject: [issue47257] add methods to get first and last elements of a range In-Reply-To: <1649405020.81.0.958587305451.issue47257@roundup.psfhosted.org> Message-ID: <1649414084.39.0.778490585828.issue47257@roundup.psfhosted.org> paul rubin added the comment: Oh nice, I didn't realize you could do that. len(range) and bool(range) (to test for empty) also work. Ok I guess this enhancement is not needed. I will close ticket, hope that is procedurally correct, otherwise feel free to fix. Thanks. ---------- resolution: -> rejected stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:46:02 2022 From: report at bugs.python.org (Steven D'Aprano) Date: Fri, 08 Apr 2022 10:46:02 +0000 Subject: [issue47259] string sorting often incorrect In-Reply-To: <1649413919.78.0.3890118506.issue47259@roundup.psfhosted.org> Message-ID: <1649414762.26.0.424669080596.issue47259@roundup.psfhosted.org> Change by Steven D'Aprano : ---------- nosy: +steven.daprano _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:46:48 2022 From: report at bugs.python.org (Mark Shannon) Date: Fri, 08 Apr 2022 10:46:48 +0000 Subject: [issue40421] [C API] Add public getter functions for the internal PyFrameObject structure In-Reply-To: <1588079870.34.0.984904607646.issue40421@roundup.psfhosted.org> Message-ID: <1649414808.36.0.433843858847.issue40421@roundup.psfhosted.org> Change by Mark Shannon : ---------- pull_requests: +30439 pull_request: https://github.com/python/cpython/pull/32413 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:47:24 2022 From: report at bugs.python.org (=?utf-8?b?0JzQsNGA0Log0JrQvtGA0LXQvdCx0LXRgNCz?=) Date: Fri, 08 Apr 2022 10:47:24 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux? In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649414844.42.0.888504718735.issue47245@roundup.psfhosted.org> ???? ????????? added the comment: So, finally: 1. Regarding vfork() and stack - everything is nice. No bugs because libc has nasty hacks for stack restoration. 2. Having the ability to turn off vfork using environment variables is NICE. At least, one can easily compare the performance. 3. We have to fix error-path in order not to change heap state (contents and allocations), possibly do not touch locks. During vfork() child execution - the only parent THREAD (not the process) is blocked. For example, it's not allowed to touch GIL. Child process may die unexpectedly and leave GIL locked. Is it possible to rewrite children path for vfork() case without any Py* calls ? As an idea, we can prepare all low-level things (all the pointers to strings and plain values) before vfork(), so child code will use only that data. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:51:24 2022 From: report at bugs.python.org (=?utf-8?b?0JzQsNGA0Log0JrQvtGA0LXQvdCx0LXRgNCz?=) Date: Fri, 08 Apr 2022 10:51:24 +0000 Subject: [issue35823] Use vfork() in subprocess on Linux In-Reply-To: <1548381806.02.0.709569222975.issue35823@roundup.psfhosted.org> Message-ID: <1649415084.0.0.549846387951.issue35823@roundup.psfhosted.org> ???? ????????? added the comment: Yes, you are almost right. Error-path is not so clear (it is discussed in another issue), but in general, yes, my previous comment is wrong. So, finally, there are no bugs around the stack at all. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 06:59:58 2022 From: report at bugs.python.org (Alexey Izbyshev) Date: Fri, 08 Apr 2022 10:59:58 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux? In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649415598.8.0.480988377567.issue47245@roundup.psfhosted.org> Alexey Izbyshev added the comment: > 3. We have to fix error-path in order not to change heap state (contents and allocations), possibly do not touch locks. During vfork() child execution - the only parent THREAD (not the process) is blocked. For example, it's not allowed to touch GIL. Child process may die unexpectedly and leave GIL locked. Is it possible to rewrite children path for vfork() case without any Py* calls ? As an idea, we can prepare all low-level things (all the pointers to strings and plain values) before vfork(), so child code will use only that data. What specifically do you propose to fix? There is no problem with GIL if the child dies because the GIL is locked and unlocked only by the parent and the child never touches it. Similarly, only Py_* calls known to be safe are used. As for "pointers to strings", it's not clear to me what you mean, but if you mean allocations, they are already done before (v)fork(), since the child code is required to be async-signal-safe even if plain fork() is used. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 07:04:30 2022 From: report at bugs.python.org (Steve Dower) Date: Fri, 08 Apr 2022 11:04:30 +0000 Subject: [issue47103] Copy pgort140.dll when building for PGO In-Reply-To: <1648065621.85.0.817743953237.issue47103@roundup.psfhosted.org> Message-ID: <1649415870.21.0.801338659903.issue47103@roundup.psfhosted.org> Change by Steve Dower : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 07:04:12 2022 From: report at bugs.python.org (Steve Dower) Date: Fri, 08 Apr 2022 11:04:12 +0000 Subject: [issue45116] Performance regression 3.10b1: inlining issue in the big _PyEval_EvalFrameDefault() function with Visual Studio (MSC) In-Reply-To: <1630942038.24.0.156228540374.issue45116@roundup.psfhosted.org> Message-ID: <1649415852.48.0.943383618939.issue45116@roundup.psfhosted.org> Steve Dower added the comment: > __assume(0) should be replaced with other function, inside the eval switch-case or in the inlined paths of callees. This is critical with PGO. Out of interest, have you done other experiments confirming this? The reference linked is talking about compiler throughput (i.e. how long it takes to compile), and while it hints that using __assume(0) may interfere with other optimisations, that isn't supported with any detail or analysis in the post. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 07:36:06 2022 From: report at bugs.python.org (Mark Shannon) Date: Fri, 08 Apr 2022 11:36:06 +0000 Subject: [issue47046] Add `f_state` attribute to FrameObjects. In-Reply-To: <1647535239.19.0.523349265892.issue47046@roundup.psfhosted.org> Message-ID: <1649417766.36.0.285424672465.issue47046@roundup.psfhosted.org> Mark Shannon added the comment: Don't you need to know if a "call" event is a call or the resumption of a generator? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 07:45:54 2022 From: report at bugs.python.org (Doug Bates) Date: Fri, 08 Apr 2022 11:45:54 +0000 Subject: [issue47229] IDLE UI crashes on Chromebook Linux/Bullseye In-Reply-To: <1649309298.28.0.390651908172.issue47229@roundup.psfhosted.org> Message-ID: Doug Bates added the comment: 'cc' Terry to say thank you. Just fyi I regressed my Chromebook to Debian/Buster form Bullseye, as IDLE and Thonny had previously worked seamlessly but now it doesn't work on Bullseye either -> so Google must have broken something along the way upgrading ChromeOS [98..101]. I have reported this via Google's bug reporter. Fingers crossed and thanks for your help :-) On Thu, Apr 7, 2022 at 6:28 AM Terry J. Reedy wrote: > > Terry J. Reedy added the comment: > > "Thonny GUI uses the same as IDLE": I presume this means that Thonny also > uses tkinter and both fail, which means that tkinter is not working right. > Your test run indicates that python is not running correctly either. It > only tried to run 10 of what should be over 400 tests and 9 of those failed > because of failure to import the test file. You should report this to > whoever supplies python on Chromebook, which I presume is whoever supplies > Bullseye. > > ---------- > resolution: -> third party > stage: -> resolved > status: open -> closed > title: IDLE / Thonny UI crashes on Chromebook Linux/Bullseye -> IDLE UI > crashes on Chromebook Linux/Bullseye > > _______________________________________ > Python tracker > > _______________________________________ > ---------- title: Python tests fail on Chromebook Linux/Bullseye -> IDLE UI crashes on Chromebook Linux/Bullseye _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 07:56:59 2022 From: report at bugs.python.org (Petr Viktorin) Date: Fri, 08 Apr 2022 11:56:59 +0000 Subject: [issue23312] google thinks the docs are mobile unfriendly In-Reply-To: <1422121325.13.0.140473067698.issue23312@psf.upfronthosting.co.za> Message-ID: <1649419019.99.0.863174011683.issue23312@roundup.psfhosted.org> Petr Viktorin added the comment: This has been solved by the new theme. The Goolgle report linked above shows ?Passed? and ?96? (out of 100). It does show a few opportunities to improve, but many seem to indirectly complain that the page is big. I'm closing the issue. ---------- nosy: +petr.viktorin _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 07:57:08 2022 From: report at bugs.python.org (Petr Viktorin) Date: Fri, 08 Apr 2022 11:57:08 +0000 Subject: [issue23312] google thinks the docs are mobile unfriendly In-Reply-To: <1422121325.13.0.140473067698.issue23312@psf.upfronthosting.co.za> Message-ID: <1649419028.68.0.67380042104.issue23312@roundup.psfhosted.org> Change by Petr Viktorin : ---------- resolution: -> fixed stage: needs patch -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 08:12:34 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Fri, 08 Apr 2022 12:12:34 +0000 Subject: [issue47259] string sorting often incorrect In-Reply-To: <1649413919.78.0.3890118506.issue47259@roundup.psfhosted.org> Message-ID: <1649419954.72.0.330068098616.issue47259@roundup.psfhosted.org> Change by Raymond Hettinger : ---------- nosy: +rhettinger _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 08:14:06 2022 From: report at bugs.python.org (Alex Waygood) Date: Fri, 08 Apr 2022 12:14:06 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation In-Reply-To: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> Message-ID: <1649420046.0.0.684680647157.issue47234@roundup.psfhosted.org> Alex Waygood added the comment: Please try to make your messages more concise. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 08:49:59 2022 From: report at bugs.python.org (Petr Viktorin) Date: Fri, 08 Apr 2022 12:49:59 +0000 Subject: [issue47169] Stable ABI: Some optional (#ifdef'd) functions aren't handled correctly In-Reply-To: <1648655557.05.0.882264493098.issue47169@roundup.psfhosted.org> Message-ID: <1649422199.28.0.400181581234.issue47169@roundup.psfhosted.org> Change by Petr Viktorin : ---------- pull_requests: +30440 pull_request: https://github.com/python/cpython/pull/32414 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 08:54:15 2022 From: report at bugs.python.org (Thomas Fischbacher) Date: Fri, 08 Apr 2022 12:54:15 +0000 Subject: [issue47234] PEP-484 "numeric tower" approach makes it hard/impossible to specify contracts in documentation In-Reply-To: <1649190368.71.0.65167976325.issue47234@roundup.psfhosted.org> Message-ID: <1649422455.24.0.0008720361924.issue47234@roundup.psfhosted.org> Thomas Fischbacher added the comment: Re AlexWaygood: If these PEP-484 related things were so obvious that they would admit a compact description of the problem in 2-3 lines, these issues would likely have been identified much earlier. We would not be seeing them now, given that Python by and large is a somewhat mature language. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 09:06:24 2022 From: report at bugs.python.org (=?utf-8?q?=C5=81ukasz_Langa?=) Date: Fri, 08 Apr 2022 13:06:24 +0000 Subject: [issue47138] Pin Jinja2 to fix docs build In-Reply-To: <1648455445.5.0.763190152581.issue47138@roundup.psfhosted.org> Message-ID: <1649423184.32.0.325188298088.issue47138@roundup.psfhosted.org> ?ukasz Langa added the comment: New changeset d35af52caae844cb4ea0aff06fa3fc5328708af1 by m-aciek in branch '3.8': [3.8] bpo-47138: Fix documentation build by pinning Jinja version to 3.0.3 (GH-32109) https://github.com/python/cpython/commit/d35af52caae844cb4ea0aff06fa3fc5328708af1 ---------- nosy: +lukasz.langa _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 09:24:52 2022 From: report at bugs.python.org (Petr Viktorin) Date: Fri, 08 Apr 2022 13:24:52 +0000 Subject: [issue47168] Improvements for stable ABI definition files In-Reply-To: <1648654772.36.0.475029979354.issue47168@roundup.psfhosted.org> Message-ID: <1649424292.93.0.469053581225.issue47168@roundup.psfhosted.org> Change by Petr Viktorin : ---------- pull_requests: +30441 pull_request: https://github.com/python/cpython/pull/32415 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 09:33:50 2022 From: report at bugs.python.org (=?utf-8?b?0JzQsNGA0Log0JrQvtGA0LXQvdCx0LXRgNCz?=) Date: Fri, 08 Apr 2022 13:33:50 +0000 Subject: [issue47245] potential undefined behavior with subprocess using vfork() on Linux? In-Reply-To: <1649276692.67.0.496676014466.issue47245@roundup.psfhosted.org> Message-ID: <1649424830.22.0.631040700246.issue47245@roundup.psfhosted.org> ???? ????????? added the comment: I have studied assembler output of _posixsubprocess.o compilation. Yes, everything seems safe. So, I'm closing the bug. ---------- resolution: -> works for me stage: test needed -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 10:02:39 2022 From: report at bugs.python.org (Petr Viktorin) Date: Fri, 08 Apr 2022 14:02:39 +0000 Subject: [issue47168] Improvements for stable ABI definition files In-Reply-To: <1648654772.36.0.475029979354.issue47168@roundup.psfhosted.org> Message-ID: <1649426559.38.0.985851182066.issue47168@roundup.psfhosted.org> Petr Viktorin added the comment: Thinking more about Doc/data/stable_abi.dat, I don't think the rename is worth it. The file is not meant to be used/edited by humans. If someone needs the data for something other than running the Sphinx extension, let me know. We should provide a proper data source for their use case. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 10:29:30 2022 From: report at bugs.python.org (Alexey Izbyshev) Date: Fri, 08 Apr 2022 14:29:30 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox Message-ID: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> New submission from Alexey Izbyshev : After #40422 _Py_closerange() assumes that close_range() closes all file descriptors even if it returns an error (other than ENOSYS): if (close_range(first, last, 0) == 0 || errno != ENOSYS) { /* Any errors encountered while closing file descriptors are ignored; * ENOSYS means no kernel support, though, * so we'll fallback to the other methods. */ } else /* fallbacks */ This assumption can be wrong on Linux if a seccomp sandbox denies the underlying syscall, pretending that it returns EPERM or EACCES. In this case _Py_closerange() won't close any descriptors at all, which in the worst case can be a security issue. I propose to fix this by falling back to other methods in case of *any* close_range() error. Note that fallbacks will not be triggered on any problems with closing individual file descriptors because close_range() is documented to ignore such errors on both Linux[1] and FreeBSD[2]. [1] https://man7.org/linux/man-pages/man2/close_range.2.html [2] https://www.freebsd.org/cgi/man.cgi?query=close_range&sektion=2 ---------- assignee: izbyshev components: Library (Lib) keywords: 3.10regression messages: 416986 nosy: gregory.p.smith, izbyshev, kevans, kevans91 priority: normal severity: normal status: open title: os.closerange() can be no-op in a seccomp sandbox type: behavior versions: Python 3.10, Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 10:38:14 2022 From: report at bugs.python.org (matele secretaire) Date: Fri, 08 Apr 2022 14:38:14 +0000 Subject: [issue39187] urllib.robotparser does not respect the longest match for the rule In-Reply-To: <1577938445.91.0.743054392693.issue39187@roundup.psfhosted.org> Message-ID: <1649428694.09.0.413395773692.issue39187@roundup.psfhosted.org> matele secretaire added the comment: Thank you ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 10:45:29 2022 From: report at bugs.python.org (STINNER Victor) Date: Fri, 08 Apr 2022 14:45:29 +0000 Subject: [issue40421] [C API] Add public getter functions for the internal PyFrameObject structure In-Reply-To: <1588079870.34.0.984904607646.issue40421@roundup.psfhosted.org> Message-ID: <1649429129.78.0.842498718075.issue40421@roundup.psfhosted.org> Change by STINNER Victor : ---------- pull_requests: +30442 pull_request: https://github.com/python/cpython/pull/32417 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 10:49:16 2022 From: report at bugs.python.org (Kyle Evans) Date: Fri, 08 Apr 2022 14:49:16 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox In-Reply-To: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> Message-ID: <1649429356.79.0.0706605947096.issue47260@roundup.psfhosted.org> Kyle Evans added the comment: Sure, sounds good to me. The original theory (IIRC, I've slept many times since then :-)) was that we already know first/last are valid and there are no other defined errors, so 'other errors' must be because close_range has started percolating up something from closing individual files. It's been years now and that hasn't happened, even with more recent flag additions. I think it's safe to say it won't, and such a fallback upon error won't put us back into a bogus pre-close_range situation where we're needlessly close()ing a bunch of closed fds. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:05:20 2022 From: report at bugs.python.org (Alexey Izbyshev) Date: Fri, 08 Apr 2022 15:05:20 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox In-Reply-To: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> Message-ID: <1649430320.27.0.716245616309.issue47260@roundup.psfhosted.org> Change by Alexey Izbyshev : ---------- keywords: +patch pull_requests: +30443 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32418 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:14:46 2022 From: report at bugs.python.org (Rohit Goswami) Date: Fri, 08 Apr 2022 15:14:46 +0000 Subject: [issue47261] RFC: Clarify Limited API macros for PySequence_Fast Message-ID: <1649430886.06.0.551635302311.issue47261@roundup.psfhosted.org> New submission from Rohit Goswami : The `current documentation`_ of the Python-C API mentions that ``PySequence_Fast`` is part of the limited API. However, this may be a typo as all the functions interacting with a ``PySequence_Fast`` object are macros, e.g. `PySequence_Fast_GET_SIZE`, `PySequence_Fast_GET_ITEM` etc. If this is indeed a documentation bug I'm happy to open a PR to fix this once consensus is reached. .. _`current documentation` : https://docs.python.org/3/c-api/stable.html#contents-of-limited-api ---------- messages: 416989 nosy: rgoswami priority: normal severity: normal status: open title: RFC: Clarify Limited API macros for PySequence_Fast _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:15:21 2022 From: report at bugs.python.org (Rohit Goswami) Date: Fri, 08 Apr 2022 15:15:21 +0000 Subject: [issue47261] RFC: Clarify Limited API macros for PySequence_Fast In-Reply-To: <1649430886.06.0.551635302311.issue47261@roundup.psfhosted.org> Message-ID: <1649430921.66.0.608724117931.issue47261@roundup.psfhosted.org> Change by Rohit Goswami : ---------- assignee: -> docs at python components: +C API, Documentation nosy: +docs at python _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:18:43 2022 From: report at bugs.python.org (Rohit Goswami) Date: Fri, 08 Apr 2022 15:18:43 +0000 Subject: [issue47261] RFC: Clarify Limited API macros for PySequence_Fast In-Reply-To: <1649430886.06.0.551635302311.issue47261@roundup.psfhosted.org> Message-ID: <1649431123.01.0.981335181474.issue47261@roundup.psfhosted.org> Rohit Goswami added the comment: Perhaps to be clear, there are two possibilities: 1. `PySequence_Fast` should be removed from the Limited API 2. All macros used with `PySequence_Fast` are valid for use in the context of the Limited API In either case the documentation should need to be clarified. The only situation where no changes would result is if: - `PySequence_Fast` is part of the Limited API, but must be treated the same as a regular `PySequence` object + Since only `PySequence_Size` and other variants can be used in the context of the Limited API This is actually also still confusing and should be mentioned clearly. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:19:49 2022 From: report at bugs.python.org (Rohit Goswami) Date: Fri, 08 Apr 2022 15:19:49 +0000 Subject: [issue47261] RFC: Clarify usage of macros for PySequence_Fast within the Limited C API In-Reply-To: <1649430886.06.0.551635302311.issue47261@roundup.psfhosted.org> Message-ID: <1649431189.54.0.780885102611.issue47261@roundup.psfhosted.org> Change by Rohit Goswami : ---------- title: RFC: Clarify Limited API macros for PySequence_Fast -> RFC: Clarify usage of macros for PySequence_Fast within the Limited C API _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:25:58 2022 From: report at bugs.python.org (Alexey Izbyshev) Date: Fri, 08 Apr 2022 15:25:58 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox In-Reply-To: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> Message-ID: <1649431558.86.0.443300350725.issue47260@roundup.psfhosted.org> Alexey Izbyshev added the comment: > It's been years now and that hasn't happened, even with more recent flag additions. I think it's safe to say it won't, and such a fallback upon error won't put us back into a bogus pre-close_range situation where we're needlessly close()ing a bunch of closed fds. Yes, I also find it unlikely that close_range() will start reporting an error if it fails to close some fd, especially if not given some new flag. Such error reporting doesn't seem very useful to userspace because there is no way to associate the error with the fd. But even if such change happens, it will be just a performance regression, not a potential correctness/security issue. ---------- keywords: -patch stage: patch review -> _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:26:27 2022 From: report at bugs.python.org (Alexey Izbyshev) Date: Fri, 08 Apr 2022 15:26:27 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox In-Reply-To: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> Message-ID: <1649431587.75.0.298195746897.issue47260@roundup.psfhosted.org> Change by Alexey Izbyshev : ---------- keywords: +patch stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:41:25 2022 From: report at bugs.python.org (Ken Jin) Date: Fri, 08 Apr 2022 15:41:25 +0000 Subject: [issue47255] Many broken :meth: roles in the docs In-Reply-To: <1649387607.61.0.419587041058.issue47255@roundup.psfhosted.org> Message-ID: <1649432485.43.0.107422301037.issue47255@roundup.psfhosted.org> Ken Jin added the comment: It's 3.10 only. Presumably our sphinx version changed then and something broke. In 3.9 and earlier the links are all fine. See https://bugs.python.org/issue42182 for a similar issue I raised ages ago. ---------- nosy: +kj _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:41:36 2022 From: report at bugs.python.org (Irit Katriel) Date: Fri, 08 Apr 2022 15:41:36 +0000 Subject: [issue44213] LIST_TO_TUPLE placed below the sentence "all of the following use their opcodes" in dis library documentaiton. In-Reply-To: <1621659583.31.0.989908134751.issue44213@roundup.psfhosted.org> Message-ID: <1649432496.11.0.557631205712.issue44213@roundup.psfhosted.org> Irit Katriel added the comment: The "all of the following.. " sentence has been removed in 3.11. ---------- nosy: +iritkatriel resolution: -> out of date stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 11:59:25 2022 From: report at bugs.python.org (Irit Katriel) Date: Fri, 08 Apr 2022 15:59:25 +0000 Subject: [issue35962] [doc] Slight error in words in [ 2.4.1. String and Bytes literals ] In-Reply-To: <1549879959.7.0.265215879488.issue35962@roundup.psfhosted.org> Message-ID: <1649433565.11.0.814833342745.issue35962@roundup.psfhosted.org> Change by Irit Katriel : ---------- keywords: +easy priority: normal -> low title: Slight error in words in [ 2.4.1. String and Bytes literals ] -> [doc] Slight error in words in [ 2.4.1. String and Bytes literals ] versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.7, Python 3.8 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 12:10:23 2022 From: report at bugs.python.org (Jelle Zijlstra) Date: Fri, 08 Apr 2022 16:10:23 +0000 Subject: [issue47087] Implement PEP 655 (Required/NotRequired) In-Reply-To: <1647897511.2.0.22546468537.issue47087@roundup.psfhosted.org> Message-ID: <1649434223.23.0.718769284457.issue47087@roundup.psfhosted.org> Change by Jelle Zijlstra : ---------- keywords: +patch pull_requests: +30444 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32419 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 13:36:17 2022 From: report at bugs.python.org (Ned Deily) Date: Fri, 08 Apr 2022 17:36:17 +0000 Subject: [issue5901] missing meta-info in documentation pdf In-Reply-To: <1241246578.79.0.771794251259.issue5901@psf.upfronthosting.co.za> Message-ID: <1649439377.35.0.0145868560397.issue5901@roundup.psfhosted.org> Ned Deily added the comment: The problem seems to have been fixed again somewhere in the past. ---------- nosy: +ned.deily resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.5, Python 3.6 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 13:40:56 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Fri, 08 Apr 2022 17:40:56 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox In-Reply-To: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> Message-ID: <1649439656.87.0.0269567981546.issue47260@roundup.psfhosted.org> Gregory P. Smith added the comment: New changeset 1c8b3b5d66a629258f1db16939b996264a8b9c37 by Alexey Izbyshev in branch 'main': bpo-47260: Fix os.closerange() potentially being a no-op in a seccomp sandbox (GH-32418) https://github.com/python/cpython/commit/1c8b3b5d66a629258f1db16939b996264a8b9c37 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 13:40:53 2022 From: report at bugs.python.org (miss-islington) Date: Fri, 08 Apr 2022 17:40:53 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox In-Reply-To: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> Message-ID: <1649439653.25.0.387616158482.issue47260@roundup.psfhosted.org> Change by miss-islington : ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30445 pull_request: https://github.com/python/cpython/pull/32420 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 13:43:44 2022 From: report at bugs.python.org (Gregory P. Smith) Date: Fri, 08 Apr 2022 17:43:44 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox In-Reply-To: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> Message-ID: <1649439824.28.0.904834332872.issue47260@roundup.psfhosted.org> Gregory P. Smith added the comment: Good catch. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 13:45:22 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Fri, 08 Apr 2022 17:45:22 +0000 Subject: [issue47259] string sorting often incorrect In-Reply-To: <1649413919.78.0.3890118506.issue47259@roundup.psfhosted.org> Message-ID: <1649439922.96.0.430732871164.issue47259@roundup.psfhosted.org> Raymond Hettinger added the comment: I don't think splashing this everywhere else in the docs would be helpful. Tools like list.sort, sorted, min, max, nlargest, nsmallest use whatever sort order is provided by the underlying object whether it be a string, tuple, float, or int. The section on expressions is the intended place to cover how comparison are defined for core objects: https://docs.python.org/3/reference/expressions.html#value-comparisons As suggested, I will edit the sorting howto to be cleared that locale aware sort ordering refers to alphabetical orderings which can vary (for example, the Spanish ll sorts differently in different locales). ---------- assignee: -> rhettinger components: +Documentation -Interpreter Core _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 13:49:04 2022 From: report at bugs.python.org (Raymond Hettinger) Date: Fri, 08 Apr 2022 17:49:04 +0000 Subject: [issue47259] Clarify SortingHOWTO regarding locale aware string sorting In-Reply-To: <1649413919.78.0.3890118506.issue47259@roundup.psfhosted.org> Message-ID: <1649440144.64.0.0622466220752.issue47259@roundup.psfhosted.org> Change by Raymond Hettinger : ---------- title: string sorting often incorrect -> Clarify SortingHOWTO regarding locale aware string sorting versions: +Python 3.10, Python 3.11 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 14:10:43 2022 From: report at bugs.python.org (miss-islington) Date: Fri, 08 Apr 2022 18:10:43 +0000 Subject: [issue47260] os.closerange() can be no-op in a seccomp sandbox In-Reply-To: <1649428170.19.0.996694042165.issue47260@roundup.psfhosted.org> Message-ID: <1649441443.07.0.793220795351.issue47260@roundup.psfhosted.org> miss-islington added the comment: New changeset 89697f7374ea947ebe8e36131e2d3e21fff6fa1d by Miss Islington (bot) in branch '3.10': bpo-47260: Fix os.closerange() potentially being a no-op in a seccomp sandbox (GH-32418) https://github.com/python/cpython/commit/89697f7374ea947ebe8e36131e2d3e21fff6fa1d ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Apr 8 14:14:51 2022 From: report at bugs.python.org (Ezio Melotti) Date: Fri, 08 Apr 2022 18:14:51 +0000 Subject: [issue2771] Test issue In-Reply-To: <1210005645.74.0.283923986194.issue2771@psf.upfronthosting.co.za> Message-ID: <1649441691.53.0.985874052569.issue2771@roundup.psfhosted.org> Ezio Melotti added the comment: So long, and thanks for all the bugs. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400503] fix hashing Message-ID: <1649606520.38.0.392595281701.issue400503@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32427 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400505] printf("%lx") -> printf("%p") for pointers : win64 cares Message-ID: <1649606520.49.0.0816264204251.issue400505@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32428 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400509] overflow checking for modification time (64-bit, import.c) Message-ID: <1649606520.61.0.932250713291.issue400509@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32432 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400506] fix arraymodule for overflow checking Message-ID: <1649606520.52.0.281017260801.issue400506@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32429 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400511] test largefile support (test_largefile.py) Message-ID: <1649606520.67.0.498728977533.issue400511@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32434 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400508] changes to autoconf files and PC/config.h for 64-bit systems Message-ID: <1649606520.57.0.223530413527.issue400508@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32431 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400510] largefile support for Win64 (and some other fixes) Message-ID: <1649606520.63.0.114981609089.issue400510@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32433 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400513] fix posixmodule for 64-bit systems (mainly Win64) Message-ID: <1649606520.75.0.685068458057.issue400513@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32436 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400514] fix Sleep() overflow condition in time module Message-ID: <1649606520.78.0.180786146734.issue400514@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32437 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400515] fix mmap module (broken seek, 64-bit stuff, overflows) Message-ID: <1649606520.81.0.0198239796416.issue400515@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32438 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400512] fix timemodule.c for Win64 Message-ID: <1649606520.72.0.121094739464.issue400512@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32435 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400519] fix possible overflow in select() Message-ID: <1649606520.93.0.653503023794.issue400519@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32442 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400522] simple 64-bit fixes in Objects/ dir Message-ID: <1649606520.99.0.516934899622.issue400522@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32444 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400524] simple 64-bit fixes in Python/ dir Message-ID: <1649606521.04.0.523970595989.issue400524@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32446 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400521] simple 64-bit fixes in Modules/ dir Message-ID: <1649606520.96.0.709189353491.issue400521@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32443 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400517] fix up msvcrtmodule.c and winreg.c for Win64 Message-ID: <1649606520.87.0.866252434922.issue400517@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32440 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400525] simple 64-bit fixes in PC/ dir Message-ID: <1649606521.07.0.199478092774.issue400525@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32447 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400526] fix cPickle.c for 64-bit platforms (mainly Win64) Message-ID: <1649606521.1.0.306605659142.issue400526@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32448 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue207608] 'python -U' breaks eval/exec Message-ID: <1649606521.22.0.967554827236.issue207608@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32452 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400516] fix socket module for 64-bits (mostly Win64) Message-ID: <1649606520.85.0.960282524611.issue400516@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32439 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400523] simple 64-bit fixes in Parser/ dir Message-ID: <1649606521.01.0.112668732353.issue400523@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32445 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400527] fix simple 64-bit warnings/errors in signalmodule.c Message-ID: <1649606521.12.0.466182494649.issue400527@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32449 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400533] Distutils directory cache bug fix Message-ID: <1649606521.16.0.0889431291492.issue400533@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32450 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400545] pindent: add functionality to remove #END tags Message-ID: <1649606521.18.0.951932621988.issue400545@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32451 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400613] clean up warnings in Win32 build of mmapmodule.c Message-ID: <1649606521.3.0.400443862558.issue400613@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32454 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400622] Just a test Message-ID: <1649606521.37.0.110807042402.issue400622@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32456 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400620] atexit module (code, tests and docs) Message-ID: <1649606521.33.0.530450080209.issue400620@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32455 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400637] get rid of warning in pythonrun.c Message-ID: <1649606521.4.0.584510470486.issue400637@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32457 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400638] Doc strings added by Nils Fischbeck Message-ID: <1649606521.44.0.289663664129.issue400638@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32458 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400641] suggested Doc-changes for openpty/forkpty patch. Message-ID: <1649606521.5.0.431441053998.issue400641@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32460 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400642] \N{...} Unicode Charachter Name Expansion patch Message-ID: <1649606521.55.0.603601364877.issue400642@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32461 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400643] \N{...} Unicode Charachter Name Expansion patch Message-ID: <1649606521.59.0.742557775319.issue400643@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32462 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue208381] Win32 os.listdir raises confusing errors Message-ID: <1649606521.61.0.110300797357.issue208381@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32463 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400646] Better error for "1 in unicodestring" Message-ID: <1649606521.7.0.1116841028.issue400646@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32465 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400650] SRE: pickling support Message-ID: <1649606521.79.0.60163387813.issue400650@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32468 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400651] Improved complex acosh and asinh functions Message-ID: <1649606521.82.0.354963269242.issue400651@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32469 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400653] Fix error checking for instances with in_dict == NULL Message-ID: <1649606521.84.0.924955725344.issue400653@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32470 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400655] fix for an AIX optimizer weirdness in getargs.c Message-ID: <1649606521.92.0.0909595630845.issue400655@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32472 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400657] SRE: towards 1.6b1 Message-ID: <1649606521.97.0.47943514187.issue400657@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32474 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400656] adds CVS files to sdist.prune_file_list() Message-ID: <1649606521.95.0.153132076315.issue400656@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32473 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400654] list comprehensions in Python (for 2.0) Message-ID: <1649606521.87.0.983059043137.issue400654@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32471 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400649] GC patch 4 (gc enabled support) Message-ID: <1649606521.76.0.534506814164.issue400649@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32467 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400659] Allows sdist to work with old-style extensions Message-ID: <1649606522.03.0.546430654872.issue400659@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32476 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400665] Support for conditional inclusion of methods and functions Message-ID: <1649606522.15.0.922338679477.issue400665@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32480 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400661] Typo's in the std distrib by Rob W. W. Hooft Message-ID: <1649606522.09.0.9259948441.issue400661@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32478 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400645] remove a core dump in marshal on recursive object Message-ID: <1649606521.65.0.0971840739114.issue400645@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32464 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400664] Fix for bug no. 48 (Annoyance in ftpmirror.py script) Message-ID: <1649606522.13.0.836845578202.issue400664@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32479 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400666] Removed Macintosh tab-guessing code Message-ID: <1649606522.18.0.0688643867047.issue400666@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32481 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400670] Use include "" in stead of <> and staticforward declarations Message-ID: <1649606522.3.0.622672633493.issue400670@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32485 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400668] Mac Carbon: don't include sys/types if we don't have it Message-ID: <1649606522.24.0.550422155739.issue400668@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32483 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400669] Moved includes to the top, removed think C support Message-ID: <1649606522.27.0.223121144845.issue400669@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32484 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400680] caveat about use of atexit.py Message-ID: <1649606522.45.0.484185963565.issue400680@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32489 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400686] xml package not installed Message-ID: <1649606522.58.0.195700574603.issue400686@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32493 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400685] conversion.xml illformed Message-ID: <1649606522.55.0.0645525542273.issue400685@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32492 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400683] randomize test execution order in regrtest.py Message-ID: <1649606522.48.0.878042840585.issue400683@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32490 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400674] ucnhash staticforward, "" vs <> generation patch Message-ID: <1649606522.41.0.112781062995.issue400674@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32488 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400689] If we have stat.h include it if we don't have sys/stat.h Message-ID: <1649606522.73.0.41224524756.issue400689@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32496 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400693] Include stat.h if needed; different Mac filename compare Message-ID: <1649606522.77.0.255083131464.issue400693@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32498 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400692] Include limits.h if we have it. Message-ID: <1649606522.75.0.536373727357.issue400692@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32497 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400694] Include limits.h if we have it. Message-ID: <1649606522.8.0.221130545002.issue400694@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32499 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400687] Fixes for freeze on 1.6 (mostly win32) Message-ID: <1649606522.61.0.49078152616.issue400687@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32494 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400697] Test script for openpty() Message-ID: <1649606522.85.0.78322233906.issue400697@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32501 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400696] Test script for Lib/pty.py Message-ID: <1649606522.82.0.609410770808.issue400696@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32500 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400688] Add 'isatty(fd)' to posixmodule. Message-ID: <1649606522.66.0.943514101641.issue400688@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32495 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400699] Augmented Assignment, the Python Way (huge) Message-ID: <1649606522.89.0.40552275984.issue400699@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32503 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400705] Supporting PyXML Message-ID: <1649606522.96.0.893271114326.issue400705@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32505 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400698] small fixes for GC Message-ID: <1649606522.87.0.607815251256.issue400698@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32502 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400700] RADIUS authentication module Message-ID: <1649606522.93.0.851620630396.issue400700@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32504 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400707] Improvement in shlex sourcing facility Message-ID: <1649606523.03.0.931245482267.issue400707@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32507 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400718] Prefer LinuxThreads, if available, over Pth Message-ID: <1649606523.16.0.21889836956.issue400718@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32510 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400717] Don't link with the libieee library if it's not necessary Message-ID: <1649606523.1.0.0988037391511.issue400717@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32509 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400719] Use '#!/usr/bin/env python' in scripts Message-ID: <1649606523.2.0.383686397352.issue400719@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32511 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400720] We don't want to link with libnet on non-BeOS systems Message-ID: <1649606523.24.0.749090031053.issue400720@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32512 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400729] Make python-mode not insert tabs by default. Message-ID: <1649606523.4.0.526777836265.issue400729@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32515 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400722] Move sgi._getpty() into posix.openpty() Message-ID: <1649606523.32.0.708773120267.issue400722@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32513 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400730] UserList/UserString: Do creation of new instance in new func Message-ID: <1649606523.44.0.0772064693384.issue400730@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32516 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400737] -Wall fixes for gcmodule.c Message-ID: <1649606523.57.0.146369359145.issue400737@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32519 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400739] add history file functions for Modules/readline.c Message-ID: <1649606523.66.0.855444497861.issue400739@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32521 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400733] Typos Message-ID: <1649606523.48.0.777868023657.issue400733@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32517 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400738] add history file functions for Modules/readline.c Message-ID: <1649606523.62.0.47945851771.issue400738@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32520 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400672] modify test_socket.py to listen/connect using loopback addr Message-ID: <1649606522.33.0.472208717243.issue400672@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32486 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400745] Fix PR #384, fixes UTF-8 en/decode Message-ID: <1649606523.82.0.0273518821519.issue400745@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32526 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400752] Make atoi work for negative bases, a useful generalization Message-ID: <1649606523.92.0.839125172846.issue400752@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32528 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400749] Fix -Wall-warnings in socket, classobject.c and object.c Message-ID: <1649606523.85.0.198292570171.issue400749@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32527 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400760] _src.c: indentation, ParseTuple method names Message-ID: <1649606523.97.0.470709059441.issue400760@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32530 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400667] Removed support for long-dead Think C compiler Message-ID: <1649606522.21.0.835899734848.issue400667@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32482 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400744] 32-bit integer typedef for use by UTF-16 code Message-ID: <1649606523.8.0.644632935685.issue400744@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32525 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400765] proposed changes to the locale.py interface Message-ID: <1649606524.13.0.180502272205.issue400765@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32535 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400742] readline history read/write Message-ID: <1649606523.78.0.361281904314.issue400742@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32524 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400763] posixmodule.c: ANSI-fying, indentation Message-ID: <1649606524.05.0.412145561129.issue400763@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32533 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400767] cursesmodule: ANSI-fication, s/arg/args/ Message-ID: <1649606524.15.0.366865346694.issue400767@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32536 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400761] _sre.c: indentation, ParseTuple method names Message-ID: <1649606523.99.0.555330483561.issue400761@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32531 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400769] almodule: ANSI-fication (UNTESTED!) Message-ID: <1649606524.21.0.597867631889.issue400769@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32538 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400771] _tkinter: getting rid of two unused variables Message-ID: <1649606524.25.0.490486043288.issue400771@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32540 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400774] audioop: ANSI-fication (compiles fine, but UNTESTED!) Message-ID: <1649606524.35.0.342244192286.issue400774@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32543 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400773] arraymodule: ANSI-fication (some arrayobject->PyObject) Message-ID: <1649606524.31.0.0205828729151.issue400773@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32542 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400777] cdmodule: ANSI-fication (UNTESTED!) Message-ID: <1649606524.42.0.23066830174.issue400777@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32546 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400770] socketmodule: ANSI-fication Message-ID: <1649606524.23.0.694963069028.issue400770@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32539 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400608] just testing Message-ID: <1649606521.26.0.545350787334.issue400608@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32453 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400780] cmathmodule: ANSI-fication Message-ID: <1649606524.48.0.303525153672.issue400780@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32548 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400734] more helpful SyntaxError messages Message-ID: <1649606523.54.0.855076612866.issue400734@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32518 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400775] binascii: ANSI-fication Message-ID: <1649606524.37.0.237441104335.issue400775@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32544 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400772] tclNotify: ANSI-fication Message-ID: <1649606524.27.0.213132914174.issue400772@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32541 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400740] gzip: readline(), readlines() patch Message-ID: <1649606523.73.0.323937776637.issue400740@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32522 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400778] cgensupport: ANSI-fication (compiles fine, but UNTESTED) Message-ID: <1649606524.45.0.826845659587.issue400778@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32547 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400786] flmodule: ANSI-fication Message-ID: <1649606524.65.0.257743602908.issue400786@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32554 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400785] fcntlmodule: ANSI-fication Message-ID: <1649606524.63.0.0950133237061.issue400785@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32553 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400788] Fix os.path.commonprefix to work by directory components Message-ID: <1649606524.73.0.664606805869.issue400788@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32556 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400787] fmmodule: ANSI-fication Message-ID: <1649606524.68.0.657238789131.issue400787@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32555 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400648] GC patch 3 (gc disabled) Message-ID: <1649606521.74.0.461710713445.issue400648@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32466 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400784] errnomodule: ANSI-fication Message-ID: <1649606524.59.0.821906143901.issue400784@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32552 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400791] glmodule: ANSI-fication (UNTESTED!) Message-ID: <1649606524.81.0.585054400945.issue400791@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32558 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400790] gcmodule: ANSI-fication Message-ID: <1649606524.77.0.451806039962.issue400790@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32557 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400795] md5c: ANSI-fication Message-ID: <1649606524.94.0.0665906972299.issue400795@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32562 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400797] md5.h: ANSI-fication, remove of PROTO_LIST Message-ID: <1649606524.99.0.755967758314.issue400797@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32564 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400794] Modules/main: ANSI-fication Message-ID: <1649606524.91.0.854085666912.issue400794@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32561 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400793] imgfile: ANSI-fication (UNTESTED!) Message-ID: <1649606524.88.0.0261133049626.issue400793@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32560 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400799] newmodule: ANSI-fication Message-ID: <1649606525.03.0.867423849163.issue400799@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32566 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:01 +0000 Subject: [issue400640] Add support for openpty(3) and forkpty(3), when available. Message-ID: <1649606521.47.0.614991620598.issue400640@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32459 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400801] parsermodule: ANSI-fication Message-ID: <1649606525.08.0.693684060899.issue400801@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32568 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400798] mpz: +ANSI (added 1 MPZ_CONVERSION_AS_METHOD ifdef) Message-ID: <1649606525.01.0.0197791877878.issue400798@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32565 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400800] nismodule: ANSI-fication Message-ID: <1649606525.06.0.317574580443.issue400800@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32567 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400803] puremodule: ANSI-fication (UNTESTED!) Message-ID: <1649606525.13.0.234222285676.issue400803@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32570 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400802] pcremodule: ANSI-fication Message-ID: <1649606525.12.0.943329810134.issue400802@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32569 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400783] dlmodule: ANSI-fication Message-ID: <1649606524.55.0.194370728706.issue400783@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32551 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400768] stropmodule: ANSI-fication Message-ID: <1649606524.19.0.537231784736.issue400768@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32537 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400807] regexmodule: ANSI-fication Message-ID: <1649606525.25.0.726925175372.issue400807@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32574 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400806] readline: ANSI-fication Message-ID: <1649606525.22.0.50198505193.issue400806@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32573 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400808] regexpr: ANSI-fication Message-ID: <1649606525.27.0.97479192867.issue400808@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32575 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400809] Modules/resource.c: ANSI-fication Message-ID: <1649606525.29.0.92425735392.issue400809@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32576 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400507] Fix for bug PR#341 (string formatting overflow) Message-ID: <1649606520.55.0.423838760369.issue400507@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32430 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400776] bsddbmodule: ANSI-fication Message-ID: <1649606524.38.0.452452912053.issue400776@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32545 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400811] rotormodule: ANSI-fication Message-ID: <1649606525.36.0.696394453577.issue400811@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32578 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400812] selectmodule: ANSI-fication Message-ID: <1649606525.38.0.941186984769.issue400812@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32579 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:00 +0000 Subject: [issue400518] fix bltinmodule.c for 64-bit platforms Message-ID: <1649606520.9.0.659028273839.issue400518@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32441 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400814] signalmodule: ANSI-fication Message-ID: <1649606525.42.0.735877876749.issue400814@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32581 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400818] svmodule: ANSI-fication (UNTESTED!) Message-ID: <1649606525.5.0.638696713681.issue400818@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32584 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400813] sgimodule: ANSI-fication Message-ID: <1649606525.4.0.0386833260576.issue400813@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32580 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400816] structmodule: ANSI-fication Message-ID: <1649606525.46.0.166234188782.issue400816@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32582 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400820] termios: ANSI-fication Message-ID: <1649606525.58.0.150381480892.issue400820@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32586 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400819] syslogmodule: ANSI-fication Message-ID: <1649606525.54.0.699475353639.issue400819@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32585 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400658] SRE: towards 1.6b1 Message-ID: <1649606522.0.0.821912766873.issue400658@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32475 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400712] Use Python 2 features in string module Message-ID: <1649606523.06.0.495418958001.issue400712@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32508 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400822] timemodule: ANSI-fication Message-ID: <1649606525.63.0.815065505456.issue400822@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32588 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400824] tkappinit: ANSI-fication Message-ID: <1649606525.68.0.455302026029.issue400824@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32590 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400823] timingmodule: ANSI-fication Message-ID: <1649606525.65.0.173290698434.issue400823@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32589 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400817] sunaudiodev: ANSI-fication (UNTESTED!) Message-ID: <1649606525.48.0.390410008237.issue400817@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32583 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400825] xxmodule: ANSI-fication Message-ID: <1649606525.69.0.242980031216.issue400825@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32591 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400831] correcting documentaion for in and not in Message-ID: <1649606525.74.0.431619418761.issue400831@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32593 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400826] zlibmodule: ANSI-fication (hopefully last for Modules/) Message-ID: <1649606525.72.0.305245111706.issue400826@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32592 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400741] dumbdbm: Update bug Message-ID: <1649606523.75.0.29704824203.issue400741@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32523 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400832] Patch configure.in to check for right-shift zero-fill Message-ID: <1649606525.79.0.0735231865797.issue400832@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32594 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400837] urllib patch to simplify POST form query Message-ID: <1649606525.93.0.624479300191.issue400837@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32597 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400764] fix to make os.popen work under pythonw.exe Message-ID: <1649606524.09.0.911096486511.issue400764@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32534 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400841] Add 'parallel for-oop': for x in a; y in b; z in c: <...> Message-ID: <1649606525.96.0.467754075752.issue400841@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32598 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400842] better error message for unicode coercian failure Message-ID: <1649606526.0.0.292378942661.issue400842@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32599 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400805] Modules/python.c: ANSI-fication (sorry, couldln't resist) Message-ID: <1649606525.18.0.667686862652.issue400805@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32572 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400844] Tools/scripts/pindent.py: add expandtabs, change to delete Message-ID: <1649606526.05.0.592173903765.issue400844@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32600 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400810] rgbimgmodule: ANSI-fication Message-ID: <1649606525.33.0.443294286085.issue400810@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32577 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400660] Update examples to use new-style extensions Message-ID: <1649606522.06.0.156345874866.issue400660@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32477 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400849] _sre & socketmodule: get rid of an ANSI problem/a warning Message-ID: <1649606526.07.0.965253081977.issue400849@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32601 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400850] compile_funcdef: raise error on duplicate arguments Message-ID: <1649606526.1.0.190578482198.issue400850@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32602 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400851] traceback.py, with unicode exceptions Message-ID: <1649606526.15.0.547371680423.issue400851@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32603 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400796] md5module: ANSI-fication Message-ID: <1649606524.97.0.0866335775486.issue400796@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32563 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400673] minor fix to make 1.6 compile under MSVC 5.0 Message-ID: <1649606522.37.0.98019650519.issue400673@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32487 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400852] Add poll() to select module Message-ID: <1649606526.19.0.745331405252.issue400852@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32604 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400853] merging my*.h into pyport.h Message-ID: <1649606526.23.0.592143782458.issue400853@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32605 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400854] eliminate compiler warnings in pyexpat Message-ID: <1649606526.28.0.715993809034.issue400854@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32606 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400856] Enhanced SyntaxError patch Message-ID: <1649606526.35.0.94640577389.issue400856@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32608 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400857] fix pointer mismatch warnings in socketmodule.c (Jul 12) Message-ID: <1649606526.37.0.577390483115.issue400857@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32609 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400858] From Medusa: add seteuid, setegid, ... to posixmodule Message-ID: <1649606526.4.0.609694155549.issue400858@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32610 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400868] refactoring of the code in shutil.copyfile Message-ID: <1649606526.45.0.674684136826.issue400868@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32612 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400869] exceptions in _PyImport_Inittab Message-ID: <1649606526.5.0.104120357831.issue400869@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32613 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400684] cycle-gc help unaligned in configure Message-ID: <1649606522.52.0.251262556008.issue400684@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32491 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:02 +0000 Subject: [issue400706] minidom __repr__ returns Unicode strings Message-ID: <1649606522.99.0.867997203732.issue400706@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32506 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400863] Add PyFileDescriptor_FromIntOrObject to fileobject.c Message-ID: <1649606526.43.0.573313449.issue400863@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32611 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400871] document new method in shutil (copyfileobj) Message-ID: <1649606526.53.0.911808118503.issue400871@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32614 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400874] Better error message with UnboundLocalError Message-ID: <1649606526.66.0.761669343573.issue400874@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32617 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400880] urllib.py patch Message-ID: <1649606526.72.0.417701433958.issue400880@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32618 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400884] arraymodule: adding count, extend, index, pop, remove Message-ID: <1649606526.75.0.300749980442.issue400884@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32619 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400836] Trivial fix to stop a compiler warning. Message-ID: <1649606525.9.0.345841416378.issue400836@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32596 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400804] pwdmodule: ANSI-fication Message-ID: <1649606525.17.0.323728531533.issue400804@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32571 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400893] new EXTENDED_ARG opcode, elimiate 16-bit oparg limit Message-ID: <1649606526.87.0.58907406965.issue400893@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32622 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400890] findall function in sdist.py chokes on broken links Message-ID: <1649606526.84.0.277513620926.issue400890@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32621 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400855] Rename PyXXX_Length methods to PyXXX_Size Message-ID: <1649606526.32.0.281708740348.issue400855@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32607 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400872] change SimpleHTTPServer to use copyfileobj to copy files Message-ID: <1649606526.57.0.249126067587.issue400872@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32615 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400899] a smaller unicode name database Message-ID: <1649606527.0.0.725775819783.issue400899@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32624 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400895] safe version of PyErr_Format Message-ID: <1649606526.95.0.132936036543.issue400895@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32623 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400782] dbmmodule: ANSI-fication Message-ID: <1649606524.53.0.402735268543.issue400782@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32550 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400792] imageop: ANSI-fication Message-ID: <1649606524.86.0.209958147567.issue400792@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32559 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400759] range-lists: [1:10] (relative to list comprehensions patch) Message-ID: <1649606523.94.0.722494904554.issue400759@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32529 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400821] threadmodule: ANSI-fication Message-ID: <1649606525.61.0.586076029407.issue400821@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32587 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400781] cryptmodule: ANSI-fication Message-ID: <1649606524.5.0.312406923921.issue400781@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32549 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400908] Typos, non doc & non distutils Message-ID: <1649606527.2.0.654653685408.issue400908@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32629 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:05 +0000 Subject: [issue400835] PC/config.h: support for gnu-win32 and lcc-win32 Message-ID: <1649606525.85.0.549808596039.issue400835@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32595 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:04 +0000 Subject: [issue400762] mmapmodule.c: ANSI-fying, indentation, names Message-ID: <1649606524.02.0.640743987138.issue400762@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32532 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400913] Optional pad character (or string) for rjust, ljust Message-ID: <1649606527.27.0.691051339157.issue400913@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32631 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400927] Fix for broken gethostbyname("0") Message-ID: <1649606527.41.0.581205040047.issue400927@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32633 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400926] StaError messages for Winsock errors. Message-ID: <1649606527.36.0.0434289328534.issue400926@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32632 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400873] Use registry to find proxies for urllib on Win32 Message-ID: <1649606526.59.0.1762928358.issue400873@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32616 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400931] fix for posixpath.normpath -- competitor to 100900 Message-ID: <1649606527.45.0.22665603709.issue400931@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32634 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400933] base64: move "def test()" into "if __main__" program Message-ID: <1649606527.48.0.396878398199.issue400933@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32635 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400938] [Draft] libpython as shared library (.so) on Linux Message-ID: <1649606527.52.0.365772343164.issue400938@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32636 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400941] Windows os.popen# changes for exit code on close() Message-ID: <1649606527.59.0.877549285334.issue400941@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32637 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400907] Typos distutils Message-ID: <1649606527.17.0.202122224604.issue400907@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32628 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400947] increase control and default size of pdb traceback display Message-ID: <1649606527.67.0.304931886753.issue400947@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32639 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400903] put back _Length functions for binary compatibility Message-ID: <1649606527.13.0.691205200134.issue400903@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32627 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400955] ptags, eptags: regex->re, 4 char indent. Message-ID: <1649606527.71.0.346911845377.issue400955@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32640 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400957] ANSIfy Python/thread_cthread.h Message-ID: <1649606527.77.0.263856404715.issue400957@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32642 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400958] ANSIfy Python/thread_foobar.h Message-ID: <1649606527.79.0.667979709495.issue400958@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32643 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400956] freeze: docs contain some references to python15.dll. Message-ID: <1649606527.75.0.960439234477.issue400956@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32641 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:06 +0000 Subject: [issue400888] Fix UCNs machine with >= 32bit longs Message-ID: <1649606526.78.0.791520544832.issue400888@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32620 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400962] Fix \n's in string literals in pyexpat.c - compile error Message-ID: <1649606527.84.0.227364377361.issue400962@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32646 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400959] ANSIfy Python/thread_lwp.h Message-ID: <1649606527.81.0.515500333703.issue400959@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32644 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400963] Fix has_key in _cursesmodule.c for linking on Tru64 Unix Message-ID: <1649606527.87.0.857608576423.issue400963@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32647 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400970] extended print statement Message-ID: <1649606527.9.0.0237683225253.issue400970@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32648 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400978] Minor updates for BeOS R5 Message-ID: <1649606527.99.0.505731484842.issue400978@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32651 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue400990] disable partial UTF-16 support in unicodeobject.c Message-ID: <1649606528.05.0.85523939313.issue400990@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32653 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400977] This patch makes whichdb recognize Python's dumbdbm database Message-ID: <1649606527.96.0.00553338803526.issue400977@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32650 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue400979] support for out-of-tree "make TAGS" Message-ID: <1649606528.02.0.802093572976.issue400979@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32652 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue400994] Allow JPython to use more tests Message-ID: <1649606528.08.0.569127839443.issue400994@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32654 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue401019] Opcode reordering Message-ID: <1649606528.24.0.505736130062.issue401019@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32659 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue401030] new zip() builtin Message-ID: <1649606528.38.0.171174452765.issue401030@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32662 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue401029] Call __getitem__ for slices when no __getslice__ Message-ID: <1649606528.35.0.917684313024.issue401029@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32661 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue401022] Removal of SET_LINENO (experimental) Message-ID: <1649606528.26.0.179937660328.issue401022@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32660 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210589] build on NeXTStep Message-ID: <1649606528.44.0.755867618064.issue210589@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32664 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210592] "Fix" os.system() on Windows (PR#406) Message-ID: <1649606528.48.0.49258808905.issue210592@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32666 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210595] test_fork1 hangs with 1.6a2 on Linux (PR#296) Message-ID: <1649606528.51.0.28602133407.issue210595@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32667 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210598] Fwd: Debian Bug#46993: py_compile.compile() won't compile files with CR+LF line endings (PR#101) Message-ID: <1649606528.57.0.959035461918.issue210598@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32669 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210599] bug (Incorrect signal processing) - Python 1.5.2 (PR#102) Message-ID: <1649606528.6.0.724325435687.issue210599@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32670 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210601] expert on extension modules and multiple interpreters? (PR#125) Message-ID: <1649606528.67.0.900406538693.issue210601@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32672 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210386] pdb exception reports too severely truncated Message-ID: <1649606528.15.0.652931766016.issue210386@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32656 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210603] Tkinter winfo_visualsavailable method (PR#156) Message-ID: <1649606528.73.0.70286844993.issue210603@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32674 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210590] this is a test Message-ID: <1649606528.46.0.395046261222.issue210590@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32665 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210607] Telnet close (PR#181) Message-ID: <1649606528.81.0.77201488485.issue210607@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32678 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400974] Vlad's dynamic introspective memory allocator for Python Message-ID: <1649606527.93.0.24367527686.issue400974@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32649 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210608] TCP_NODELAY not found in socketmodule (PR#182) Message-ID: <1649606528.84.0.590229031999.issue210608@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32679 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400912] modified \x behaviour for unicode strings Message-ID: <1649606527.24.0.349110009013.issue400912@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32630 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210609] Operator breakage with long int operands (PR#187) Message-ID: <1649606528.86.0.808799796147.issue210609@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32680 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210606] ntpath.expandvars doesn't handle case properly (PR#162) Message-ID: <1649606528.79.0.458633131753.issue210606@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32677 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210604] Ranlib is obsolete - more a FYI than a bug (PR#160) Message-ID: <1649606528.75.0.875715423965.issue210604@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32675 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210610] .pyc writing/reading race condition (PR#189) Message-ID: <1649606528.89.0.0312357769562.issue210610@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32681 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210611] Signal processing bug (Linux threads, readline, whatever else) (PR#196) Message-ID: <1649606528.91.0.796248361955.issue210611@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32682 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400960] ANSIfy Python/thread_nt.h Message-ID: <1649606527.83.0.780682701997.issue400960@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32645 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210612] anydbm can't handle dumbdbm (PR#200) Message-ID: <1649606528.94.0.185359425452.issue210612@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32683 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210605] Tkinter inconsistency (missing methods) (PR#161) Message-ID: <1649606528.77.0.992683375915.issue210605@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32676 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210618] IDLE: Modifying argv prevents source of ~/.idle.py (PR#219) Message-ID: <1649606529.1.0.950109859747.issue210618@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32689 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210616] source file stays open after parsing is done (PR#209) Message-ID: <1649606529.05.0.515896894238.issue210616@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32687 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210602] bugs in xmllib (PR#146) Message-ID: <1649606528.7.0.00585779786917.issue210602@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32673 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210600] python 1.5.2 coredump (repost). (PR#113) Message-ID: <1649606528.65.0.289828567306.issue210600@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32671 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210623] build on NeXTStep (PR#240) Message-ID: <1649606529.2.0.351916978074.issue210623@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32694 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210587] bug (Incorrect signal processing) - Python 1.5.2 Message-ID: <1649606528.42.0.166665137081.issue210587@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32663 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210624] float("1.0e-309") inconsistency (PR#245) Message-ID: <1649606529.22.0.428078725866.issue210624@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32695 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210626] configure.in fails if libnet is present... (PR#268) Message-ID: <1649606529.29.0.584134226788.issue210626@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32697 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210627] Floating point numbers (PR#277) Message-ID: <1649606529.31.0.778484430051.issue210627@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32698 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210628] Python 1.6a1 - Poor diagnostic (PR#278) Message-ID: <1649606529.35.0.32465023207.issue210628@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32699 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210629] Tkinter Image names may be reused (PR#28) Message-ID: <1649606529.36.0.304857293857.issue210629@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32700 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210631] Debugger does not understand packages (PR#283) Message-ID: <1649606529.43.0.947334706926.issue210631@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32702 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210633] urlparse (PR#286) Message-ID: <1649606529.48.0.20697408251.issue210633@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32704 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210635] test_signal hangs when running as part of testall (PR#288) Message-ID: <1649606529.53.0.921825679291.issue210635@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32706 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210625] trouble building under Solaris 7 (PR#260) Message-ID: <1649606529.25.0.796336041547.issue210625@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32696 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210637] ihooks on windows and pythoncom (PR#294) Message-ID: <1649606529.6.0.0994827164973.issue210637@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32708 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210632] CR/LF line endings in _sre.c sre.h sre_constants.h (PR#284) Message-ID: <1649606529.45.0.855624302312.issue210632@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32703 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210638] Invalid use of PyMem_DEL (PR#295) Message-ID: <1649606529.64.0.329106694912.issue210638@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32709 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210640] 1.6a2 issues with int/long on 64bit platforms - eg stringobject (PR#306) Message-ID: <1649606529.68.0.478801730982.issue210640@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32711 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210641] KeyboardInterrupt while waiting for sys.ps2 input kills interpreter (PR#309) Message-ID: <1649606529.71.0.349784159669.issue210641@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32712 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210615] another unbounded recursion bug Message-ID: <1649606529.02.0.00108813648616.issue210615@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32686 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210643] compiling long strings crashes (PR#32) Message-ID: <1649606529.76.0.758921879903.issue210643@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32714 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210642] freeze with "-s service" and "-m" (PR#315) Message-ID: <1649606529.73.0.343583241731.issue210642@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32713 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400902] range-literals, not relative to listcomprehensions Message-ID: <1649606527.08.0.337084535676.issue400902@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32626 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210646] threads (PR#333) Message-ID: <1649606529.87.0.542749952363.issue210646@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32717 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210617] IDLE and -t (PR#213) Message-ID: <1649606529.07.0.232715173969.issue210617@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32688 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210648] performance-problem decoding quoted-printable (PR#340) Message-ID: <1649606529.99.0.331087641242.issue210648@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32719 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210649] %.1200d will make Python segfault (PR#341) Message-ID: <1649606530.07.0.607683022299.issue210649@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32720 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210651] Python SIGSEGV with re.compile (PR#343) Message-ID: <1649606530.15.0.564093020556.issue210651@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32722 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210652] input() in IDLE (PR#344) Message-ID: <1649606530.16.0.988508297867.issue210652@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32723 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210619] urllib.py fails with username/password proxies (PR#221) Message-ID: <1649606529.12.0.377534157098.issue210619@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32690 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210622] pdb bug (PR#236) Message-ID: <1649606529.18.0.555084779875.issue210622@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32693 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210653] Assigning function objects to instance variable causes memory leak (PR#346) Message-ID: <1649606530.19.0.943678063045.issue210653@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32724 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210655] getpass.getpass on Windows (PR#349) Message-ID: <1649606530.24.0.0763566779559.issue210655@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32726 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210630] Unicode and % operator (PR#281) Message-ID: <1649606529.4.0.694052379309.issue210630@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32701 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210662] rfc822 (PR#358) Message-ID: <1649606530.48.0.179047561819.issue210662@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32732 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210661] cgi parsing of query strings (PR#356) Message-ID: <1649606530.44.0.875550549127.issue210661@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32731 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210665] Compiling python on hpux 11.00 with threads (PR#360) Message-ID: <1649606530.58.0.7054911532.issue210665@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32735 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210644] bug in PyLong_FromLongLong (PR#324) Message-ID: <1649606529.79.0.992856425954.issue210644@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32715 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210664] PRIVATE: Bug in re module (PR#36) Message-ID: <1649606530.53.0.403095675683.issue210664@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32734 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400946] ConfigParser fixes Message-ID: <1649606527.63.0.817008565211.issue400946@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32638 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210667] select module: Bug in select.select() (PR#365) Message-ID: <1649606530.7.0.0437786777588.issue210667@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32737 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210668] Python1.6 and wxPython incompatibility (PR#366) Message-ID: <1649606530.76.0.815828396352.issue210668@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32738 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210669] Tkinter: widget.bind('sequence') incorrect (PR#368) Message-ID: <1649606530.82.0.860565244053.issue210669@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32739 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210670] Win32 os.listdir raises confusing errors (PR#374) Message-ID: <1649606530.88.0.853877466434.issue210670@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32740 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210645] XMLLIB, JPython and re (PR#328) Message-ID: <1649606529.84.0.150765792398.issue210645@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32716 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210658] W2k and pyton 1.5 (PR#353) Message-ID: <1649606530.34.0.26454828785.issue210658@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32728 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210672] pythonlib.a makes SIGSEGV with LD_PRELOAD variable (PR#378) Message-ID: <1649606530.98.0.869370661983.issue210672@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32742 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210621] rfc822.py module - address parsing problem (PR#235) Message-ID: <1649606529.16.0.0099219802364.issue210621@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32692 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210676] fd.readlines() hangs (via popen3) (PR#385) Message-ID: <1649606531.09.0.341827709335.issue210676@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32746 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210597] test_fork1 hangs with 1.6a2 on Linux (PR#296) Message-ID: <1649606528.53.0.759410272725.issue210597@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32668 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:07 +0000 Subject: [issue400900] POssible fix for posixpath.normpath Message-ID: <1649606527.04.0.620768977383.issue400900@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32625 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210679] profile.py: self-profiling bug (PR#394) Message-ID: <1649606531.23.0.438947234504.issue210679@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32749 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210678] rfc822.Message getaddr method bug (PR#39) Message-ID: <1649606531.19.0.599839662167.issue210678@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32748 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210666] PRIVATE: interned->ma_table never free'd (PR#361) Message-ID: <1649606530.65.0.425899894933.issue210666@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32736 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210680] bad pos value on match object (PR#397) Message-ID: <1649606531.26.0.606349249136.issue210680@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32750 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210656] IDLE goto file/line (PR#352) Message-ID: <1649606530.3.0.316293224946.issue210656@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32727 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210683] can't compile with SSL support on WinNT (PR#403) Message-ID: <1649606531.4.0.57845035452.issue210683@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32753 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210674] memory bloat in binary file upload (PR#381) Message-ID: <1649606531.03.0.00936801606105.issue210674@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32744 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210650] [HP-UX] python with-threads core-dumps (PR#342) Message-ID: <1649606530.09.0.742173652859.issue210650@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32721 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210689] PRIVATE: Extra space bug in readline/rlcompleter/raw_input? (PR#45) Message-ID: <1649606531.59.0.890959306866.issue210689@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32759 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210686] cStringIO lacks the readlines method (PR#409) Message-ID: <1649606531.47.0.0432688934697.issue210686@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32756 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210690] Bug in os.environ for Windows (PR#50) Message-ID: <1649606531.63.0.954693694222.issue210690@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32760 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210673] os.abspatth() error due to win32api.GetFullPathName (PR#380) Message-ID: <1649606531.0.0.775726422113.issue210673@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32743 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210681] memory leak in loops (PR#398) Message-ID: <1649606531.29.0.807818821783.issue210681@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32751 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210688] Reuben Sumner: Py_REF_DEBUG (PR#43) Message-ID: <1649606531.56.0.49768487046.issue210688@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32758 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210685] isdir bad behaviouring (PR#408) Message-ID: <1649606531.45.0.0995722242062.issue210685@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32755 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210694] PRIVATE: Threads and readline (PR#120) Message-ID: <1649606531.76.0.156251281474.issue210694@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32764 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210693] 3 failed tests after install (PR#119) Message-ID: <1649606531.74.0.654064787122.issue210693@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32763 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210695] complexobject.c optimization error on SGI (PR#144) Message-ID: <1649606531.79.0.940272296742.issue210695@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32765 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210692] urllib.URLopener does not work with proxies (PR#67) Message-ID: <1649606531.71.0.632237838911.issue210692@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32762 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210696] strptime error (PR#149) Message-ID: <1649606531.82.0.763997195011.issue210696@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32766 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210660] IDLE-0.5 ctrl-F5 (PR#355) Message-ID: <1649606530.39.0.363377809549.issue210660@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32730 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210698] strptime gives format mismatch when time zone present (PR#164) Message-ID: <1649606531.89.0.315954261578.issue210698@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32768 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210701] undefined symbol in custom interpeter (PR#191) Message-ID: <1649606532.03.0.376931805858.issue210701@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32771 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210700] strftime crashes with invalid args (PR#183) Message-ID: <1649606532.0.0.511703269781.issue210700@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32770 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210702] [Linux] closing a popen file descriptor (PR#33) Message-ID: <1649606532.07.0.922236277981.issue210702@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32772 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210699] redirected stdout under Windows NT (PR#165) Message-ID: <1649606531.96.0.609714417414.issue210699@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32769 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210704] IDLE (PR#400) Message-ID: <1649606532.13.0.590161360774.issue210704@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32774 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210703] select with dec-threads core dumps (PR#35) Message-ID: <1649606532.1.0.383146672751.issue210703@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32773 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210697] math.log(0) dumps core (PR#152) Message-ID: <1649606531.84.0.206087474455.issue210697@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32767 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210705] combination of socket.gethostbyname and os.system hangs program (PR#401) Message-ID: <1649606532.17.0.896297548652.issue210705@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32775 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210684] "Fix" os.system() on Windows (PR#406) Message-ID: <1649606531.43.0.955466778673.issue210684@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32754 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210706] gcc error msg, 1.5.2, Slackware + threads (PR#44) Message-ID: <1649606532.21.0.622584877435.issue210706@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32776 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210677] PRIVATE: various minor Tkinter things (PR#388) Message-ID: <1649606531.15.0.923977914884.issue210677@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32747 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210708] bug in time.sleep (PR#64) Message-ID: <1649606532.28.0.586698353673.issue210708@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32778 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210710] Segmentation fault on range (PR#71) Message-ID: <1649606532.31.0.995478639313.issue210710@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32780 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210712] MALLOC_ZERO_RETURNS_NULL problem Message-ID: <1649606532.35.0.897490362982.issue210712@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32782 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210713] strptime buffer overflow (PR#95) Message-ID: <1649606532.38.0.570015675011.issue210713@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32783 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210709] bug in time.sleep (PR#65) Message-ID: <1649606532.3.0.13843034986.issue210709@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32779 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210717] test_array.py fails (PR#143) Message-ID: <1649606532.47.0.502490064465.issue210717@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32786 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue401032] os.popen#.close() exit code under Windows enhancement Message-ID: <1649606532.49.0.106437511056.issue401032@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32787 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue401033] Use METH_VARARGS constant in Modules/ Message-ID: <1649606532.53.0.423460950745.issue401033@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32788 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210716] Re: Date problem unresolved [DIN 2646] (fwd) (PR#109) Message-ID: <1649606532.45.0.48465019538.issue210716@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32785 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210739] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.59.0.108997451169.issue210739@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32790 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue400998] experimental support for extended slicing on lists Message-ID: <1649606528.11.0.213249800404.issue400998@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32655 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210738] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.56.0.401707186388.issue210738@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32789 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210715] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.41.0.132608188366.issue210715@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32784 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210740] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.61.0.670897706039.issue210740@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32791 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210741] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.63.0.0289505433576.issue210741@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32792 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210659] IDLE-0.5 copy command (PR#354) Message-ID: <1649606530.36.0.169846846508.issue210659@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32729 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210663] getpass() echo password input (PR#359) Message-ID: <1649606530.51.0.984836609561.issue210663@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32733 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210747] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.81.0.405230009627.issue210747@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32798 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210745] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.77.0.377656927543.issue210745@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32796 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210749] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.84.0.412409478612.issue210749@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32800 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210746] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.79.0.121204207682.issue210746@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32797 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210750] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.86.0.975043157459.issue210750@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32801 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210742] Re: Date problem unresolved [DIN 2646] (fwd) (PR#109) Message-ID: <1649606532.66.0.392150252609.issue210742@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32793 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210639] test_fork1 hangs with 1.6a2 on Linux (PR#296) Message-ID: <1649606529.66.0.230593362031.issue210639@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32710 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210778] pyport.h compile error on windows Message-ID: <1649606532.9.0.666378141261.issue210778@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32802 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210687] mailbox module's maildir class broken? (PR#414) Message-ID: <1649606531.5.0.995120120562.issue210687@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32757 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210636] prefix directory (PR#293) Message-ID: <1649606529.57.0.592481864264.issue210636@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32707 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210794] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.01.0.646975113159.issue210794@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32806 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue401010] replace use of INT_PTR with uintptr_t (fix MSVC 5.0 build) Message-ID: <1649606528.21.0.808135682081.issue401010@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32658 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210793] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.99.0.68737938304.issue210793@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32805 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210791] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.92.0.0657716701188.issue210791@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32803 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210707] does not compile under BSDI (PR#57) Message-ID: <1649606532.26.0.275154745146.issue210707@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32777 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210796] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.07.0.993608299706.issue210796@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32808 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210798] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.12.0.637661267054.issue210798@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32810 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210792] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.96.0.227823731818.issue210792@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32804 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210797] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.1.0.851898359056.issue210797@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32809 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210801] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.15.0.783005869115.issue210801@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32812 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210806] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.22.0.414787368779.issue210806@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32816 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210805] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.2.0.794792429526.issue210805@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32815 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210809] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.25.0.593877207245.issue210809@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32817 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210671] Tk-based widgets misbehave with dead keys (PR#376) Message-ID: <1649606530.91.0.994169703887.issue210671@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32741 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210812] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.33.0.48204676498.issue210812@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32820 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210811] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.32.0.0188537639031.issue210811@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32819 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210810] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.27.0.463076695557.issue210810@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32818 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210799] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.13.0.107256755108.issue210799@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32811 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210822] TCL_LIBRARY variable for win32 (PR#130) Message-ID: <1649606533.5.0.941885168279.issue210822@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32825 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210819] test suite incomplete (PR#1) Message-ID: <1649606533.37.0.337166339293.issue210819@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32822 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210820] Jonathan Craft: Possible to-do addition (PR#116) Message-ID: <1649606533.39.0.145368382173.issue210820@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32823 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210818] test suite incomplete (PR#1) Message-ID: <1649606533.35.0.626371454386.issue210818@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32821 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210823] Tkinter missing button state symbols (PR#132) Message-ID: <1649606533.52.0.491194411606.issue210823@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32826 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210824] Tkinter canvas blow-up: bbox(ALL) == None (PR#133) Message-ID: <1649606533.55.0.500623026456.issue210824@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32827 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210826] WebBugRptBroken & " Python mymalloc.h; not C++ compatible" (PR#136) Message-ID: <1649606533.57.0.128825819716.issue210826@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32828 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210830] "continue" inside "try" (PR#177) Message-ID: <1649606533.72.0.730574428871.issue210830@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32831 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210802] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.17.0.540249137763.issue210802@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32813 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210834] urlparse and HTTP parameters (PR#205) Message-ID: <1649606533.84.0.352190182866.issue210834@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32835 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210691] popen2 and socket. (PR#53) Message-ID: <1649606531.68.0.229656723728.issue210691@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32761 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210829] REQ: array module should provide "swap to native byte order" functionality, similar to struct module (PR#166) Message-ID: <1649606533.67.0.00352346041164.issue210829@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32830 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210835] Find out size of primitive object (PR#214) Message-ID: <1649606533.89.0.98210453045.issue210835@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32836 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210831] readline on QNX (PR#192) Message-ID: <1649606533.75.0.545979246629.issue210831@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32832 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210836] configure script fails with cross-compiler (PR#228) Message-ID: <1649606533.92.0.569932233189.issue210836@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32837 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210833] linker options documentation (PR#195) Message-ID: <1649606533.82.0.633848639592.issue210833@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32834 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210711] apply(): throws MemoryError when sending an {} as the keyword list (PR#85) Message-ID: <1649606532.33.0.644896845426.issue210711@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32781 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210838] Inverse hyperbolic functions in cmath module (PR#231) Message-ID: <1649606534.01.0.294779516666.issue210838@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32839 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210841] idle dosnt recompile modules changed externally (PR#308) Message-ID: <1649606534.13.0.315630403292.issue210841@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32842 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210842] dl.RTLD_GLOBAL missing (PR#313) Message-ID: <1649606534.16.0.971383136572.issue210842@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32843 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210840] -with-cxx option to configure script (PR#24) Message-ID: <1649606534.11.0.874678239463.issue210840@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32841 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210675] Pth: test_fork1 fails, test_thread slow (PR#383) Message-ID: <1649606531.05.0.39602402063.issue210675@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32745 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210634] CR/LF line endings in _sre.c sre.h sre_constants.h (PR#287) Message-ID: <1649606529.51.0.645850972373.issue210634@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32705 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210845] struct.pack not being very picky (PR#52) Message-ID: <1649606534.26.0.189743136978.issue210845@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32846 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210647] Segmentation violation on very long lists (PR#334) Message-ID: <1649606529.91.0.362882623095.issue210647@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32718 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210795] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.05.0.299923110173.issue210795@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32807 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210846] gzip missing feature -- GzipFile.readlines(number) (PR#56) Message-ID: <1649606534.29.0.742278752335.issue210846@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32847 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210620] configure problem: libieee with Linux/glibc2 ? (PR#224) Message-ID: <1649606529.15.0.340339913531.issue210620@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32691 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210850] comparisons of recursive objects (PR#7) Message-ID: <1649606534.38.0.737887632356.issue210850@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32850 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210853] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606534.4.0.796690736924.issue210853@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32851 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210854] Re: Date problem unresolved [DIN 2646] (fwd) (PR#109) Message-ID: <1649606534.42.0.0987211257436.issue210854@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32852 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210855] test_array.py fails (PR#143) Message-ID: <1649606534.46.0.187378406032.issue210855@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32853 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210858] libreadline problems (PR#272) Message-ID: <1649606534.55.0.1007201851.issue210858@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32856 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210804] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606533.19.0.790549966267.issue210804@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32814 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210860] IDLE class browser and decimal comma don't agree (PR#298) Message-ID: <1649606534.6.0.855616355793.issue210860@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32858 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210857] it don't make (PR#269) Message-ID: <1649606534.52.0.0989360600282.issue210857@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32855 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210862] linuxthreads lock failed (PR#322) Message-ID: <1649606534.66.0.606411155942.issue210862@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32860 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210849] Fwd: Debian Bug#42318: urllib.py has problems with malformed proxy env. variables (PR#59) Message-ID: <1649606534.34.0.156448394923.issue210849@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32849 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210864] problem with MSVC library (bogus) Message-ID: <1649606534.73.0.975466490838.issue210864@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32862 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210866] re group self-reference weird behavior (PR#2) Message-ID: <1649606534.78.0.0376305214326.issue210866@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32864 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210865] Reproducible crash of Mac IDE (PR#172) Message-ID: <1649606534.76.0.685339517219.issue210865@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32863 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210863] Reference counting problem? (PR#338) Message-ID: <1649606534.7.0.6510047687.issue210863@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32861 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:10 +0000 Subject: [issue210654] bug in complex_nonzero (PR#347) Message-ID: <1649606530.21.0.585031986425.issue210654@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32725 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210868] PythonWin crash on dead keys (PR#372) Message-ID: <1649606534.83.0.326109353272.issue210868@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32866 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210867] DCOracle select max() always returns integers (PR#289) Message-ID: <1649606534.81.0.468624532238.issue210867@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32865 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210859] Environment dependency in re parser (PR#290) Message-ID: <1649606534.57.0.745175091841.issue210859@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32857 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210744] Re: Date problem unresolved [DIN 2646] (fwd) (PR#109) Message-ID: <1649606532.75.0.811311216961.issue210744@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32795 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210871] problem downloading python (PR#99) Message-ID: <1649606534.89.0.678832995792.issue210871@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32869 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210911] parser module Message-ID: <1649606534.91.0.581666428086.issue210911@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32870 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210870] Coredump in moduleobjectc.c:134 (PR#79) Message-ID: <1649606534.87.0.431100288492.issue210870@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32868 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue401043] Description of what can go wrong in ioctl Message-ID: <1649606534.93.0.276992230449.issue401043@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32871 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210843] Low FD_SETSIZE limit on Win32 (PR#41) Message-ID: <1649606534.19.0.529504990412.issue210843@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32844 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210915] compiler core-dumps on illegal continue Message-ID: <1649606534.95.0.73734269197.issue210915@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32872 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue401006] fix mmapmodule test failures Message-ID: <1649606528.17.0.0333019539163.issue401006@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32657 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210856] Page fault in module KERNEL32.DLL (PR#186) Message-ID: <1649606534.49.0.606191002991.issue210856@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32854 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue210924] support Unicode for Python source code Message-ID: <1649606535.02.0.435688271267.issue210924@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32874 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue401046] fcntlmodule: use PyArg_ParseTuple everywhere. Message-ID: <1649606534.99.0.390235184611.issue401046@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32873 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401061] pyport.h and extern "C" Message-ID: <1649606535.13.0.5387031467.issue401061@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32877 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401055] Cookie.py Message-ID: <1649606535.1.0.132964894752.issue401055@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32876 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401064] [Moshe] Fixing bug 110832 -- urlparse.urljoin Message-ID: <1649606535.21.0.609194513678.issue401064@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32880 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401085] calendar.py extensions Message-ID: <1649606535.33.0.660450729594.issue401085@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32884 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210839] CGIHTTPServer (PR#239) Message-ID: <1649606534.08.0.554591219024.issue210839@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32840 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401071] whichdb.py: add missing "try:" statement Message-ID: <1649606535.27.0.636235109147.issue401071@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32882 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401065] bogus counter for recursive PyObject_Compare() Message-ID: <1649606535.25.0.50591254423.issue401065@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32881 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401106] getopt.py extensions (REJECT version) Message-ID: <1649606535.67.0.369865980015.issue401106@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32893 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401104] Optional object mem allocator Message-ID: <1649606535.59.0.790170665151.issue401104@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32892 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401109] libgetopt.tex extensions (APPEND version) Message-ID: <1649606535.74.0.126715179353.issue401109@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32896 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401107] libgetopt.py extensions (REJECT version) Message-ID: <1649606535.69.0.365164123247.issue401107@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32894 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue211403] 1.6b1 dumps core dereferencing a NULL tstate Message-ID: <1649606535.81.0.732392148443.issue211403@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32899 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401121] cosmetic cleanup of cgi.py, using Guido's style conventions Message-ID: <1649606535.87.0.391205157653.issue401121@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32901 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401120] add .get() to cgi.FieldStorage and cgi.FormContentDict Message-ID: <1649606535.84.0.583011905847.issue401120@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32900 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401127] lib-old/dircmp.py mods for new getopt.py Message-ID: <1649606535.93.0.827525375466.issue401127@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32903 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401129] add indices() and irange() to built-ins Message-ID: <1649606535.96.0.00190133627882.issue401129@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32904 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210869] REs beginning with .* (PR#47) Message-ID: <1649606534.85.0.280651411008.issue210869@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32867 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211486] sys.argv in 1.6b1 Message-ID: <1649606536.03.0.915941810202.issue211486@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32906 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401134] for 1.6: removing rint() occurences from config* Message-ID: <1649606536.09.0.84778605863.issue401134@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32907 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401126] mimify.py: mods for new getopt, & tab->spaces Message-ID: <1649606535.91.0.352272124507.issue401126@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32902 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211499] PyImport_AppendInittab undocument Message-ID: <1649606536.12.0.0812544397032.issue211499@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32908 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401137] Add raw packet support to socketmodule.c Message-ID: <1649606536.2.0.959562682395.issue401137@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32911 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210743] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606532.73.0.86693228763.issue210743@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32794 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401135] 'import x as y' and 'from x import y as z' Message-ID: <1649606536.14.0.675311396225.issue401135@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32909 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211582] Missing "sysconf" in the POSIX module Message-ID: <1649606536.32.0.79550912.issue211582@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32914 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:08 +0000 Subject: [issue210613] makesetup support for RPATH (PR#202) Message-ID: <1649606528.98.0.424058013822.issue210613@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32684 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401146] Replace UNPACK_TUPLE and UNPACK_LIST with UNPACK_SEQUENCE Message-ID: <1649606536.43.0.237116918084.issue401146@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32917 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401141] Make 'Grammar' when necessary Message-ID: <1649606536.29.0.829253111717.issue401141@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32913 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211520] Some "Very High Level" functions aren't Message-ID: <1649606536.17.0.170858393567.issue211520@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32910 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401151] expose public get_fqdn function in smtplib.py Message-ID: <1649606536.47.0.110969014828.issue401151@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32918 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401152] smtplib uses send() without verifying the amount of data sen Message-ID: <1649606536.51.0.959373969425.issue401152@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32919 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211620] lots of use of send() without verifying amount of data sent. Message-ID: <1649606536.55.0.682352697538.issue211620@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32920 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211705] problems with re.py and regex.py Message-ID: <1649606536.66.0.523583686882.issue211705@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32923 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211690] Bug: dictionary with >= 8192 keys not initialized correctly Message-ID: <1649606536.64.0.100062580872.issue211690@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32922 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue211165] doc-string removal masked by PYTHONOPTIMIZE Message-ID: <1649606535.41.0.905207398309.issue211165@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32886 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211667] unicode core dump Message-ID: <1649606536.59.0.0545977644753.issue211667@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32921 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210837] Tkinter Optionmenu doesn't accept 'font' resource (PR#229) Message-ID: <1649606533.98.0.708173791183.issue210837@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32838 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211586] 1.6b1: PythonPath Message-ID: <1649606536.36.0.936217907992.issue211586@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32915 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211710] socket.send() can do partial writes on some systems. Message-ID: <1649606536.7.0.324085703549.issue211710@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32924 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210827] Jitterbug cumbersome to use with offline cache (PR#148) Message-ID: <1649606533.63.0.489411592563.issue210827@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32829 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401167] remove tabs in Tools/compiler Message-ID: <1649606536.89.0.146187505159.issue401167@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32927 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue211725] Response to bug 110619 Message-ID: <1649606536.87.0.0100260271145.issue211725@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32926 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401110] test_getopt.py: new test module Message-ID: <1649606535.76.0.178248999002.issue401110@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32897 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210848] Fwd: Debian Bug#40891: urllib.urlopen/urlretrieve doesn't support passive FTP (PR#58) Message-ID: <1649606534.32.0.767826607643.issue210848@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32848 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue211204] 1.6b1 test_winreg tries importing wrong module Message-ID: <1649606535.5.0.87704150968.issue211204@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32889 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401170] Prevent old extensions from crashing Message-ID: <1649606536.94.0.389152048808.issue401170@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32929 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401168] make Tools/compiler use new UNPACK_SEQUNCE op Message-ID: <1649606536.91.0.304340770783.issue401168@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32928 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401173] Adding gettext Message-ID: <1649606537.03.0.85377146122.issue401173@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32931 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401172] Fix for typo in pymem.h Message-ID: <1649606536.98.0.0891619347365.issue401172@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32930 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401175] Fix slight bug in the Ref manual docs on listcomprehensions Message-ID: <1649606537.08.0.232605781184.issue401175@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32933 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401176] add dummy 'add2lib' target to Grammar/Makefile Message-ID: <1649606537.11.0.622774451401.issue401176@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32934 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue211818] .../test/test_fork1 hangs Message-ID: <1649606537.14.0.934404215565.issue211818@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32935 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue211858] Python-1.6b1 uses _cursesmodule.so Message-ID: <1649606537.21.0.442504505906.issue211858@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32937 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue211860] file.writelines() crashes Message-ID: <1649606537.23.0.116104509758.issue211860@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32938 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue211866] Overflow Error Message-ID: <1649606537.26.0.134752654044.issue211866@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32939 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401162] a Python/C API testing framework (simple simple) Message-ID: <1649606536.77.0.930630638442.issue401162@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32925 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401187] Patch for ftplib to support REST Message-ID: <1649606537.38.0.750074425523.issue401187@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32942 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue211961] urllib.quote and string.letters Message-ID: <1649606537.43.0.622547851285.issue211961@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32943 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:11 +0000 Subject: [issue210682] pdb can only step when at botframe (PR#4) Message-ID: <1649606531.34.0.892269207149.issue210682@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32752 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401197] use socket.getfqdn where appropriate Message-ID: <1649606537.52.0.546920029205.issue401197@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32945 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue212113] Built-in exception class not found: UnboundLocalError. Message-ID: <1649606537.55.0.831920716806.issue212113@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32946 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue212123] bdist_wininst crashes with no long_description Message-ID: <1649606537.58.0.264177311244.issue212123@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32947 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401208] Add parens to zipfile.py to fix file time seconds bug Message-ID: <1649606537.65.0.755368121352.issue401208@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32949 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue211802] anydbm cannot verify shelve database type Message-ID: <1649606537.06.0.557937135471.issue211802@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32932 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401196] IPv6 patch against 2.0 CVS tree, as of 20010624 Message-ID: <1649606537.45.0.375221364947.issue401196@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32944 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401063] TeX-draft for docs of the new string methods Message-ID: <1649606535.18.0.79010291301.issue401063@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32879 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue211203] 1.6b1 build (docs?) pyexpat problem on Windows Message-ID: <1649606535.46.0.940124449113.issue211203@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32888 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401096] enable/disable interface for GC module Message-ID: <1649606535.44.0.747814065427.issue401096@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32887 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401103] smtplib.py doesn't calculate fqdn correctly Message-ID: <1649606535.56.0.834427422215.issue401103@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32891 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401102] dict.setdefault() Message-ID: <1649606535.53.0.129332248752.issue401102@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32890 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401086] libcalendar.tex extensions (untested; don't have TeX) Message-ID: <1649606535.36.0.149608094681.issue401086@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32885 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401178] add items() method to listobject Message-ID: <1649606537.17.0.510288652618.issue401178@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32936 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue211928] obsolete use of socket.connect() Message-ID: <1649606537.29.0.0315818116865.issue211928@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32940 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401207] BeOS: installing of linker script Message-ID: <1649606537.63.0.287740985709.issue401207@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32948 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401145] co_flags fix for classes generated by Tools/compile.py Message-ID: <1649606536.4.0.279746420234.issue401145@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32916 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401211] list comprehensions: require initial for clause Message-ID: <1649606537.69.0.278269759534.issue401211@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32950 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401212] Document new opcodes Message-ID: <1649606537.72.0.575184611612.issue401212@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32951 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401215] extend 'import x as y' syntax to 'import x as y.z' Message-ID: <1649606537.79.0.798478831181.issue401215@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32953 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue212244] time.strptime() not present in Python 1.5.2 for MSWin Message-ID: <1649606537.82.0.862697682214.issue212244@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32954 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:09 +0000 Subject: [issue210614] illegal argument type for built-in operation (PR#204) Message-ID: <1649606529.0.0.114075053056.issue210614@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32685 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue210944] smtplib doesn't use FQDN Message-ID: <1649606535.08.0.226997553876.issue210944@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32875 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue212289] NetBSD1.4.2 build issue Message-ID: <1649606537.94.0.41851258492.issue212289@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32957 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue212265] Impossible to get Win32 default font encoding in Tk widgets Message-ID: <1649606537.89.0.548463669583.issue212265@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32955 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401226] make threading fork-safe Message-ID: <1649606538.01.0.577862926032.issue401226@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32958 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401229] Optional memory profiler Message-ID: <1649606538.05.0.279185631093.issue401229@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32959 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212317] os.rename transparent handling of cross-filesystem issues Message-ID: <1649606538.12.0.555664865996.issue212317@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32961 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401234] Allow all assignment expressions after 'import something as' Message-ID: <1649606538.17.0.864069500554.issue401234@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32962 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401238] PyOS_CheckStack for Windows (MSVC) Message-ID: <1649606538.22.0.0585656656529.issue401238@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32963 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401246] Let UserString.translate() method work with unicode data Message-ID: <1649606538.3.0.505991600449.issue401246@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32965 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401250] Use '*args' instead of providing defaults in User*.py Message-ID: <1649606538.36.0.204254491974.issue401250@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32967 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210844] Annoyance in ftpmirror.py script (PR#48) Message-ID: <1649606534.23.0.309070012937.issue210844@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32845 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401243] Use a compile time mechanism to 'find "import-from" args' Message-ID: <1649606538.26.0.84987058713.issue401243@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32964 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401257] Update test cases for posixpath, ntpath, add dospath test Message-ID: <1649606538.53.0.48335990732.issue401257@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32971 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212472] wrong registry entry written by Wise installer Message-ID: <1649606538.49.0.96428660026.issue212472@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32970 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212521] re match becomes exponentially slow on larger inputs Message-ID: <1649606538.59.0.0875084230166.issue212521@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32972 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue211319] Autoconfig breakdown with gnu libc-2.1.3 Message-ID: <1649606535.79.0.202040180642.issue211319@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32898 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401233] PyModule_AddObject() and friends Message-ID: <1649606538.08.0.259414929771.issue401233@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32960 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401264] Attribute Doc-Strings (PEP 224) Message-ID: <1649606538.62.0.768602338171.issue401264@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32973 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401214] Improve exception message for PyErr_BadInternalCall() Message-ID: <1649606537.74.0.757991034146.issue401214@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32952 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212468] sre/pre bug Message-ID: <1649606538.45.0.898559433908.issue212468@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32969 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212634] urllib doesn't look at self.version as documented Message-ID: <1649606538.81.0.771238786311.issue212634@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32978 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212558] dictionary lookup does not check exceptions Message-ID: <1649606538.66.0.139526733942.issue212558@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32974 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:12 +0000 Subject: [issue210748] testing Message-ID: <1649606532.83.0.659138452888.issue210748@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32799 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401275] Issue a warning if Setup.in is newer than Setup Message-ID: <1649606538.83.0.189631901346.issue401275@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32979 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401277] Catch errors raised by comparisons during dictionary lookup. Message-ID: <1649606538.86.0.877906358229.issue401277@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32980 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212628] many extensions (wrongly?) use Py_FatalError Message-ID: <1649606538.79.0.0787834792115.issue212628@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32977 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401284] dis.py does not know DUP_TOPX Message-ID: <1649606538.95.0.435408800756.issue401284@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32982 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401272] Allow bsddbmodule.c to compile with libdb 2.x w/o editing Message-ID: <1649606538.73.0.518789815363.issue401272@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32976 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210832] urljoin() bug with odd no of '..' (PR#194) Message-ID: <1649606533.78.0.124208666013.issue210832@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32833 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue212693] re behaves differently in 1.6 and 2.0 than 1.52 Message-ID: <1649606539.01.0.379845144033.issue212693@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32983 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401298] Enable Py_DEBUG via configure Message-ID: <1649606539.1.0.196396011407.issue401298@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32985 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue212288] os.path.commonprefix behaviour change. Message-ID: <1649606537.91.0.315086373286.issue212288@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32956 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401299] add missing test for strings in file_writelines Message-ID: <1649606539.16.0.618445872024.issue401299@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32986 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue212759] open('file').read() can not read entire binary file Message-ID: <1649606539.18.0.600623051087.issue212759@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32987 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401295] New tool msgfmt.py Message-ID: <1649606539.07.0.0599343310508.issue401295@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32984 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue212760] python can not read binary file fully Message-ID: <1649606539.22.0.267738369879.issue212760@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32988 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401310] update help for cmd.py library module Message-ID: <1649606539.26.0.899355745089.issue401310@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32990 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401309] Specialization of dictionaries for strings. Message-ID: <1649606539.24.0.838913149808.issue401309@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32989 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue212786] Build under Cygwin fails Message-ID: <1649606539.31.0.749548903112.issue212786@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32991 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401313] New builtin function doc Message-ID: <1649606539.43.0.782347652506.issue401313@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32993 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue212943] infinite recursion bug Message-ID: <1649606539.6.0.463136932088.issue212943@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32997 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212436] getopt regression test failure Message-ID: <1649606538.41.0.630818498982.issue212436@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32968 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:17 +0000 Subject: [issue401186] IPv6 support in 1.6b1 (1.5.2 also available at ftp.kame.net) - from core@kame.net Message-ID: <1649606537.33.0.375079548816.issue401186@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32941 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401320] Translate doc strings Message-ID: <1649606539.53.0.971549883733.issue401320@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32995 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue212944] Partially initialized cPickle dumps core Message-ID: <1649606539.64.0.966392771431.issue212944@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32998 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:16 +0000 Subject: [issue401138] 'for i indexing a in l': exposing the for-loop counter Message-ID: <1649606536.25.0.018596805548.issue401138@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32912 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401335] Adds login to auth-type servers (smtplib.py) Message-ID: <1649606539.7.0.880429027961.issue401335@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32999 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401338] don't create group-writable dirs; don't install *.orig Message-ID: <1649606539.81.0.178288891072.issue401338@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33001 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401278] Enable --program-suffix option in configure for Cygwin et. a Message-ID: <1649606538.9.0.601785243111.issue401278@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32981 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401341] tempfile.py: add /var/tmp Message-ID: <1649606539.9.0.548620363279.issue401341@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33004 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401345] Remove obsolete --with(out)-readline option Message-ID: <1649606540.01.0.652107259868.issue401345@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33008 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue213047] test_poll fails on FreeBSD 4.1 Message-ID: <1649606539.99.0.00754063356283.issue213047@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33007 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue213037] auotconf/build problems on HP-UX Message-ID: <1649606539.95.0.946373721655.issue213037@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33006 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401346] print warning if exception occurs in GC Message-ID: <1649606540.06.0.0748722229247.issue401346@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33009 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213091] ExtensionClass should be in the core Message-ID: <1649606540.12.0.4228098551.issue213091@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33011 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401354] New files: plat-freebsd{4,5}/* Message-ID: <1649606540.21.0.580093917486.issue401354@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33013 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue211162] 1.6b1 test_math.py unconditionally tests math.rint Message-ID: <1649606535.3.0.00703200880911.issue211162@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32883 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213106] distutils' msvccompiler.py has small C++ defects Message-ID: <1649606540.23.0.202182907787.issue213106@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33014 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213145] config.h defines socklen_t, kills wxPython build Message-ID: <1649606540.28.0.628864751498.issue213145@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33016 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401362] fix GC debugging output w.r.t. exceptions Message-ID: <1649606540.34.0.596318016841.issue401362@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33017 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401373] configure.in: missing brackets Message-ID: <1649606540.41.0.350170633601.issue401373@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33019 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401374] linuxaudiodev.c: add support for FreeBSD Message-ID: <1649606540.43.0.492271043895.issue401374@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33020 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401380] sys.(get|set)recursionlimit Message-ID: <1649606540.45.0.0420392435227.issue401380@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33021 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401369] Solves bug 111961 Message-ID: <1649606540.37.0.117458196678.issue401369@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33018 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401312] gettext: Bi-endianness, catalog information, Unicode Message-ID: <1649606539.37.0.349176505718.issue401312@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32992 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213254] pre/sre difference breaks pyclbr Message-ID: <1649606540.54.0.602524384856.issue213254@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33023 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213243] missing hyphen in command-line help Message-ID: <1649606540.5.0.402919835576.issue213243@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33022 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401388] Backward compatibility hook Message-ID: <1649606540.6.0.824048800825.issue401388@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33025 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401337] Cleanup configuration for FreeBSD Message-ID: <1649606539.77.0.735888635114.issue401337@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33000 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401389] Minor fix in documentation of code module Message-ID: <1649606540.65.0.201118725068.issue401389@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33026 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401390] Add special names to operator module as expected by user Message-ID: <1649606540.7.0.478697688533.issue401390@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33027 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401394] lookdict optimizations Message-ID: <1649606540.81.0.997428952151.issue401394@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33030 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401391] Implemented UserList.__contains__ Message-ID: <1649606540.74.0.142013509746.issue401391@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33028 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213328] Python 1.6b1 build failure on Solaris (with patch) Message-ID: <1649606540.78.0.623560582685.issue213328@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33029 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213576] Py_PROTO missing from the include files Message-ID: <1649606541.09.0.790710333044.issue213576@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33038 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401418] More augmented assignment docs Message-ID: <1649606541.07.0.643233416812.issue401418@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33037 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401352] PyOS_StackCheck for Unix Message-ID: <1649606540.15.0.623889500828.issue401352@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33012 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213600] mmap module is undocumented Message-ID: <1649606541.12.0.798727469003.issue213600@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33039 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401425] Fix for 110598: support \r in py_compile Message-ID: <1649606541.19.0.822003033513.issue401425@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33043 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401423] Fix for 110686: cStringIO.readlines Message-ID: <1649606541.15.0.650869606803.issue401423@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33041 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213401] grant Message-ID: <1649606540.87.0.00383578495673.issue213401@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33031 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401433] Fix for 110845: Check struct short and byte ranges Message-ID: <1649606541.39.0.926029420449.issue401433@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33052 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213733] xml package not included in windows installer Message-ID: <1649606541.37.0.218504365578.issue213733@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33051 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401420] auto-detect libdb Message-ID: <1649606541.13.0.421627173514.issue401420@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33040 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401428] typo's in NEWS Message-ID: <1649606541.2.0.569856985022.issue401428@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33044 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:13 +0000 Subject: [issue210821] On Windows, APIs passing FILE* break with Borland C (PR#121) Message-ID: <1649606533.43.0.70813758792.issue210821@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32824 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401342] remove -Wstrict-prototypes warnings [aka: Anal Crusade I] Message-ID: <1649606539.92.0.357605243326.issue401342@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33005 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401447] Fix for 113704: Update asyncore/asynchat Message-ID: <1649606541.77.0.616060849879.issue401447@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33064 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213800] optional{} produces incorrect HTML Message-ID: <1649606541.79.0.84267567761.issue213800@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33065 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213803] [2.0b1 NT4.0] printing non asci char causes idle to abort Message-ID: <1649606541.82.0.208423972183.issue213803@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33066 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401315] "import mod.submod as s" per Guido's wishes. Message-ID: <1649606539.49.0.65014973657.issue401315@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32994 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213810] Global Module Index points to non-existant "About" page Message-ID: <1649606541.89.0.89964209605.issue213810@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33068 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401398] API doc changes (InPlace-API & And/Or/Xor fixes) Message-ID: <1649606540.91.0.047609386398.issue401398@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33033 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue213888] Compiling on alpha-osf1v4: Py_IS_INFINITY not defined Message-ID: <1649606542.06.0.63150778201.issue213888@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33075 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue213862] 2.0b1 lib.pdf, problems with bookmark titles Message-ID: <1649606542.04.0.350614438549.issue213862@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33074 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401350] Fix SMTPlib for large messages Message-ID: <1649606540.1.0.282882306469.issue401350@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33010 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213704] asyncore.py / asynchat.py outdated Message-ID: <1649606541.31.0.92519511232.issue213704@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33048 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue213890] eval() fails with unicode string Message-ID: <1649606542.08.0.654089455225.issue213890@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33076 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401458] Adding Unicode support to get|set|hasattr() Message-ID: <1649606542.14.0.477547358482.issue401458@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33079 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue213934] string * int silently returns wrong answer for certain ints Message-ID: <1649606542.16.0.393850728063.issue213934@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33080 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214027] Compiling on alpha-osf1v4: libpthreads is called libpthread Message-ID: <1649606542.21.0.1094072603.issue214027@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33082 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401439] Better syntax for print ( 'print [to file [, ]] [(arg , )*]' ) Message-ID: <1649606541.5.0.124355162709.issue401439@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33056 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401454] Add Unicode support to "exec" and "eval()" Message-ID: <1649606542.12.0.0674282018306.issue401454@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33078 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214033] re incompatibility in sre Message-ID: <1649606542.27.0.748944004361.issue214033@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33084 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue213850] posixfile __del__ method is wrong Message-ID: <1649606542.02.0.948280286735.issue213850@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33073 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401472] Fix for 110842: Add several dl.RTLD_ constants Message-ID: <1649606542.33.0.973658002363.issue401472@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33085 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401437] Fix for 110675: GNU pth support Message-ID: <1649606541.41.0.277852793522.issue401437@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33053 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214235] error in getgid()? Message-ID: <1649606542.39.0.916658934934.issue214235@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33087 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401481] fix for Bug #113894 in ntpath.py and posixmodule.c Message-ID: <1649606542.41.0.327894851136.issue401481@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33088 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214245] utime can not accept directory under NT Message-ID: <1649606542.44.0.830158456857.issue214245@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33089 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213693] freeze modulefinder broken Message-ID: <1649606541.23.0.619301861417.issue213693@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33045 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214256] Python 2.0b1, Win2K - urllib failure Message-ID: <1649606542.53.0.589738671126.issue214256@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33092 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401483] mailbox.py broken for Maildir Message-ID: <1649606542.51.0.40378477262.issue401483@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33091 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401340] test_fcntl.py: add support for FreeBSD-[45] Message-ID: <1649606539.88.0.0114650506197.issue401340@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33003 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401485] Patch to test sendmail virtual domain gid's for bug #114235 Message-ID: <1649606542.6.0.0907641863563.issue401485@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33095 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214293] Unexpected Evaluation of Expressions from Pickle Message-ID: <1649606542.63.0.9264058542.issue214293@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33096 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue212573] test_re crashes when compiled with -DPy_DEBUG Message-ID: <1649606538.7.0.194058025443.issue212573@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32975 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214287] InPlace API needs refcount info Message-ID: <1649606542.55.0.236569223368.issue214287@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33093 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213696] lib.pdf damaged in pdf-a4-2.0b1.tgz Message-ID: <1649606541.26.0.640116193971.issue213696@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33046 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401412] add gc.DEBUG_SAVEALL option, gc_str fix Message-ID: <1649606540.99.0.363920848698.issue401412@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33035 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214290] search_for_prefix failure on relative path Message-ID: <1649606542.57.0.513707692926.issue214290@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33094 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401495] mailbox.py broken for Maildir Message-ID: <1649606542.75.0.863077585674.issue401495@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33101 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214304] wm_resizable should return a tuple. Message-ID: <1649606542.72.0.458330740072.issue214304@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33100 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214318] References to Python 1.5 Message-ID: <1649606542.78.0.0600524369539.issue214318@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33102 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214323] Pb PYTHON Message-ID: <1649606542.8.0.959330751757.issue214323@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33103 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213142] configure problems with poll.h Message-ID: <1649606540.26.0.755651807171.issue213142@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33015 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214334] glob does not handle set coplementation ([^ ... ]) properly Message-ID: <1649606542.88.0.152658480627.issue214334@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33106 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue401424] Fix for 110629: guarantee unique image names Message-ID: <1649606541.17.0.679770465746.issue401424@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33042 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213812] Serious garbage collection problems with 2.0b1 Message-ID: <1649606541.94.0.657717220251.issue213812@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33070 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401482] fix for Bug #114245 Message-ID: <1649606542.46.0.268206699127.issue401482@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33090 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue214410] 'make tests' fails with thread error on OpenBSD 2.7 Message-ID: <1649606543.0.0.259662021924.issue214410@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33110 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401509] Fix for 114424: PyTuple_Resize buggy with cyclic gc Message-ID: <1649606543.14.0.126062276878.issue401509@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33116 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401510] Fix for 114424: PyTuple_Resize buggy with cyclic gc Message-ID: <1649606543.18.0.0461202751038.issue401510@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33117 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213760] 2.0b1: _xmlplus does not allow site xml to override Lib/xml Message-ID: <1649606541.43.0.862091861131.issue213760@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33054 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401511] Fix typos Message-ID: <1649606543.22.0.418160430343.issue401511@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33118 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue214439] define_macros ignored when building Extension Message-ID: <1649606543.11.0.669676591717.issue214439@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33115 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214359] snpplib Message-ID: <1649606542.97.0.338508707989.issue214359@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33109 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214336] Python-2.0b1 build fails on OpenBSD 2.7 Message-ID: <1649606542.95.0.913462295911.issue214336@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33108 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401514] Remove references to self._source Message-ID: <1649606543.3.0.0415721388351.issue401514@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33120 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401517] Fix for Bug 114333 (only reported bug in minidom) Message-ID: <1649606543.35.0.920197831991.issue401517@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33121 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213795] IDLE 0.6 with Python 2.0b1 doesn't handle chinese characters Message-ID: <1649606541.7.0.441796186553.issue213795@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33062 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213807] PyArg_ParseTupleAndKeywords and Unicode...? Message-ID: <1649606541.85.0.598707748624.issue213807@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33067 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213797] Build problems on Reliant Unix Message-ID: <1649606541.73.0.142477233974.issue213797@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33063 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213788] NT 2.0b1 Doc/modindex.html is almost empty Message-ID: <1649606541.63.0.729058237397.issue213788@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33060 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214294] Module Index Links don't work. Message-ID: <1649606542.67.0.125726424371.issue214294@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33098 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401534] Use confirmations rather than assertions Message-ID: <1649606543.6.0.559546827175.issue401534@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33127 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401537] Include/ceval.h mentions obsolete RET_SAVE macro Message-ID: <1649606543.72.0.573342753329.issue401537@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33130 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213828] getpythonregpath with null data in registry key Message-ID: <1649606541.97.0.654895075999.issue213828@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33071 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue214553] copy.deepcopy() barfs if it hits class/function/method Message-ID: <1649606543.74.0.757589825406.issue214553@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33131 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401387] Documenting __contains__ special method Message-ID: <1649606540.57.0.958221444894.issue401387@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33024 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401536] httplib should not close socket on zero-length response Message-ID: <1649606543.67.0.616331231326.issue401536@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33129 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213779] test_gc coredump on Alpha Message-ID: <1649606541.52.0.905607562677.issue213779@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33057 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue214566] Bad link to some information at unicode.org Message-ID: <1649606543.79.0.0180890003852.issue214566@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33133 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213829] hasattr() doesn't accept Unicode strings Message-ID: <1649606542.0.0.887057362292.issue213829@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33072 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214749] HTML docs: mark off-site links Message-ID: <1649606544.08.0.363264549537.issue214749@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33141 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue214598] Blue Screen crash, popen, Win98, Norton Antivirus 2000 Message-ID: <1649606543.84.0.482556469516.issue214598@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33134 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214754] marshal_loads can return NULL without setting Error Message-ID: <1649606544.12.0.333413801522.issue214754@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33142 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214746] dis module is not up todate in 2.0b1-#4 Message-ID: <1649606544.02.0.0658014195852.issue214746@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33139 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:14 +0000 Subject: [issue210861] time.sleep() and threading (PR#307) Message-ID: <1649606534.63.0.764091419811.issue210861@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32859 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214758] sys.prefix can be wrong with multiple Python installations Message-ID: <1649606544.19.0.0443522468921.issue214758@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33144 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue401396] sre_parse.py missing '7' in DIGITS Message-ID: <1649606540.88.0.555279842027.issue401396@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33032 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214775] test_minidom failing on Windows Message-ID: <1649606544.23.0.869222428538.issue214775@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33145 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213785] SIGSEGV in PyDict_SetItem Message-ID: <1649606541.58.0.716808174805.issue213785@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33058 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue401572] updates XMLGenerator to new interface Message-ID: <1649606544.5.0.899381130904.issue401572@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33152 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214830] Writing of Unicode data not portable Message-ID: <1649606544.64.0.00720772165785.issue214830@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33157 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214846] python20_d.dll missing Message-ID: <1649606544.68.0.518573939935.issue214846@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33158 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue401574] a first start on updating expatreader.py Message-ID: <1649606544.56.0.307925700594.issue401574@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33154 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214847] Building Python fails due to readline problem Message-ID: <1649606544.73.0.367824113022.issue214847@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33159 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue213894] os.listdir(driveletter + ":") flawed on Win32 Message-ID: <1649606542.09.0.8752588466.issue213894@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33077 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue215006] Python 2.0 won't build on HP Unix 10.2 Message-ID: <1649606544.89.0.34904721055.issue215006@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33164 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue401575] a first start on updating expatreader.py Message-ID: <1649606544.58.0.686986340229.issue401575@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33155 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue215026] SSL features undocumented Message-ID: <1649606544.95.0.288159004377.issue215026@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33165 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue401569] URL quote doesn't always quote international characters Message-ID: <1649606544.41.0.397581004291.issue401569@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33149 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue215056] __init__.py has tab ==> indention error Message-ID: <1649606545.13.0.845295180118.issue215056@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33170 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue215054] test_minidom has a tab.... Message-ID: <1649606545.1.0.534836859046.issue215054@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33169 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:18 +0000 Subject: [issue401249] port to Monterey (64-bit AIX) and pthread fix Message-ID: <1649606538.33.0.481081676898.issue401249@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32966 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213811] Python 2.0 beta 1 -- urllib.urlopen() fails Message-ID: <1649606541.91.0.367186011726.issue213811@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33069 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213700] widespread bug in HTML files: lots of italics Message-ID: <1649606541.28.0.772024516327.issue213700@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33047 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue215077] configure.in broken for HP-UX 11 w/ HP ANSI compiler Message-ID: <1649606545.24.0.663727657541.issue215077@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33173 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue401606] threads and __del__ Message-ID: <1649606545.27.0.746824198919.issue401606@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33174 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401477] Fixes of ReadStream.readline() in UTF-16 and -LE codecs Message-ID: <1649606542.35.0.81857294226.issue401477@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33086 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue215057] -program-suffix=SUFFIX not respected Message-ID: <1649606545.16.0.907224427429.issue215057@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33171 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue215119] re module docs missing lookbehind, etc. Message-ID: <1649606545.36.0.861790819113.issue215119@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33177 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401512] Support parsing of already opened file objects Message-ID: <1649606543.25.0.720348950123.issue401512@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33119 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:20 +0000 Subject: [issue213463] Inconsistent handling of arg -/-- by getopt.getopt() ? Message-ID: <1649606540.95.0.635110914239.issue213463@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33034 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214747] Freeze does not work Message-ID: <1649606544.05.0.486655715301.issue214747@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33140 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401527] ustr Message-ID: <1649606543.42.0.558981328253.issue401527@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33123 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214923] ToolTip not showing text on AIX 4.3 Message-ID: <1649606544.8.0.8311617687.issue214923@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33161 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue215147] os.execvp ignores first item in arguments Message-ID: <1649606545.52.0.842388074712.issue215147@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33181 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213793] getopt.c compile fails on Solaris 2.6/gcc 2.95.2 Message-ID: <1649606541.66.0.0936345874746.issue213793@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33061 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue401630] adds back the InputSource object Message-ID: <1649606545.56.0.120596156105.issue401630@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33183 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214756] test_linuxaudiodev uses wrong format Message-ID: <1649606544.15.0.767220431027.issue214756@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33143 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue401635] adds ExternaltEntityParserCreate method Message-ID: <1649606545.78.0.814906959347.issue401635@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33188 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213721] urllib handles proxy badly Message-ID: <1649606541.33.0.600964619323.issue213721@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33049 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue401631] adds back EntityResolver and DTDHandler Message-ID: <1649606545.58.0.799994817067.issue401631@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33184 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401508] add 'punctuation' and 'printable' consts. to stropmodule.c Message-ID: <1649606543.09.0.400007926589.issue401508@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33114 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215341] Todays CVS python dumps core in gcmodule.c?! Message-ID: <1649606546.23.0.679636634216.issue215341@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33201 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215357] ConfigParser feedback Message-ID: <1649606546.4.0.481997738844.issue215357@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33205 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401507] add 'punctuation' and 'printable' consts. to stropmodule.c Message-ID: <1649606543.07.0.191878493405.issue401507@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33113 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue214557] Nuke hard tabs from the std library Message-ID: <1649606543.76.0.177001399279.issue214557@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33132 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue401664] Add new unistr() builtin + PyObject_Unicode() C API Message-ID: <1649606546.36.0.506028829463.issue401664@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33204 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215338] 2.0b1.1 HTML docs: Contents/Module index problem Message-ID: <1649606546.2.0.502038837532.issue215338@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33200 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215392] Build under SunOS 4.1.4_JL fails Message-ID: <1649606546.45.0.726414006971.issue215392@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33207 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214821] 2.0b1 IDLE "replace" dead broken Message-ID: <1649606544.6.0.947761239277.issue214821@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33156 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue401679] Use full paths in _path_created cache Message-ID: <1649606546.63.0.270924611082.issue401679@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33210 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215476] Python-2.0b2 is incompatible with readline version 2 Message-ID: <1649606546.68.0.776197745498.issue215476@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33211 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214900] Undefined Symbols When Building Message-ID: <1649606544.77.0.374599219512.issue214900@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33160 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215492] 1 test failed: test_unicodedata Message-ID: <1649606546.79.0.745276443767.issue215492@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33214 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue401682] poll fix for glibc 2.0.7 Message-ID: <1649606546.82.0.786870254282.issue401682@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33215 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215487] Windows installer not logo compliant Message-ID: <1649606546.71.0.969963937472.issue215487@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33212 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215515] build with read-only source files fails Message-ID: <1649606546.91.0.388480275291.issue215515@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33217 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215528] import creates extra modules if in working directory Message-ID: <1649606547.01.0.223766194064.issue215528@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33220 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215531] cStringIO truncate() doesn't support size parameter Message-ID: <1649606547.1.0.897678125344.issue215531@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33222 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215506] recent change to md5.h causes md5c.c compilation failure Message-ID: <1649606546.87.0.561013127806.issue215506@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33216 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215491] 2.0b2:test_unicodedata fails: Sparc Solaris 2.7/6 Message-ID: <1649606546.74.0.646001865484.issue215491@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33213 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215595] Building extensions on windows Message-ID: <1649606547.19.0.828046068422.issue215595@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33224 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215617] poll problem on Linux 2.0.38, glibc 2.0.7 Message-ID: <1649606547.28.0.305237811926.issue215617@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33228 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215608] Readme.txt Message-ID: <1649606547.23.0.179197944918.issue215608@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33225 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue401652] unidb-based unicodectype.c replacement Message-ID: <1649606545.98.0.24023576412.issue401652@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33195 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215625] python2.0b2 test_pty fails on x86 Solaris 8 Message-ID: <1649606547.34.0.187466244023.issue215625@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33230 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215618] SRE lookbehind raises a RuntimeError Message-ID: <1649606547.31.0.679896040525.issue215618@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33229 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215641] Dynamic Loading Fails on Mac OS X Message-ID: <1649606547.4.0.372783266804.issue215641@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33232 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215615] atof, atoi, atol not behaving as methods Message-ID: <1649606547.26.0.354323303905.issue215615@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33227 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215643] test_longexp Fails on OpenBSD Message-ID: <1649606547.42.0.784066272109.issue215643@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33233 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue401699] GC fixes for malloc() == NULL Message-ID: <1649606547.37.0.729528725021.issue401699@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33231 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue401702] Modify co_filename in frozen programs Message-ID: <1649606547.44.0.0662649326205.issue401702@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33234 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue401709] test_import to verify that .pyc files can be imported Message-ID: <1649606547.51.0.809586803884.issue401709@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33236 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215323] limits.h should be included in one place only Message-ID: <1649606546.1.0.19881835869.issue215323@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33197 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215658] Minor spelling mistakes in tutorial of beta2 documentation Message-ID: <1649606547.48.0.664259213936.issue215658@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33235 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215676] repr(__builtin__.license) reads from stdin Message-ID: <1649606547.55.0.593249070751.issue215676@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33238 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215673] Typo in the documentation (very low priority) Message-ID: <1649606547.53.0.186599558102.issue215673@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33237 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215527] StringIO.StringIO does not support truncate() Message-ID: <1649606546.97.0.301584522993.issue215527@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33219 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215681] zipfile documentation out of sync with module Message-ID: <1649606547.66.0.96435297142.issue215681@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33241 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215690] Dr. Watson error on Python2.0b2 Idle 0.6 WinNT4.0 SP6 Message-ID: <1649606547.68.0.780412959302.issue215690@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33242 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214780] Rare hangs in w9xpopen.exe Message-ID: <1649606544.27.0.635674691396.issue214780@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33146 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue401496] Support switches -h and -V (help & version) Message-ID: <1649606542.91.0.465118752931.issue401496@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33107 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401544] Fix for 110609: Allow large long integers in formatting Message-ID: <1649606543.87.0.0933906516904.issue401544@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33135 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215712] mimetools.decode doesn't work with '7bit' encoding Message-ID: <1649606547.76.0.630935960291.issue215712@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33244 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215696] sre RuntimeError when .*? matches >16K string Message-ID: <1649606547.72.0.100829193991.issue215696@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33243 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue401721] Fix for 115530/1: add closed attribute to cStringIO objects Message-ID: <1649606547.81.0.449427775938.issue401721@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33246 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215731] Linking with old versions of readline Message-ID: <1649606547.85.0.152654183096.issue215731@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33248 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue401730] Add initial static support for Darwin/MacOSX Message-ID: <1649606547.89.0.242975636255.issue401730@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33250 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215789] operator module missing documentation Message-ID: <1649606547.92.0.0142664405378.issue215789@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33251 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215831] 0.0**-2.0 returns "inf" instead of raising ValueError Message-ID: <1649606547.95.0.499770189972.issue215831@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33252 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue215894] Difference between dos_8x3 and dos-8x3 Message-ID: <1649606548.05.0.983620012303.issue215894@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33255 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue215005] Python 2.0 won't build on HP Unix 10.2 Message-ID: <1649606544.87.0.999787979406.issue215005@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33163 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue215126] Over restricted type checking on eval() function Message-ID: <1649606545.39.0.355678456442.issue215126@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33178 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue215845] sre: maxsplit as keyword argument Message-ID: <1649606548.02.0.808319015955.issue215845@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33254 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401751] Make 0.0**-2.0 raise ValueError (fixes hi-pri bug 115831) Message-ID: <1649606548.06.0.533301154206.issue401751@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33256 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue215903] sre: split exceeds recursion limit Message-ID: <1649606548.13.0.66295951395.issue215903@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33258 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue215907] Encoding of "=" by quopri.py module Message-ID: <1649606548.15.0.752052284686.issue215907@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33259 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue215928] UserList.__getslice__ and co break previous behaviour Message-ID: <1649606548.25.0.907644021619.issue215928@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33263 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue401663] Regression test for Unicode database Message-ID: <1649606546.29.0.313148839397.issue401663@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33202 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue215973] Cygwin Fixes Message-ID: <1649606548.31.0.590245540297.issue215973@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33265 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215714] Module 'turtle' exports name 'Tk'... Message-ID: <1649606547.78.0.594851322139.issue215714@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33245 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue215912] GC crashes in 2.0b1 and 2.0b2 Message-ID: <1649606548.17.0.658455430387.issue215912@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33260 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue401339] posixfile.py: add support for FreeBSD-[45] Message-ID: <1649606539.85.0.983136470375.issue401339@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33002 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216008] Subsection Hypertext Links are broken in HTML Docs Message-ID: <1649606548.37.0.962009742388.issue216008@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33268 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue215844] OverflowError: integer multiplication Message-ID: <1649606547.98.0.575369673185.issue215844@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33253 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216011] PyPort.h backward compatibility issues missing Message-ID: <1649606548.4.0.339452866146.issue216011@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33269 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401778] revise BeOS build Message-ID: <1649606548.59.0.752306494216.issue401778@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33276 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401774] revise BeOS build Message-ID: <1649606548.49.0.553247428978.issue401774@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33272 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401776] revise BeOS build Message-ID: <1649606548.54.0.519530043403.issue401776@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33274 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401781] BeOS regen Message-ID: <1649606548.68.0.0191397731995.issue401781@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33279 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401777] revise BeOS build Message-ID: <1649606548.56.0.698700548894.issue401777@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33275 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216048] BeOpen Python 2.0b2 RPM does not include python2.0 binary Message-ID: <1649606548.74.0.181485118157.issue216048@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33281 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401782] Enhances 1.6 compiler to raise 'proper' SyntaxErrors Message-ID: <1649606548.7.0.960014913773.issue401782@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33280 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401780] BeOS/linkmodule missing VERSION Message-ID: <1649606548.64.0.632226034941.issue401780@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33278 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216121] cmath & umath fail to load on HPUX10.2 Message-ID: <1649606548.79.0.83561547665.issue216121@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33283 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216136] sre recursion limit hit in tokenize.py Message-ID: <1649606548.81.0.196741744646.issue216136@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33284 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue215987] Crash in __coerce__ (2.0b2) Message-ID: <1649606548.35.0.770804143164.issue215987@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33267 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216144] Python 2.0b1 hangs Message-ID: <1649606548.84.0.1873422562.issue216144@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33285 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216172] 2.0b2 curses module fails to build on SGI Message-ID: <1649606548.87.0.177172133143.issue216172@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33286 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216174] using %% in cstrings sometimes fails with unicode params Message-ID: <1649606548.9.0.180597316125.issue216174@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33287 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue401714] Missing `s' in format string Message-ID: <1649606547.64.0.749758707228.issue401714@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33240 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue401595] ob_type in deallocator function Message-ID: <1649606544.84.0.458262427229.issue401595@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33162 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue214792] Document how to report bugs against python Message-ID: <1649606544.36.0.611008560735.issue214792@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33148 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401804] Cygwin Fix -- missing tcp.h Message-ID: <1649606548.96.0.901779771056.issue401804@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33290 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401802] Cygwin Fix -- missing tcp.h Message-ID: <1649606548.94.0.155958237111.issue401802@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33289 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216235] module_search_path in PC/getpahp.c Message-ID: <1649606548.98.0.248474707324.issue216235@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33291 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216237] Leak in ceval.c Message-ID: <1649606549.02.0.684491988988.issue216237@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33293 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216236] Possible leak in pystate.c Message-ID: <1649606549.0.0.501550947254.issue216236@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33292 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401773] BeOS PPC lacks fseeko, but isn't MS Windows Message-ID: <1649606548.46.0.196440316412.issue401773@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33271 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216244] 2.0b2 xml.dom.minidom: no attributes allowed Message-ID: <1649606549.07.0.170991268917.issue216244@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33295 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216251] SRE miscompiles character class containing - Message-ID: <1649606549.1.0.444456505161.issue216251@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33296 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216263] Tools/compiler cannot handle "from foo import *" Message-ID: <1649606549.15.0.492117621529.issue216263@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33298 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401807] Patch for SRE character class bug (#116251) Message-ID: <1649606549.17.0.032418708646.issue401807@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33299 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216267] zlib.decompress memory allocation "infinite" loop Message-ID: <1649606549.2.0.785142190075.issue216267@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33300 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue216117] cmath & umath fail to load on HPUX10.2 Message-ID: <1649606548.76.0.481661257088.issue216117@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33282 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216271] corrupted wave file header Message-ID: <1649606549.26.0.142056006959.issue216271@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33302 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401772] __MWERKS__ != BeOS in thread.c Message-ID: <1649606548.43.0.948384368763.issue401772@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33270 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216285] Unicode encoders don't report errors properly Message-ID: <1649606549.31.0.807777689859.issue216285@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33304 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216289] Programs using Tkinter sometimes can't shut down (Windows) Message-ID: <1649606549.33.0.056611702647.issue216289@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33305 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216255] 2.0b2: LDSHARED incorrect on SGI IRIX Message-ID: <1649606549.12.0.0342411919508.issue216255@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33297 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401823] Fix Darwin POSIX Thread redefinition Message-ID: <1649606549.56.0.964931441722.issue401823@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33311 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216325] RedHat 5.2: ./configure: test: too many arguments Message-ID: <1649606549.49.0.394440506902.issue216325@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33309 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216295] pickle fails to reduce class instances as documented Message-ID: <1649606549.43.0.0997705172314.issue216295@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33307 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216326] Syntax error in Modules/config.c Message-ID: <1649606549.52.0.777549132598.issue216326@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33310 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216388] cStringIO rejects Unicode strings Message-ID: <1649606549.62.0.728257422254.issue216388@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33313 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401839] better error messages Message-ID: <1649606549.68.0.2231385363.issue401839@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33314 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401840] Minor fix in documentation of calendar module. Message-ID: <1649606549.74.0.301452377268.issue401840@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33316 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:28 +0000 Subject: [issue401779] revise BeOS build Message-ID: <1649606548.62.0.852583178365.issue401779@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33277 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401844] bdist_wininst creates corrupt installations Message-ID: <1649606549.92.0.203326814431.issue401844@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33321 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216397] Python takes cmd line options after module name for itself Message-ID: <1649606549.71.0.450930403373.issue216397@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33315 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401859] copy_reg: raise TypeError used with class objects Message-ID: <1649606550.06.0.929202731061.issue401859@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33326 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401843] Remove all uses of "assert" from the test suite Message-ID: <1649606549.89.0.107341453332.issue401843@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33320 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216546] test_longexp.py causes apparently endless page thrashing Message-ID: <1649606550.09.0.766707077035.issue216546@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33328 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401862] test_fcntl.py needs "Darwin1.2" added among the BSD's Message-ID: <1649606550.07.0.810518880662.issue401862@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33327 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216516] test_sre.py fails on Win64 because PyOS_CheckStack *never* f Message-ID: <1649606550.03.0.620137905769.issue216516@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33325 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216677] minidom:Node.appendChild() has wrong semantics Message-ID: <1649606550.3.0.631409226191.issue216677@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33336 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216682] 2.0 stalls Mac on external drive Message-ID: <1649606550.37.0.550727329788.issue216682@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33338 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401870] Make XMLFilterBase usable Message-ID: <1649606550.27.0.838197991218.issue401870@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33335 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401842] Localization of calendar module. Message-ID: <1649606549.8.0.921959766551.issue401842@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33318 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216678] minidom doesn't raise exception for illegal children Message-ID: <1649606550.34.0.923832010413.issue216678@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33337 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401880] Make unlink clean up siblings Message-ID: <1649606550.55.0.598857753521.issue401880@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33343 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401882] Minor pth support cleanup Message-ID: <1649606550.58.0.093016714221.issue401882@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33344 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401857] ifdef for USE_STACKCHECK consistant Message-ID: <1649606550.01.0.376174372378.issue401857@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33324 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401897] make dom.unlink() remove sibling cycles Message-ID: <1649606550.69.0.151830039837.issue401897@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33347 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401896] fix to expatreader incremental parsing Message-ID: <1649606550.67.0.539023765806.issue401896@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33346 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216405] Bug in buffer interface Message-ID: <1649606549.87.0.631419194391.issue216405@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33319 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216716] urllib.quote and Unicode Message-ID: <1649606550.41.0.166751032561.issue216716@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33339 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216787] StringIO does not check constructor argument type Message-ID: <1649606550.6.0.921501764756.issue216787@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33345 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216636] Bug in StringIO.write() Message-ID: <1649606550.2.0.441800819025.issue216636@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33332 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401904] Better SWIG with C++ support Message-ID: <1649606550.75.0.780638104931.issue401904@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33349 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401841] Minor fix in calendar module to work with "funny" years. Message-ID: <1649606549.77.0.301006883651.issue401841@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33317 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401816] Fixes shared modules on Mac OS X Message-ID: <1649606549.39.0.941499757909.issue401816@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33306 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217092] Testsuite dumps core on Win2000 / IDLE Message-ID: <1649606551.12.0.904970592763.issue217092@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33359 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216872] 2.0c1 can't "import string" ?! Message-ID: <1649606550.79.0.395615262797.issue216872@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33350 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217178] Documentation missing for __iadd__, __isub__, etc. Message-ID: <1649606551.29.0.0961451763489.issue217178@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33363 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue217032] test_fcntl should not use /tmp/delete-me Message-ID: <1649606551.0.0.953723195644.issue217032@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33356 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216964] gettext may fail to find .mo file Message-ID: <1649606550.82.0.530691395398.issue216964@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33351 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216603] Files missing in Demo/p2c Message-ID: <1649606550.15.0.609355603269.issue216603@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33330 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217242] Negative lookbehind fails Message-ID: <1649606551.5.0.174906581053.issue217242@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33367 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217090] PIL (TkImaging) extension instructions wrong Message-ID: <1649606551.08.0.594216973269.issue217090@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33358 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217245] Python shared-library modules do not work on OpenBSD 2.7 Message-ID: <1649606551.59.0.202423243782.issue217245@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33370 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217305] Limited precision enter 3.14 you get 3.1400000000000001 Message-ID: <1649606551.67.0.960912848201.issue217305@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33373 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue402068] fix for bug #117402 (repr of array) Message-ID: <1649606551.87.0.742218365372.issue402068@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33381 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217402] Interpreter crashes when str or repr called with an array Message-ID: <1649606551.86.0.419151308586.issue217402@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33380 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217377] API docs, 7.2.1, too restrictive statement Message-ID: <1649606551.8.0.885825508301.issue217377@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33378 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217490] mailbox.Maildir does not create self.boxes in __init__ Message-ID: <1649606552.05.0.639321049707.issue217490@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33386 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217524] The unicodedata db does not know about the special ranges. Message-ID: <1649606552.13.0.697738303153.issue217524@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33388 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217241] class.method(*([self]+args)) gave me a 'unbound method must be called with class instance 1st argument" error message. Message-ID: <1649606551.45.0.507558460975.issue217241@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33366 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:19 +0000 Subject: [issue212877] re behaves differently in 1.6 and 2.0 than 1.52 Message-ID: <1649606539.57.0.393115155385.issue212877@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32996 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue401993] Fix prepare_input_stream bug Message-ID: <1649606551.78.0.433444874744.issue401993@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33377 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217612] sre gives wrong groups with findall and empty groups Message-ID: <1649606552.26.0.239241866267.issue217612@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33392 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401936] Auto-detect DEC threads (which need "-threads" argument) Message-ID: <1649606550.92.0.97217078569.issue401936@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33354 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue401973] test_import.py fails on Unix when run any but the local dir Message-ID: <1649606551.55.0.0579474892832.issue401973@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33369 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219221] Include/graminit.h and Parser/graminit.c erroneously in dist Message-ID: <1649606552.53.0.0425600319067.issue219221@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33401 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue402114] Make *shared* modules work on OpenBSD (bug 117245) Message-ID: <1649606552.45.0.198537731303.issue402114@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33398 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217745] Two Compensating bugs in UserString.__imul__ Message-ID: <1649606552.48.0.954934343321.issue217745@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33399 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219483] OpenBSD can't dynamically load modules Message-ID: <1649606552.62.0.444339211483.issue219483@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33403 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219662] python2.0 fails to build on RedHat7.0 Message-ID: <1649606552.96.0.378851898846.issue219662@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33410 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219645] distutils.sysconfig.LINKFORSHARED is undefined Message-ID: <1649606552.85.0.926102037046.issue219645@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33409 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue219709] POLLIN undefined Message-ID: <1649606553.05.0.543141539925.issue219709@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33412 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217684] IDLE stack browser display problem Message-ID: <1649606552.34.0.568887402459.issue217684@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33394 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217467] missing parameter in function summary Message-ID: <1649606551.98.0.861321673857.issue217467@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33384 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216720] function to open a file and create intermediate directories Message-ID: <1649606550.45.0.769257179638.issue216720@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33340 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401821] xmldomminidom.tex: Documentation for minidom Message-ID: <1649606549.46.0.895704418978.issue401821@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33308 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue219851] inline C++ keyword in config.h Message-ID: <1649606553.34.0.383173133913.issue219851@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33420 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue219960] Problems with Tcl/Tk and non-ASCII text entry Message-ID: <1649606553.46.0.396892787039.issue219960@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33425 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue219822] urllib doesn't like unicode Message-ID: <1649606553.31.0.2324912465.issue219822@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33419 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue220081] PyDict_Update() missing from C API Message-ID: <1649606553.51.0.244642039681.issue220081@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33426 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue402170] move getopt() to Py_GetOpt() and use it unconditionally Message-ID: <1649606553.24.0.843855240871.issue402170@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33417 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue220994] Traceback with DISTUTILS_DEBUG set Message-ID: <1649606553.67.0.408774973668.issue220994@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33430 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217324] threadmodule.c uses fprintf(stderr...) Message-ID: <1649606551.69.0.724075464719.issue217324@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33374 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue220993] Installation flaky with multiple installers, old versions Message-ID: <1649606553.63.0.37290846499.issue220993@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33429 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401531] Fix for GC bug #113812 Message-ID: <1649606543.57.0.9542987105.issue401531@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33126 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:22 +0000 Subject: [issue214324] Minor build problems on HPUX for 2.0b1 Message-ID: <1649606542.83.0.0547566149245.issue214324@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33104 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:25 +0000 Subject: [issue215308] codecs base classes need documentation Message-ID: <1649606545.91.0.938419607785.issue215308@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33193 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:24 +0000 Subject: [issue401571] adds make_parser to xml.sax Message-ID: <1649606544.45.0.0805787931957.issue401571@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33151 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213786] copy.py doesn't support unicode strings Message-ID: <1649606541.61.0.79916469648.issue213786@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33059 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401108] getopt.py extensions (APPEND version) Message-ID: <1649606535.72.0.512825203902.issue401108@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32895 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue215330] popen2 should use dup2() rather than dup(). Message-ID: <1649606546.12.0.825603032205.issue215330@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33198 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue401653] unidb-based unicodetype.c replacement (part 2) Message-ID: <1649606546.06.0.0854072559281.issue401653@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33196 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:15 +0000 Subject: [issue401062] Docs for the new parser markers introduced by Unicode Message-ID: <1649606535.16.0.23823963347.issue401062@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32878 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue214660] sre hangs with "collapse whitespace" RE Message-ID: <1649606543.96.0.79751314763.issue214660@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33137 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:21 +0000 Subject: [issue213773] Python 2.0b1 selectmodule compile error under Redhat 5.2 Message-ID: <1649606541.46.0.861737854849.issue213773@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33055 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:26 +0000 Subject: [issue401659] Fix bug #115323: normalize limits.h inclusion Message-ID: <1649606546.17.0.480449032207.issue401659@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33199 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:27 +0000 Subject: [issue401713] Free extension DLLs' handles during the Py_Finalize() Message-ID: <1649606547.57.0.766269020095.issue401713@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33239 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219486] fcntl.lockf() is broken Message-ID: <1649606552.71.0.0467872998176.issue219486@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33405 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue221060] memory leak in python 2.0 Message-ID: <1649606553.83.0.3829320932.issue221060@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33434 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217606] *.so creation in solaris+GCC Message-ID: <1649606552.2.0.0680563399064.issue217606@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33390 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue221027] regex.compile("***").match("") malfunction Message-ID: <1649606553.77.0.902508121242.issue221027@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33432 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue401877] Completed codecs API docs Message-ID: <1649606550.47.0.623719456253.issue401877@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33341 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219123] Use of ftplib or urllib causes page fault on exit Message-ID: <1649606552.5.0.25752279919.issue219123@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33400 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219707] urllib failure when return code not 200 Message-ID: <1649606552.99.0.194603439143.issue219707@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33411 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219556] Python 2.0 httplib doesn't like ICY status lines Message-ID: <1649606552.75.0.214270326482.issue219556@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33406 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue220082] making vars() more useful Message-ID: <1649606553.55.0.011524138442.issue220082@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33427 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221327] threads within an embedded python interpreter Message-ID: <1649606554.16.0.019481416725.issue221327@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33445 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue221121] Dynamic loading on Solaris does not work Message-ID: <1649606553.95.0.378514444813.issue221121@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33438 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219622] Python 2.0 compile errors ... Message-ID: <1649606552.84.0.484042367249.issue219622@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33408 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217158] String literal documentation is not up to date Message-ID: <1649606551.19.0.839713136938.issue217158@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33361 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402229] a better robotparser.py module Message-ID: <1649606554.03.0.159556094355.issue402229@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33441 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue220983] python2.0 dumps core in gc_list_remove Message-ID: <1649606553.58.0.267045368894.issue220983@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33428 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue219883] smtplib.py can leak file descriptors Message-ID: <1649606553.44.0.647790986938.issue219883@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33424 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221654] sre regex () groups have strong memory Message-ID: <1649606554.22.0.984244734731.issue221654@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33447 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402278] add tparm to _cursesmodule Message-ID: <1649606554.3.0.843257085804.issue402278@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33450 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221671] bad link David Ascher's compile.py script Message-ID: <1649606554.24.0.757279271176.issue221671@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33448 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221706] exceptions module cannot be imported in two interpreters Message-ID: <1649606554.32.0.064570336041.issue221706@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33451 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221930] Parameter mismatch exception tracebacks could be more helpfu Message-ID: <1649606554.43.0.115318853227.issue221930@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33455 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217278] re-opening of bug #117167 Message-ID: <1649606551.61.0.2235677038.issue217278@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33371 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402313] shar output support Message-ID: <1649606554.4.0.889918097261.issue402313@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33454 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue402223] --default-domain fix for Tools/i18n/pygettext.py Message-ID: <1649606553.87.0.439589410222.issue402223@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33435 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402231] Dynamic loading on Solaris does not work (bug #121121) Message-ID: <1649606554.06.0.490649716896.issue402231@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33442 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221208] Advanced email module Message-ID: <1649606554.12.0.953438046476.issue221208@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33444 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221965] 10 in xrange(10) returns 1 Message-ID: <1649606554.51.0.121051091771.issue221965@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33458 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue221013] Bug in .join() Message-ID: <1649606553.72.0.0828763609756.issue221013@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33431 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue222070] rfc822.py unprotected call to tell() fails in Win32 Message-ID: <1649606554.59.0.456528853192.issue222070@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33460 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402337] revised CALL_FUNCTION implementation Message-ID: <1649606554.55.0.530275148284.issue402337@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33459 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221951] webbrowser.open() generates AttributeError on Mac Message-ID: <1649606554.46.0.04853992616.issue221951@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33456 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221129] makesetup loop Message-ID: <1649606554.01.0.0903490869979.issue221129@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33440 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402356] Fix cthread support on Mac OS X Server Message-ID: <1649606554.75.0.286076955863.issue402356@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33466 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402357] Add support for frameworks and objective-c source. Uesful for both GnuStep and for OSXS/OSX/Darwin. Message-ID: <1649606554.77.0.026625332223.issue402357@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33467 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue216453] [Windows] TclError does not always produce error messages Message-ID: <1649606549.99.0.141893843811.issue216453@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33323 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402355] Fix fileobject.c on Mac OS X Server to support TELL64() Message-ID: <1649606554.72.0.0979832729821.issue402355@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33465 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue401972] Fix for lookbehind bug (#117242) Message-ID: <1649606551.53.0.501137211537.issue401972@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33368 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue222215] python will not build without --with-suffix on case insensitive filesystem Message-ID: <1649606554.81.0.594914652367.issue222215@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33469 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue217004] Tools/compiler does not create doc strings Message-ID: <1649606550.89.0.357840537636.issue217004@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33353 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402363] Allow Unicode in urllib Message-ID: <1649606554.85.0.528172508888.issue402363@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33471 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402364] Fix for119822: Allow Unicode in urllib Message-ID: <1649606554.87.0.0293835765288.issue402364@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33472 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217608] test_largefile crashes or IRIX 6 Message-ID: <1649606552.22.0.679674006602.issue217608@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33391 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222564] Some typo errors in Extending & Embedding Message-ID: <1649606555.11.0.847223018117.issue222564@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33480 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222562] Some typo errors in Extending & Embedding Message-ID: <1649606555.08.0.774461184959.issue222562@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33479 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217329] Compile Python 2.0 on BSDI BSD/OS 4.0.1 fails Message-ID: <1649606551.75.0.69646177283.issue217329@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33376 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue219450] dictionary values returns pointers when the value is a list Message-ID: <1649606552.6.0.288178474276.issue219450@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33402 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:29 +0000 Subject: [issue401824] On Darwin, remove unrecognized option `-OPT:Olimit=0' Message-ID: <1649606549.59.0.851698732907.issue401824@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33312 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: =?utf-8?q?=5Bissue222588=5D_xmllib_unable_to_parse_=22german_scharfes_?= =?utf-8?q?=C3=9F=22_in_UTF8_format?= Message-ID: <1649606555.19.0.233293046097.issue222588@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33483 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402354] Fix dynamic module linking on Mac OSX/OSXS Message-ID: <1649606554.7.0.167813502051.issue402354@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33464 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue402227] make BUILD_MAP use it's argument Message-ID: <1649606553.98.0.561082866902.issue402227@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33439 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue402409] Cygwin Python DLL and Shared Extension Patch Message-ID: <1649606555.21.0.539869821867.issue402409@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33484 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222684] Memory leak creating sub-interpreters Message-ID: <1649606555.31.0.00255063406519.issue222684@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33488 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222517] problems to compile 2.0 on IRIX 6.5 Message-ID: <1649606555.06.0.198821749551.issue222517@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33478 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222690] invalid default module path Message-ID: <1649606555.34.0.994717660935.issue222690@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33489 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222756] BaseHTTPServer subclass I/O call blocks forever Message-ID: <1649606555.44.0.801427621383.issue222756@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33492 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217508] Building 2.0 under Solaris 8 with GCC 2.95.2 fails to link Message-ID: <1649606552.08.0.115019717078.issue217508@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33387 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue402208] Allow jython to use StringIO.py without an errno module. Message-ID: <1649606553.79.0.195126169963.issue402208@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33433 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222780] msvcrt: locking constants aren't defined. Message-ID: <1649606555.48.0.573563600268.issue222780@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33493 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221672] Documentation which needs updating to 2.0 Message-ID: <1649606554.28.0.884466371023.issue221672@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33449 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue402169] Additional docs for __iadd__ hooks Message-ID: <1649606553.14.0.599034506529.issue402169@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33414 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222986] threading not ok with GNU pth - bis Message-ID: <1649606555.62.0.739875673041.issue222986@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33497 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue222176] Error in rotor module documentation Message-ID: <1649606554.79.0.155462233093.issue222176@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33468 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222985] threading not ok with GNU pth Message-ID: <1649606555.6.0.198074863837.issue222985@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33496 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue402477] DOM enhancements Message-ID: <1649606555.73.0.871649115915.issue402477@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33501 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue223261] string.split Message-ID: <1649606555.84.0.166719366834.issue223261@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33504 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue402492] minidom/pulldom: remove nodes already in the tree Message-ID: <1649606555.89.0.186214256623.issue402492@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33505 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue402498] imputil.py: uninstall method & import of .pyc-files Message-ID: <1649606555.92.0.24490718714.issue402498@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33506 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217195] Broken \ref link in documentation Message-ID: <1649606551.32.0.640763527421.issue217195@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33364 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue223409] Global Module Index up link does not work Message-ID: <1649606555.98.0.389588381113.issue223409@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33508 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue222395] readline() of codecs.StreamReader doesn't work for"utf-16le" Message-ID: <1649606554.99.0.526745099278.issue222395@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33476 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223616] compiler package needs better documentation. Message-ID: <1649606556.13.0.576218745479.issue223616@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33512 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223625] "authinfo" belongs before "mode reader" in nntplib.py Message-ID: <1649606556.2.0.811633726538.issue223625@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33513 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue222162] split is broken for unicode strings Message-ID: <1649606554.66.0.256674068534.issue222162@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33462 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue402548] fix for bug #121013 Message-ID: <1649606556.1.0.850913361836.issue402548@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33511 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223634] Pickle broken on Unicode strings Message-ID: <1649606556.32.0.283726494859.issue223634@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33516 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue402549] simpler, faster(!) implementation of string.join Message-ID: <1649606556.26.0.00218004608169.issue402549@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33514 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223694] String join of Unicode string crashes Message-ID: <1649606556.44.0.7846147747.issue223694@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33520 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue402553] Fix for handling jython's PyStringMap Message-ID: <1649606556.29.0.573845472917.issue402553@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33515 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: =?utf-8?q?=5Bissue222589=5D_xmllib_unable_to_parse_=22german_scharfes_?= =?utf-8?q?=C3=9F=22_in_UTF8_format?= Message-ID: <1649606555.17.0.322877677219.issue222589@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33482 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223520] Example code doesn't work Message-ID: <1649606556.0.0.888697274041.issue223520@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33509 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223685] bug in extension handling Py_RunSimpleFile Message-ID: <1649606556.42.0.671851326803.issue223685@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33519 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue402599] better errors for getsockaddrarg Message-ID: <1649606556.68.0.978954425432.issue402599@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33529 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223816] Can not install Python2.0 Message-ID: <1649606556.55.0.0284206871051.issue223816@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33524 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue402588] PEP 229: Use Distutils to build Message-ID: <1649606556.59.0.476926621585.issue402588@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33526 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:33 +0000 Subject: [issue219806] cgi.py uses too much memory on large file uploads Message-ID: <1649606553.28.0.32172275293.issue219806@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33418 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue224106] isinstance() doesn't *quite* work on ExtensionClasses Message-ID: <1649606556.84.0.183730516326.issue224106@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33533 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue224038] CGI : Uploaded file is whole stored in memory Message-ID: <1649606556.71.0.29581995648.issue224038@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33530 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222463] ./configure --help double trouble Message-ID: <1649606555.04.0.299790303682.issue222463@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33477 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223730] Extra backslash in web page Message-ID: <1649606556.49.0.865575030126.issue223730@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33522 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:31 +0000 Subject: [issue217464] clash with BSD db when building Message-ID: <1649606551.94.0.6013662639.issue217464@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33383 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue402628] Fixing bug 124120 -- filecmp.dircmp gives an error Message-ID: <1649606557.0.0.790714532084.issue402628@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33538 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue402613] __findattr__() Message-ID: <1649606556.89.0.961118661525.issue402613@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33535 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue402669] self of some string methods is incorrect type Message-ID: <1649606557.42.0.76221493377.issue402669@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33550 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue402469] Use glibc's getline() extension Message-ID: <1649606555.67.0.837505741639.issue402469@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33499 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue223045] httplib uses a case-sensitive comparision on HTTP-Version Message-ID: <1649606555.64.0.382583618555.issue223045@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33498 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue224060] Python 2.0 -- Problems with Unicode Translate Message-ID: <1649606556.82.0.842583277473.issue224060@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33532 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue402362] Support dynamic module loading under OSX [including support for modules w/Objective-C] Message-ID: <1649606554.83.0.235105496822.issue402362@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33470 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222715] __rcmp__() description Message-ID: <1649606555.36.0.558568325701.issue222715@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33490 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue402698] Fix for StreamReader bug Message-ID: <1649606557.9.0.118300596948.issue402698@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33561 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue224764] P_DETACH advertised but not supported Message-ID: <1649606557.75.0.00713182687952.issue224764@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33558 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue402715] Prototype for PEP 230 - warnings Message-ID: <1649606557.99.0.238450003321.issue402715@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33562 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue224572] Python 2.0 os.system() failure, Debian Linux 2.2.17, i686 Message-ID: <1649606557.31.0.806242425575.issue224572@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33547 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue224981] zlib decompress of sync-flushed data fails Message-ID: <1649606558.11.0.669200798814.issue224981@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33564 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue224943] NumPy URL update Message-ID: <1649606558.04.0.474074311543.issue224943@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33563 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223599] Need user-centered info for Windows users. Message-ID: <1649606556.04.0.959824036962.issue223599@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33510 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue402453] Modified urlencode in urllib to accept more types Message-ID: <1649606555.55.0.884512070959.issue402453@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33495 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225297] select([], [], [], 1) on Windows raises exception Message-ID: <1649606558.29.0.438735730939.issue225297@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33570 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225217] urllib2.py and proxies (Python 2.0) Message-ID: <1649606558.25.0.624432460333.issue225217@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33569 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222680] compile python 2.0 on irix 6.5 Message-ID: <1649606555.29.0.879680496373.issue222680@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33487 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402780] SET_LINENO for augassign Message-ID: <1649606558.36.0.188998928231.issue402780@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33571 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402733] {}.popitem() implementation Message-ID: <1649606558.18.0.26303590208.issue402733@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33566 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402794] trivial typo fix Message-ID: <1649606558.46.0.772187474073.issue402794@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33574 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225452] shlex.shlex hangs when parsing an unclosed quoted string Message-ID: <1649606558.5.0.567700138584.issue225452@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33575 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225003] Extension manual: Windows DLL/C++ info needs review Message-ID: <1649606558.14.0.829984688615.issue225003@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33565 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225473] Typo in LICENSE: developement Message-ID: <1649606558.52.0.71564646355.issue225473@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33576 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue222729] writable not writeable in asyncore Message-ID: <1649606555.41.0.401446343174.issue222729@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33491 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225476] Codec naming scheme and aliasing support Message-ID: <1649606558.57.0.0879801142615.issue225476@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33577 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225531] sre Scanner.scan typo (?) Message-ID: <1649606558.67.0.723993079957.issue225531@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33580 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402808] Export control for modules Message-ID: <1649606558.71.0.528693983094.issue402808@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33581 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402813] _cursesmodule: Add panel support Message-ID: <1649606558.78.0.877588107948.issue402813@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33582 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue224003] sys.path[0] is not the script directory Message-ID: <1649606556.65.0.566471760644.issue224003@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33528 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue402652] Reference implementation for PEP 208 (coercion) Message-ID: <1649606557.25.0.206239671778.issue402652@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33546 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue224051] ndiff bug: "?" lines are out-of-sync Message-ID: <1649606556.76.0.55689142343.issue224051@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33531 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402827] Fix for PR#119558: bsddb.c: check return from malloc Message-ID: <1649606558.94.0.91357936598.issue402827@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33588 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225719] malloc() is called when _PyThreadState_Current is NULL Message-ID: <1649606558.91.0.0497709959749.issue225719@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33587 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225610] SuppReq: please elaborate on your email notif. requests Message-ID: <1649606558.85.0.799981299716.issue225610@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33584 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225489] fpectl module is undocumented Message-ID: <1649606558.6.0.802300755815.issue225489@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33578 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223695] xml.sax.handler.ContentHandler.characters() not SAX2 Message-ID: <1649606556.46.0.105149521895.issue223695@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33521 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225744] httplib does not check if port is valid (easy to fix?) Message-ID: <1649606558.96.0.365175077618.issue225744@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33589 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue221887] new.function, 3rd arg: can it be None or not? Message-ID: <1649606554.38.0.0805896111411.issue221887@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33453 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402847] fix a memory leak Message-ID: <1649606559.04.0.928894965577.issue402847@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33592 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225775] Calculations are wrong Message-ID: <1649606559.0.0.0724291285532.issue225775@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33590 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue225860] Kill the hard disk Message-ID: <1649606559.09.0.54232296874.issue225860@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33594 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223769] sre bug for non-greedy match Message-ID: <1649606556.51.0.292183821806.issue223769@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33523 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue225808] Fiddling builtin str flips out re.sub Message-ID: <1649606559.02.0.885173463609.issue225808@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33591 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue225891] windows popen4 crashes python when not closed correctly Message-ID: <1649606559.12.0.285679908671.issue225891@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33596 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue225933] warnings framework documentation Message-ID: <1649606559.21.0.990057830263.issue225933@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33599 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402817] Fix for #124782:Always check for C++ compiler Message-ID: <1649606558.87.0.946986963168.issue402817@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33585 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402863] another memory leak Message-ID: <1649606559.23.0.115562307902.issue402863@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33600 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue224120] filecmp.dircmp crashes with TypeError Message-ID: <1649606556.87.0.765288101734.issue224120@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33534 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402864] prototype closure implementation (PEP 227) Message-ID: <1649606559.25.0.202530787319.issue402864@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33601 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402802] Support new gdbm flags Message-ID: <1649606558.62.0.458898208779.issue402802@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33579 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue223225] asyncore.py should use select.poll(), not "import poll" Message-ID: <1649606555.77.0.283673090635.issue223225@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33502 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402875] Make socket close thread safe Message-ID: <1649606559.3.0.495731463915.issue402875@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33603 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223642] Add site-codecs package to enable drop-in codec support Message-ID: <1649606556.37.0.446207162177.issue223642@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33517 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue225981] socket close is not thread safe Message-ID: <1649606559.32.0.668375029737.issue225981@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33604 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217556] Python 2.0 regression fails on test_pyexpat. Message-ID: <1649606552.17.0.129273128303.issue217556@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33389 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue225989] cmp() broken on instances Message-ID: <1649606559.34.0.292139692081.issue225989@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33605 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402891] Alternative readline module Message-ID: <1649606559.41.0.0543734066317.issue402891@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33608 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue226254] Traceback objects not properly garbage-collected Message-ID: <1649606559.47.0.718777367626.issue226254@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33610 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402915] xreadlines : readlines :: xrange : range Message-ID: <1649606559.56.0.444331901319.issue402915@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33612 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402925] Add new function gc.getreferents Message-ID: <1649606559.6.0.0594175526798.issue402925@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33613 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402939] Fix for 126345:Garbage collection for modules Message-ID: <1649606559.69.0.938707752363.issue402939@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33616 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue402678] Let SocketServer reuse addresses Message-ID: <1649606557.51.0.783747341366.issue402678@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33552 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue226351] urlparse.scheme_chars and string.letters Message-ID: <1649606559.66.0.398375810549.issue226351@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33615 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue402637] A patch for gdbmmodule.c Message-ID: <1649606557.13.0.994190513395.issue402637@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33542 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:30 +0000 Subject: [issue216850] Bad comment in Setup.in Message-ID: <1649606550.71.0.166584438034.issue216850@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33348 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402953] [Bug #125452 ] shlex.shlex hangs Message-ID: <1649606559.76.0.279966081546.issue402953@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33619 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402940] Use only printable Unicode chars in reporting % errors Message-ID: <1649606559.71.0.369203884143.issue402940@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33617 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:35 +0000 Subject: [issue223166] Python20 installation overwrite a newer pdh.dll Message-ID: <1649606555.7.0.0142543115317.issue223166@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33500 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue402681] issubclass() and isinstance() error messages Message-ID: <1649606557.6.0.618988490035.issue402681@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33554 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue226510] Python 2.0: raw string, backslash in not handled correct Message-ID: <1649606559.83.0.310913286193.issue226510@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33621 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402955] bltinmodule.c warning fix Message-ID: <1649606559.81.0.547062921009.issue402955@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33620 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400506] fix arraymodule for overflow checking Message-ID: <1649606577.0.0.743420708144.issue400506@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400507] Fix for bug PR#341 (string formatting overflow) Message-ID: <1649606577.02.0.75707827752.issue400507@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225391] Associativity of exponentiation documented incorrectly Message-ID: <1649606558.42.0.323689160261.issue225391@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33573 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400510] largefile support for Win64 (and some other fixes) Message-ID: <1649606577.13.0.607510995838.issue400510@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue225880] TeX source found in PDF contents list Message-ID: <1649606559.11.0.486371255613.issue225880@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33595 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400514] fix Sleep() overflow condition in time module Message-ID: <1649606577.32.0.604951954088.issue400514@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue402630] Don't raise TypeError from isinstance Message-ID: <1649606557.02.0.387938731912.issue402630@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33539 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue402852] Make % error a bit more informative Message-ID: <1649606559.07.0.797742196288.issue402852@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33593 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue402746] strip \n so that Unix and Windows dbs are interoperable Message-ID: <1649606558.22.0.541461824133.issue402746@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33568 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400515] fix mmap module (broken seek, 64-bit stuff, overflows) Message-ID: <1649606577.34.0.122090249069.issue400515@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue224629] urllib2.CustomProxyHandler has invalid code sequence Message-ID: <1649606557.39.0.0565915819844.issue224629@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33549 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400516] fix socket module for 64-bits (mostly Win64) Message-ID: <1649606577.38.0.633509453927.issue400516@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400522] simple 64-bit fixes in Objects/ dir Message-ID: <1649606577.51.0.153200142106.issue400522@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400518] fix bltinmodule.c for 64-bit platforms Message-ID: <1649606577.44.0.907041623368.issue400518@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400517] fix up msvcrtmodule.c and winreg.c for Win64 Message-ID: <1649606577.41.0.797584015756.issue400517@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400519] fix possible overflow in select() Message-ID: <1649606577.46.0.968549651176.issue400519@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400525] simple 64-bit fixes in PC/ dir Message-ID: <1649606577.61.0.707518964028.issue400525@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400533] Distutils directory cache bug fix Message-ID: <1649606577.69.0.0214300760758.issue400533@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue207608] 'python -U' breaks eval/exec Message-ID: <1649606577.77.0.854624845593.issue207608@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400545] pindent: add functionality to remove #END tags Message-ID: <1649606577.73.0.191370536257.issue400545@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400527] fix simple 64-bit warnings/errors in signalmodule.c Message-ID: <1649606577.67.0.71532809928.issue400527@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:36 +0000 Subject: [issue223924] Windows - using OpenSSL, problem with socket in httplib.py Message-ID: <1649606556.63.0.340933035093.issue223924@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33527 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400622] Just a test Message-ID: <1649606577.9.0.629499289793.issue400622@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400637] get rid of warning in pythonrun.c Message-ID: <1649606577.93.0.495901147661.issue400637@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400641] suggested Doc-changes for openpty/forkpty patch. Message-ID: <1649606578.03.0.445810324148.issue400641@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400643] \N{...} Unicode Charachter Name Expansion patch Message-ID: <1649606578.09.0.247636259083.issue400643@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400640] Add support for openpty(3) and forkpty(3), when available. Message-ID: <1649606578.0.0.573215729524.issue400640@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400646] Better error for "1 in unicodestring" Message-ID: <1649606578.14.0.782313943652.issue400646@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400642] \N{...} Unicode Charachter Name Expansion patch Message-ID: <1649606578.06.0.272204159868.issue400642@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400648] GC patch 3 (gc disabled) Message-ID: <1649606578.16.0.623267900551.issue400648@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400650] SRE: pickling support Message-ID: <1649606578.23.0.233658682335.issue400650@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400649] GC patch 4 (gc enabled support) Message-ID: <1649606578.2.0.707458515727.issue400649@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400651] Improved complex acosh and asinh functions Message-ID: <1649606578.28.0.799118246409.issue400651@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue208381] Win32 os.listdir raises confusing errors Message-ID: <1649606578.11.0.36649751427.issue208381@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:39 +0000 Subject: [issue226564] Default of static linking 'bsddb' breaks 3rd party modules Message-ID: <1649606559.91.0.835846096782.issue226564@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33623 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400653] Fix error checking for instances with in_dict == NULL Message-ID: <1649606578.3.0.697516597716.issue400653@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400656] adds CVS files to sdist.prune_file_list() Message-ID: <1649606578.39.0.0691810398342.issue400656@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400654] list comprehensions in Python (for 2.0) Message-ID: <1649606578.32.0.48825946561.issue400654@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400657] SRE: towards 1.6b1 Message-ID: <1649606578.43.0.616814915418.issue400657@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400659] Allows sdist to work with old-style extensions Message-ID: <1649606578.47.0.410158270026.issue400659@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400658] SRE: towards 1.6b1 Message-ID: <1649606578.45.0.26594574091.issue400658@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400660] Update examples to use new-style extensions Message-ID: <1649606578.52.0.0695943716008.issue400660@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400665] Support for conditional inclusion of methods and functions Message-ID: <1649606578.61.0.488924334486.issue400665@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400666] Removed Macintosh tab-guessing code Message-ID: <1649606578.63.0.468966546752.issue400666@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400661] Typo's in the std distrib by Rob W. W. Hooft Message-ID: <1649606578.55.0.125735799162.issue400661@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400668] Mac Carbon: don't include sys/types if we don't have it Message-ID: <1649606578.7.0.893793890563.issue400668@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400645] remove a core dump in marshal on recursive object Message-ID: <1649606578.12.0.596320030715.issue400645@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400673] minor fix to make 1.6 compile under MSVC 5.0 Message-ID: <1649606578.79.0.776983681463.issue400673@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400670] Use include "" in stead of <> and staticforward declarations Message-ID: <1649606578.74.0.231809163607.issue400670@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400674] ucnhash staticforward, "" vs <> generation patch Message-ID: <1649606578.81.0.23390925147.issue400674@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:56 +0000 Subject: [issue400503] fix hashing Message-ID: <1649606576.93.0.477223065441.issue400503@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400683] randomize test execution order in regrtest.py Message-ID: <1649606578.87.0.243719670806.issue400683@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400684] cycle-gc help unaligned in configure Message-ID: <1649606578.9.0.972969912768.issue400684@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400686] xml package not installed Message-ID: <1649606578.97.0.819289976626.issue400686@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400685] conversion.xml illformed Message-ID: <1649606578.93.0.639345569057.issue400685@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400688] Add 'isatty(fd)' to posixmodule. Message-ID: <1649606579.02.0.244433596287.issue400688@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400689] If we have stat.h include it if we don't have sys/stat.h Message-ID: <1649606579.06.0.0216793295009.issue400689@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400687] Fixes for freeze on 1.6 (mostly win32) Message-ID: <1649606578.99.0.887029105042.issue400687@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400694] Include limits.h if we have it. Message-ID: <1649606579.14.0.754781414248.issue400694@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400696] Test script for Lib/pty.py Message-ID: <1649606579.16.0.551952543953.issue400696@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400693] Include stat.h if needed; different Mac filename compare Message-ID: <1649606579.12.0.637530928138.issue400693@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400697] Test script for openpty() Message-ID: <1649606579.19.0.872049057158.issue400697@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400712] Use Python 2 features in string module Message-ID: <1649606579.44.0.128739281112.issue400712@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400699] Augmented Assignment, the Python Way (huge) Message-ID: <1649606579.24.0.774780545735.issue400699@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400700] RADIUS authentication module Message-ID: <1649606579.27.0.388824931829.issue400700@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400718] Prefer LinuxThreads, if available, over Pth Message-ID: <1649606579.5.0.69845163967.issue400718@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400706] minidom __repr__ returns Unicode strings Message-ID: <1649606579.35.0.260283410272.issue400706@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400707] Improvement in shlex sourcing facility Message-ID: <1649606579.4.0.0966650880386.issue400707@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400719] Use '#!/usr/bin/env python' in scripts Message-ID: <1649606579.53.0.0934402896403.issue400719@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400669] Moved includes to the top, removed think C support Message-ID: <1649606578.72.0.770891161212.issue400669@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:32 +0000 Subject: [issue217691] Unable to run windows installer in windows 2000 Message-ID: <1649606552.39.0.795135585069.issue217691@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33396 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400722] Move sgi._getpty() into posix.openpty() Message-ID: <1649606579.62.0.696951761961.issue400722@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400705] Supporting PyXML Message-ID: <1649606579.31.0.754024568128.issue400705@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400723] make unicode_compare a UTF-16 code point order comparison fu Message-ID: <1649606579.65.0.447195560031.issue400723@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400729] Make python-mode not insert tabs by default. Message-ID: <1649606579.68.0.602693357232.issue400729@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400720] We don't want to link with libnet on non-BeOS systems Message-ID: <1649606579.59.0.620689997182.issue400720@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400737] -Wall fixes for gcmodule.c Message-ID: <1649606579.82.0.411794067691.issue400737@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400739] add history file functions for Modules/readline.c Message-ID: <1649606579.91.0.418191209909.issue400739@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400740] gzip: readline(), readlines() patch Message-ID: <1649606579.94.0.17439315797.issue400740@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400741] dumbdbm: Update bug Message-ID: <1649606579.98.0.545646095418.issue400741@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400680] caveat about use of atexit.py Message-ID: <1649606578.85.0.887292355989.issue400680@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400742] readline history read/write Message-ID: <1649606580.01.0.365892787681.issue400742@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400667] Removed support for long-dead Think C compiler Message-ID: <1649606578.65.0.551186381307.issue400667@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400759] range-lists: [1:10] (relative to list comprehensions patch) Message-ID: <1649606580.13.0.61579310276.issue400759@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400613] clean up warnings in Win32 build of mmapmodule.c Message-ID: <1649606577.85.0.00470057422843.issue400613@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400745] Fix PR #384, fixes UTF-8 en/decode Message-ID: <1649606580.05.0.529411812354.issue400745@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400763] posixmodule.c: ANSI-fying, indentation Message-ID: <1649606580.23.0.0577563306846.issue400763@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400762] mmapmodule.c: ANSI-fying, indentation, names Message-ID: <1649606580.21.0.147021346058.issue400762@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400761] _sre.c: indentation, ParseTuple method names Message-ID: <1649606580.19.0.688478597263.issue400761@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400767] cursesmodule: ANSI-fication, s/arg/args/ Message-ID: <1649606580.29.0.544782567899.issue400767@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400765] proposed changes to the locale.py interface Message-ID: <1649606580.27.0.586986702222.issue400765@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400770] socketmodule: ANSI-fication Message-ID: <1649606580.35.0.428854928534.issue400770@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400772] tclNotify: ANSI-fication Message-ID: <1649606580.38.0.420602706052.issue400772@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400773] arraymodule: ANSI-fication (some arrayobject->PyObject) Message-ID: <1649606580.4.0.158189772572.issue400773@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400768] stropmodule: ANSI-fication Message-ID: <1649606580.32.0.73043914068.issue400768@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400769] almodule: ANSI-fication (UNTESTED!) Message-ID: <1649606580.33.0.838777967436.issue400769@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400771] _tkinter: getting rid of two unused variables Message-ID: <1649606580.37.0.162640227627.issue400771@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400774] audioop: ANSI-fication (compiles fine, but UNTESTED!) Message-ID: <1649606580.42.0.66748035332.issue400774@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400776] bsddbmodule: ANSI-fication Message-ID: <1649606580.46.0.687718894612.issue400776@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:57 +0000 Subject: [issue400638] Doc strings added by Nils Fischbeck Message-ID: <1649606577.96.0.353397852496.issue400638@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400764] fix to make os.popen work under pythonw.exe Message-ID: <1649606580.25.0.164437151417.issue400764@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400780] cmathmodule: ANSI-fication Message-ID: <1649606580.53.0.0109481091612.issue400780@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400781] cryptmodule: ANSI-fication Message-ID: <1649606580.55.0.902483375329.issue400781@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400783] dlmodule: ANSI-fication Message-ID: <1649606580.6.0.421762739439.issue400783@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400784] errnomodule: ANSI-fication Message-ID: <1649606580.62.0.885340909638.issue400784@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400749] Fix -Wall-warnings in socket, classobject.c and object.c Message-ID: <1649606580.07.0.425752110582.issue400749@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400738] add history file functions for Modules/readline.c Message-ID: <1649606579.87.0.39859093898.issue400738@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:58 +0000 Subject: [issue400672] modify test_socket.py to listen/connect using loopback addr Message-ID: <1649606578.76.0.86339900957.issue400672@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400786] flmodule: ANSI-fication Message-ID: <1649606580.65.0.1907767786.issue400786@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400785] fcntlmodule: ANSI-fication Message-ID: <1649606580.64.0.0970785609005.issue400785@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400787] fmmodule: ANSI-fication Message-ID: <1649606580.66.0.605690177037.issue400787@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400788] Fix os.path.commonprefix to work by directory components Message-ID: <1649606580.68.0.149727975899.issue400788@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400793] imgfile: ANSI-fication (UNTESTED!) Message-ID: <1649606580.92.0.295516622369.issue400793@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400791] glmodule: ANSI-fication (UNTESTED!) Message-ID: <1649606580.9.0.507696900368.issue400791@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400796] md5module: ANSI-fication Message-ID: <1649606580.98.0.186782830525.issue400796@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400797] md5.h: ANSI-fication, remove of PROTO_LIST Message-ID: <1649606580.99.0.859781590062.issue400797@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400799] newmodule: ANSI-fication Message-ID: <1649606581.02.0.175771180549.issue400799@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400795] md5c: ANSI-fication Message-ID: <1649606580.96.0.666038273387.issue400795@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400800] nismodule: ANSI-fication Message-ID: <1649606581.03.0.232217883849.issue400800@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400801] parsermodule: ANSI-fication Message-ID: <1649606581.05.0.303673970027.issue400801@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400730] UserList/UserString: Do creation of new instance in new func Message-ID: <1649606579.72.0.849691671813.issue400730@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400803] puremodule: ANSI-fication (UNTESTED!) Message-ID: <1649606581.08.0.765740546533.issue400803@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400802] pcremodule: ANSI-fication Message-ID: <1649606581.07.0.4559264186.issue400802@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400798] mpz: +ANSI (added 1 MPZ_CONVERSION_AS_METHOD ifdef) Message-ID: <1649606581.0.0.8088070186.issue400798@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400805] Modules/python.c: ANSI-fication (sorry, couldln't resist) Message-ID: <1649606581.12.0.0464482017055.issue400805@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400807] regexmodule: ANSI-fication Message-ID: <1649606581.16.0.323265890549.issue400807@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400808] regexpr: ANSI-fication Message-ID: <1649606581.18.0.620284944232.issue400808@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400810] rgbimgmodule: ANSI-fication Message-ID: <1649606581.21.0.929197246608.issue400810@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400814] signalmodule: ANSI-fication Message-ID: <1649606581.28.0.183335168366.issue400814@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400811] rotormodule: ANSI-fication Message-ID: <1649606581.23.0.552438011164.issue400811@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400813] sgimodule: ANSI-fication Message-ID: <1649606581.26.0.87216138535.issue400813@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400792] imageop: ANSI-fication Message-ID: <1649606580.91.0.757823649247.issue400792@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400819] syslogmodule: ANSI-fication Message-ID: <1649606581.35.0.56976887224.issue400819@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400812] selectmodule: ANSI-fication Message-ID: <1649606581.25.0.896855693211.issue400812@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400820] termios: ANSI-fication Message-ID: <1649606581.36.0.856620100514.issue400820@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400818] svmodule: ANSI-fication (UNTESTED!) Message-ID: <1649606581.33.0.717592232515.issue400818@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400823] timingmodule: ANSI-fication Message-ID: <1649606581.4.0.350543238577.issue400823@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400822] timemodule: ANSI-fication Message-ID: <1649606581.39.0.191057234909.issue400822@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400806] readline: ANSI-fication Message-ID: <1649606581.14.0.992647866282.issue400806@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400826] zlibmodule: ANSI-fication (hopefully last for Modules/) Message-ID: <1649606581.45.0.495285981267.issue400826@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400825] xxmodule: ANSI-fication Message-ID: <1649606581.43.0.982173861967.issue400825@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400831] correcting documentaion for in and not in Message-ID: <1649606581.46.0.560015285987.issue400831@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:59 +0000 Subject: [issue400692] Include limits.h if we have it. Message-ID: <1649606579.09.0.133687234184.issue400692@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400821] threadmodule: ANSI-fication Message-ID: <1649606581.38.0.736222648311.issue400821@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400832] Patch configure.in to check for right-shift zero-fill Message-ID: <1649606581.49.0.869255029069.issue400832@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400836] Trivial fix to stop a compiler warning. Message-ID: <1649606581.55.0.935004051632.issue400836@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400837] urllib patch to simplify POST form query Message-ID: <1649606581.57.0.517178339725.issue400837@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400841] Add 'parallel for-oop': for x in a; y in b; z in c: <...> Message-ID: <1649606581.61.0.158565255067.issue400841@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400835] PC/config.h: support for gnu-win32 and lcc-win32 Message-ID: <1649606581.52.0.272682051022.issue400835@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400844] Tools/scripts/pindent.py: add expandtabs, change to delete Message-ID: <1649606581.66.0.325777488576.issue400844@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400850] compile_funcdef: raise error on duplicate arguments Message-ID: <1649606581.72.0.484417496654.issue400850@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400851] traceback.py, with unicode exceptions Message-ID: <1649606581.76.0.562576867591.issue400851@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400852] Add poll() to select module Message-ID: <1649606581.8.0.77883374198.issue400852@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400849] _sre & socketmodule: get rid of an ANSI problem/a warning Message-ID: <1649606581.68.0.556115451138.issue400849@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400854] eliminate compiler warnings in pyexpat Message-ID: <1649606581.86.0.364041517845.issue400854@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400857] fix pointer mismatch warnings in socketmodule.c (Jul 12) Message-ID: <1649606581.93.0.051410934986.issue400857@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400856] Enhanced SyntaxError patch Message-ID: <1649606581.91.0.550733156495.issue400856@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400744] 32-bit integer typedef for use by UTF-16 code Message-ID: <1649606580.03.0.918480450089.issue400744@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400858] From Medusa: add seteuid, setegid, ... to posixmodule Message-ID: <1649606581.96.0.664364874768.issue400858@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:00 +0000 Subject: [issue400794] Modules/main: ANSI-fication Message-ID: <1649606580.94.0.62325165029.issue400794@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400863] Add PyFileDescriptor_FromIntOrObject to fileobject.c Message-ID: <1649606581.99.0.649305295485.issue400863@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400868] refactoring of the code in shutil.copyfile Message-ID: <1649606582.04.0.0733345513799.issue400868@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400869] exceptions in _PyImport_Inittab Message-ID: <1649606582.07.0.407977278759.issue400869@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400871] document new method in shutil (copyfileobj) Message-ID: <1649606582.11.0.45567004823.issue400871@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400872] change SimpleHTTPServer to use copyfileobj to copy files Message-ID: <1649606582.15.0.472899887639.issue400872@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400873] Use registry to find proxies for urllib on Win32 Message-ID: <1649606582.17.0.434263499096.issue400873@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400874] Better error message with UnboundLocalError Message-ID: <1649606582.23.0.611301126587.issue400874@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400880] urllib.py patch Message-ID: <1649606582.26.0.894196200466.issue400880@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400888] Fix UCNs machine with >= 32bit longs Message-ID: <1649606582.31.0.563060273793.issue400888@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400890] findall function in sdist.py chokes on broken links Message-ID: <1649606582.35.0.913433045906.issue400890@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400895] safe version of PyErr_Format Message-ID: <1649606582.43.0.589999373676.issue400895@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400900] POssible fix for posixpath.normpath Message-ID: <1649606582.52.0.578066523903.issue400900@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400899] a smaller unicode name database Message-ID: <1649606582.49.0.0909292405068.issue400899@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400908] Typos, non doc & non distutils Message-ID: <1649606582.63.0.416717181262.issue400908@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400913] Optional pad character (or string) for rjust, ljust Message-ID: <1649606582.69.0.563296297073.issue400913@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400907] Typos distutils Message-ID: <1649606582.61.0.643077841123.issue400907@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400926] StaError messages for Winsock errors. Message-ID: <1649606582.75.0.93119701557.issue400926@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400931] fix for posixpath.normpath -- competitor to 100900 Message-ID: <1649606582.83.0.73135404743.issue400931@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400933] base64: move "def test()" into "if __main__" program Message-ID: <1649606582.85.0.028068875802.issue400933@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400842] better error message for unicode coercian failure Message-ID: <1649606581.64.0.327989917141.issue400842@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400884] arraymodule: adding count, extend, index, pop, remove Message-ID: <1649606582.29.0.0930026585443.issue400884@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400955] ptags, eptags: regex->re, 4 char indent. Message-ID: <1649606583.08.0.637580934514.issue400955@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400817] sunaudiodev: ANSI-fication (UNTESTED!) Message-ID: <1649606581.31.0.261930959016.issue400817@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400938] [Draft] libpython as shared library (.so) on Linux Message-ID: <1649606582.89.0.105445975914.issue400938@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400960] ANSIfy Python/thread_nt.h Message-ID: <1649606583.22.0.0977881567698.issue400960@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400956] freeze: docs contain some references to python15.dll. Message-ID: <1649606583.13.0.501370588739.issue400956@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400970] extended print statement Message-ID: <1649606583.31.0.820295395843.issue400970@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400958] ANSIfy Python/thread_foobar.h Message-ID: <1649606583.18.0.639772007589.issue400958@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400979] support for out-of-tree "make TAGS" Message-ID: <1649606583.45.0.72274020513.issue400979@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400994] Allow JPython to use more tests Message-ID: <1649606583.52.0.134400576878.issue400994@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400804] pwdmodule: ANSI-fication Message-ID: <1649606581.11.0.797669520104.issue400804@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue210386] pdb exception reports too severely truncated Message-ID: <1649606583.63.0.372318316229.issue210386@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue210587] bug (Incorrect signal processing) - Python 1.5.2 Message-ID: <1649606583.85.0.504637151757.issue210587@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue401030] new zip() builtin Message-ID: <1649606583.81.0.386986167057.issue401030@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue401029] Call __getitem__ for slices when no __getslice__ Message-ID: <1649606583.79.0.0258111100693.issue401029@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:01 +0000 Subject: [issue400816] structmodule: ANSI-fication Message-ID: <1649606581.3.0.912235223074.issue400816@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400962] Fix \n's in string literals in pyexpat.c - compile error Message-ID: <1649606583.24.0.931566643485.issue400962@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue210592] "Fix" os.system() on Windows (PR#406) Message-ID: <1649606583.92.0.378810433047.issue210592@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue401022] Removal of SET_LINENO (experimental) Message-ID: <1649606583.73.0.678975312498.issue401022@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue210590] this is a test Message-ID: <1649606583.9.0.87240097033.issue210590@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210600] python 1.5.2 coredump (repost). (PR#113) Message-ID: <1649606584.04.0.807899966117.issue210600@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210601] expert on extension modules and multiple interpreters? (PR#125) Message-ID: <1649606584.06.0.20835318158.issue210601@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210603] Tkinter winfo_visualsavailable method (PR#156) Message-ID: <1649606584.12.0.351383395109.issue210603@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210607] Telnet close (PR#181) Message-ID: <1649606584.22.0.580350024152.issue210607@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:38 +0000 Subject: [issue225375] parser.tuple2ast() failure on valid parse tree Message-ID: <1649606558.4.0.503341335892.issue225375@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33572 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210609] Operator breakage with long int operands (PR#187) Message-ID: <1649606584.31.0.127867973121.issue210609@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400959] ANSIfy Python/thread_lwp.h Message-ID: <1649606583.2.0.181806985763.issue400959@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210611] Signal processing bug (Linux threads, readline, whatever else) (PR#196) Message-ID: <1649606584.39.0.510881268875.issue210611@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400946] ConfigParser fixes Message-ID: <1649606582.98.0.169824596344.issue400946@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210615] another unbounded recursion bug Message-ID: <1649606584.52.0.314552739619.issue210615@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210614] illegal argument type for built-in operation (PR#204) Message-ID: <1649606584.51.0.289010911785.issue210614@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210613] makesetup support for RPATH (PR#202) Message-ID: <1649606584.48.0.544268843546.issue210613@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210616] source file stays open after parsing is done (PR#209) Message-ID: <1649606584.54.0.608486256311.issue210616@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210618] IDLE: Modifying argv prevents source of ~/.idle.py (PR#219) Message-ID: <1649606584.58.0.34809934162.issue210618@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210621] rfc822.py module - address parsing problem (PR#235) Message-ID: <1649606584.65.0.797025030324.issue210621@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210620] configure problem: libieee with Linux/glibc2 ? (PR#224) Message-ID: <1649606584.64.0.11711051034.issue210620@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210622] pdb bug (PR#236) Message-ID: <1649606584.67.0.08905002177.issue210622@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210619] urllib.py fails with username/password proxies (PR#221) Message-ID: <1649606584.6.0.9671208092.issue210619@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210624] float("1.0e-309") inconsistency (PR#245) Message-ID: <1649606584.72.0.785215352803.issue210624@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210623] build on NeXTStep (PR#240) Message-ID: <1649606584.69.0.388993007814.issue210623@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue401006] fix mmapmodule test failures Message-ID: <1649606583.65.0.391592714854.issue401006@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210628] Python 1.6a1 - Poor diagnostic (PR#278) Message-ID: <1649606584.92.0.937067119499.issue210628@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210631] Debugger does not understand packages (PR#283) Message-ID: <1649606585.02.0.252295511747.issue210631@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210630] Unicode and % operator (PR#281) Message-ID: <1649606584.99.0.660650645584.issue210630@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:34 +0000 Subject: [issue222327] 0.1 + 0.1 = 0.20000000000000001 Message-ID: <1649606554.97.0.68991144153.issue222327@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33475 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210633] urlparse (PR#286) Message-ID: <1649606585.08.0.807116275689.issue210633@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210636] prefix directory (PR#293) Message-ID: <1649606585.18.0.888429982103.issue210636@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400902] range-literals, not relative to listcomprehensions Message-ID: <1649606582.55.0.869899089846.issue400902@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210635] test_signal hangs when running as part of testall (PR#288) Message-ID: <1649606585.15.0.96197111636.issue210635@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210640] 1.6a2 issues with int/long on 64bit platforms - eg stringobject (PR#306) Message-ID: <1649606585.33.0.673457280186.issue210640@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210638] Invalid use of PyMem_DEL (PR#295) Message-ID: <1649606585.29.0.479998811102.issue210638@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210643] compiling long strings crashes (PR#32) Message-ID: <1649606585.42.0.372813260817.issue210643@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210645] XMLLIB, JPython and re (PR#328) Message-ID: <1649606585.5.0.352610373648.issue210645@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210646] threads (PR#333) Message-ID: <1649606585.52.0.175594749188.issue210646@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400963] Fix has_key in _cursesmodule.c for linking on Tru64 Unix Message-ID: <1649606583.26.0.371010409028.issue400963@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210647] Segmentation violation on very long lists (PR#334) Message-ID: <1649606585.56.0.335682065902.issue210647@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210648] performance-problem decoding quoted-printable (PR#340) Message-ID: <1649606585.59.0.378328092698.issue210648@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210649] %.1200d will make Python segfault (PR#341) Message-ID: <1649606585.63.0.955050553082.issue210649@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210652] input() in IDLE (PR#344) Message-ID: <1649606585.74.0.747240948696.issue210652@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210655] getpass.getpass on Windows (PR#349) Message-ID: <1649606585.8.0.701100821121.issue210655@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210637] ihooks on windows and pythoncom (PR#294) Message-ID: <1649606585.22.0.871369129333.issue210637@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210658] W2k and pyton 1.5 (PR#353) Message-ID: <1649606585.89.0.592888038699.issue210658@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210659] IDLE-0.5 copy command (PR#354) Message-ID: <1649606585.9.0.533913918153.issue210659@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue210597] test_fork1 hangs with 1.6a2 on Linux (PR#296) Message-ID: <1649606583.96.0.884480592069.issue210597@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210634] CR/LF line endings in _sre.c sre.h sre_constants.h (PR#287) Message-ID: <1649606585.1.0.645075968945.issue210634@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210662] rfc822 (PR#358) Message-ID: <1649606586.0.0.812943768266.issue210662@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400957] ANSIfy Python/thread_cthread.h Message-ID: <1649606583.16.0.227433723456.issue400957@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210669] Tkinter: widget.bind('sequence') incorrect (PR#368) Message-ID: <1649606586.3.0.409655640663.issue210669@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210668] Python1.6 and wxPython incompatibility (PR#366) Message-ID: <1649606586.28.0.289770024004.issue210668@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210665] Compiling python on hpux 11.00 with threads (PR#360) Message-ID: <1649606586.1.0.423762130847.issue210665@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210671] Tk-based widgets misbehave with dead keys (PR#376) Message-ID: <1649606586.33.0.354017212162.issue210671@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210663] getpass() echo password input (PR#359) Message-ID: <1649606586.04.0.7117830867.issue210663@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210676] fd.readlines() hangs (via popen3) (PR#385) Message-ID: <1649606586.53.0.722302375064.issue210676@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210677] PRIVATE: various minor Tkinter things (PR#388) Message-ID: <1649606586.58.0.49495520929.issue210677@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue401010] replace use of INT_PTR with uintptr_t (fix MSVC 5.0 build) Message-ID: <1649606583.67.0.230637043825.issue401010@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210678] rfc822.Message getaddr method bug (PR#39) Message-ID: <1649606586.6.0.357319031858.issue210678@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210675] Pth: test_fork1 fails, test_thread slow (PR#383) Message-ID: <1649606586.48.0.70299417809.issue210675@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210680] bad pos value on match object (PR#397) Message-ID: <1649606586.66.0.891029839248.issue210680@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210681] memory leak in loops (PR#398) Message-ID: <1649606586.69.0.599300423273.issue210681@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210686] cStringIO lacks the readlines method (PR#409) Message-ID: <1649606586.93.0.87128116769.issue210686@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210667] select module: Bug in select.select() (PR#365) Message-ID: <1649606586.23.0.653796852429.issue210667@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210617] IDLE and -t (PR#213) Message-ID: <1649606584.55.0.349871739603.issue210617@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:05 +0000 Subject: [issue210656] IDLE goto file/line (PR#352) Message-ID: <1649606585.85.0.514567367919.issue210656@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210689] PRIVATE: Extra space bug in readline/rlcompleter/raw_input? (PR#45) Message-ID: <1649606587.0.0.583499798506.issue210689@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210690] Bug in os.environ for Windows (PR#50) Message-ID: <1649606587.05.0.73134749214.issue210690@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210691] popen2 and socket. (PR#53) Message-ID: <1649606587.09.0.323411880819.issue210691@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210672] pythonlib.a makes SIGSEGV with LD_PRELOAD variable (PR#378) Message-ID: <1649606586.37.0.744199318021.issue210672@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400990] disable partial UTF-16 support in unicodeobject.c Message-ID: <1649606583.49.0.585911860509.issue400990@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210695] complexobject.c optimization error on SGI (PR#144) Message-ID: <1649606587.2.0.715696113239.issue210695@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210692] urllib.URLopener does not work with proxies (PR#67) Message-ID: <1649606587.13.0.37521818579.issue210692@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210697] math.log(0) dumps core (PR#152) Message-ID: <1649606587.26.0.507010396479.issue210697@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210696] strptime error (PR#149) Message-ID: <1649606587.24.0.855280850201.issue210696@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210679] profile.py: self-profiling bug (PR#394) Message-ID: <1649606586.64.0.669588425574.issue210679@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210670] Win32 os.listdir raises confusing errors (PR#374) Message-ID: <1649606586.32.0.808665630195.issue210670@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210602] bugs in xmllib (PR#146) Message-ID: <1649606584.09.0.954454767177.issue210602@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210700] strftime crashes with invalid args (PR#183) Message-ID: <1649606587.39.0.155891089965.issue210700@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210705] combination of socket.gethostbyname and os.system hangs program (PR#401) Message-ID: <1649606587.55.0.839179301548.issue210705@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210684] "Fix" os.system() on Windows (PR#406) Message-ID: <1649606586.89.0.0743349681723.issue210684@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210716] Re: Date problem unresolved [DIN 2646] (fwd) (PR#109) Message-ID: <1649606587.78.0.136137763763.issue210716@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue401032] os.popen#.close() exit code under Windows enhancement Message-ID: <1649606587.81.0.262459003948.issue401032@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210717] test_array.py fails (PR#143) Message-ID: <1649606587.8.0.664471335487.issue210717@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210712] MALLOC_ZERO_RETURNS_NULL problem Message-ID: <1649606587.71.0.378623704581.issue210712@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210711] apply(): throws MemoryError when sending an {} as the keyword list (PR#85) Message-ID: <1649606587.69.0.942934528005.issue210711@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400941] Windows os.popen# changes for exit code on close() Message-ID: <1649606582.96.0.571304459002.issue400941@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210625] trouble building under Solaris 7 (PR#260) Message-ID: <1649606584.8.0.410190409954.issue210625@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210741] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606587.95.0.931706538921.issue210741@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210740] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606587.93.0.948339558637.issue210740@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210748] testing Message-ID: <1649606588.08.0.662021406096.issue210748@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210791] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.14.0.955524230746.issue210791@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210747] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.06.0.0245883379749.issue210747@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210744] Re: Date problem unresolved [DIN 2646] (fwd) (PR#109) Message-ID: <1649606588.0.0.91607695968.issue210744@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210707] does not compile under BSDI (PR#57) Message-ID: <1649606587.59.0.217746515093.issue210707@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210793] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.17.0.475958378911.issue210793@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210796] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.22.0.924695794833.issue210796@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210801] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.29.0.378858693321.issue210801@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210778] pyport.h compile error on windows Message-ID: <1649606588.12.0.661033133959.issue210778@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210698] strptime gives format mismatch when time zone present (PR#164) Message-ID: <1649606587.28.0.609410655286.issue210698@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210715] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606587.75.0.713922087359.issue210715@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210811] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.42.0.21695742945.issue210811@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210820] Jonathan Craft: Possible to-do addition (PR#116) Message-ID: <1649606588.54.0.18059741797.issue210820@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210805] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.35.0.941773270553.issue210805@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210674] memory bloat in binary file upload (PR#381) Message-ID: <1649606586.43.0.691720535165.issue210674@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210822] TCL_LIBRARY variable for win32 (PR#130) Message-ID: <1649606588.61.0.76174993437.issue210822@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210829] REQ: array module should provide "swap to native byte order" functionality, similar to struct module (PR#166) Message-ID: <1649606588.73.0.944663214467.issue210829@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210830] "continue" inside "try" (PR#177) Message-ID: <1649606588.76.0.374685624849.issue210830@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210821] On Windows, APIs passing FILE* break with Borland C (PR#121) Message-ID: <1649606588.56.0.326730181429.issue210821@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210832] urljoin() bug with odd no of '..' (PR#194) Message-ID: <1649606588.81.0.720149730631.issue210832@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210688] Reuben Sumner: Py_REF_DEBUG (PR#43) Message-ID: <1649606586.98.0.555402597363.issue210688@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210810] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.4.0.795913900809.issue210810@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue401033] Use METH_VARARGS constant in Modules/ Message-ID: <1649606587.84.0.680126444186.issue401033@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210833] linker options documentation (PR#195) Message-ID: <1649606588.86.0.064696867432.issue210833@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210843] Low FD_SETSIZE limit on Win32 (PR#41) Message-ID: <1649606589.11.0.713493692311.issue210843@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210606] ntpath.expandvars doesn't handle case properly (PR#162) Message-ID: <1649606584.21.0.272084123957.issue210606@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210841] idle dosnt recompile modules changed externally (PR#308) Message-ID: <1649606589.06.0.508969521046.issue210841@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:02 +0000 Subject: [issue400927] Fix for broken gethostbyname("0") Message-ID: <1649606582.79.0.751824244753.issue400927@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210840] -with-cxx option to configure script (PR#24) Message-ID: <1649606589.04.0.228473575667.issue210840@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:37 +0000 Subject: [issue224324] Python 2.0/ConfigParser: "remove_option" raises "NameError" Message-ID: <1649606557.06.0.452141567846.issue224324@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33540 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210605] Tkinter inconsistency (missing methods) (PR#161) Message-ID: <1649606584.19.0.0473046051173.issue210605@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210844] Annoyance in ftpmirror.py script (PR#48) Message-ID: <1649606589.14.0.572428617353.issue210844@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210687] mailbox module's maildir class broken? (PR#414) Message-ID: <1649606586.95.0.221467015058.issue210687@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210854] Re: Date problem unresolved [DIN 2646] (fwd) (PR#109) Message-ID: <1649606589.33.0.278767139798.issue210854@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210855] test_array.py fails (PR#143) Message-ID: <1649606589.36.0.843515399097.issue210855@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210860] IDLE class browser and decimal comma don't agree (PR#298) Message-ID: <1649606589.51.0.149020246906.issue210860@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210863] Reference counting problem? (PR#338) Message-ID: <1649606589.6.0.370346615538.issue210863@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400974] Vlad's dynamic introspective memory allocator for Python Message-ID: <1649606583.34.0.618500126319.issue400974@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210746] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.05.0.442275074552.issue210746@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210838] Inverse hyperbolic functions in cmath module (PR#231) Message-ID: <1649606588.97.0.400918510423.issue210838@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210710] Segmentation fault on range (PR#71) Message-ID: <1649606587.67.0.590172532926.issue210710@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210846] gzip missing feature -- GzipFile.readlines(number) (PR#56) Message-ID: <1649606589.19.0.793068690795.issue210846@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210850] comparisons of recursive objects (PR#7) Message-ID: <1649606589.27.0.753733841113.issue210850@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210865] Reproducible crash of Mac IDE (PR#172) Message-ID: <1649606589.67.0.937430155061.issue210865@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210867] DCOracle select max() always returns integers (PR#289) Message-ID: <1649606589.75.0.591315461423.issue210867@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210870] Coredump in moduleobjectc.c:134 (PR#79) Message-ID: <1649606589.87.0.571625534078.issue210870@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:03 +0000 Subject: [issue400977] This patch makes whichdb recognize Python's dumbdbm database Message-ID: <1649606583.37.0.193585876664.issue400977@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210871] problem downloading python (PR#99) Message-ID: <1649606589.89.0.126145096672.issue210871@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210831] readline on QNX (PR#192) Message-ID: <1649606588.78.0.454935829494.issue210831@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210915] compiler core-dumps on illegal continue Message-ID: <1649606589.99.0.961854052056.issue210915@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401046] fcntlmodule: use PyArg_ParseTuple everywhere. Message-ID: <1649606590.03.0.34149973296.issue401046@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210869] REs beginning with .* (PR#47) Message-ID: <1649606589.83.0.573654256079.issue210869@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210835] Find out size of primitive object (PR#214) Message-ID: <1649606588.91.0.349154206141.issue210835@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401055] Cookie.py Message-ID: <1649606590.13.0.642544099777.issue401055@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401061] pyport.h and extern "C" Message-ID: <1649606590.17.0.409431682924.issue401061@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210812] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.44.0.972908180948.issue210812@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401063] TeX-draft for docs of the new string methods Message-ID: <1649606590.21.0.685041987143.issue401063@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401071] whichdb.py: add missing "try:" statement Message-ID: <1649606590.3.0.682535769867.issue401071@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210824] Tkinter canvas blow-up: bbox(ALL) == None (PR#133) Message-ID: <1649606588.66.0.282745782438.issue210824@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210799] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.27.0.272213916471.issue210799@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210709] bug in time.sleep (PR#65) Message-ID: <1649606587.63.0.750774754027.issue210709@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401085] calendar.py extensions Message-ID: <1649606590.36.0.798779515861.issue401085@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue211165] doc-string removal masked by PYTHONOPTIMIZE Message-ID: <1649606590.44.0.136089172087.issue211165@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401103] smtplib.py doesn't calculate fqdn correctly Message-ID: <1649606590.59.0.905626481589.issue401103@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue211203] 1.6b1 build (docs?) pyexpat problem on Windows Message-ID: <1649606590.51.0.340180533315.issue211203@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401108] getopt.py extensions (APPEND version) Message-ID: <1649606590.73.0.933737312404.issue401108@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401107] libgetopt.py extensions (REJECT version) Message-ID: <1649606590.69.0.684085809237.issue401107@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210818] test suite incomplete (PR#1) Message-ID: <1649606588.46.0.675731106964.issue210818@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210749] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.09.0.882240469658.issue210749@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401109] libgetopt.tex extensions (APPEND version) Message-ID: <1649606590.75.0.934575916365.issue401109@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210864] problem with MSVC library (bogus) Message-ID: <1649606589.63.0.692377035465.issue210864@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210827] Jitterbug cumbersome to use with offline cache (PR#148) Message-ID: <1649606588.71.0.538710570244.issue210827@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue211403] 1.6b1 dumps core dereferencing a NULL tstate Message-ID: <1649606590.8.0.552710880766.issue211403@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211481] os.stat() doesn't return st_rdev Message-ID: <1649606591.03.0.308802280546.issue211481@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211499] PyImport_AppendInittab undocument Message-ID: <1649606591.15.0.636961237443.issue211499@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue401135] 'import x as y' and 'from x import y as z' Message-ID: <1649606591.16.0.116814194758.issue401135@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210797] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.24.0.12532351892.issue210797@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211520] Some "Very High Level" functions aren't Message-ID: <1649606591.18.0.320353445645.issue211520@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210702] [Linux] closing a popen file descriptor (PR#33) Message-ID: <1649606587.45.0.2810355479.issue210702@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210859] Environment dependency in re parser (PR#290) Message-ID: <1649606589.48.0.360315968577.issue210859@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:04 +0000 Subject: [issue210599] bug (Incorrect signal processing) - Python 1.5.2 (PR#102) Message-ID: <1649606584.01.0.50089574905.issue210599@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211582] Missing "sysconf" in the POSIX module Message-ID: <1649606591.36.0.68554433087.issue211582@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue401146] Replace UNPACK_TUPLE and UNPACK_LIST with UNPACK_SEQUENCE Message-ID: <1649606591.49.0.25881003363.issue401146@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210809] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.39.0.852548222688.issue210809@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue401151] expose public get_fqdn function in smtplib.py Message-ID: <1649606591.54.0.141643291037.issue401151@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211586] 1.6b1: PythonPath Message-ID: <1649606591.4.0.212260091477.issue211586@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211667] unicode core dump Message-ID: <1649606591.66.0.920544056121.issue211667@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210839] CGIHTTPServer (PR#239) Message-ID: <1649606589.01.0.60848084026.issue210839@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211705] problems with re.py and regex.py Message-ID: <1649606591.75.0.0883558620889.issue211705@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211690] Bug: dictionary with >= 8192 keys not initialized correctly Message-ID: <1649606591.7.0.385189113658.issue211690@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211710] socket.send() can do partial writes on some systems. Message-ID: <1649606591.77.0.853436730414.issue211710@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:08 +0000 Subject: [issue210802] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.31.0.745661976063.issue210802@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:07 +0000 Subject: [issue210704] IDLE (PR#400) Message-ID: <1649606587.52.0.149933539137.issue210704@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue401168] make Tools/compiler use new UNPACK_SEQUNCE op Message-ID: <1649606591.98.0.721336822892.issue401168@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401170] Prevent old extensions from crashing Message-ID: <1649606592.0.0.528763546733.issue401170@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401172] Fix for typo in pymem.h Message-ID: <1649606592.04.0.492501129398.issue401172@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210862] linuxthreads lock failed (PR#322) Message-ID: <1649606589.57.0.555567440016.issue210862@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401173] Adding gettext Message-ID: <1649606592.08.0.393448741137.issue401173@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue211802] anydbm cannot verify shelve database type Message-ID: <1649606592.14.0.539254374056.issue211802@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401176] add dummy 'add2lib' target to Grammar/Makefile Message-ID: <1649606592.18.0.164331148306.issue401176@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue211818] .../test/test_fork1 hangs Message-ID: <1649606592.2.0.138898463691.issue211818@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401175] Fix slight bug in the Ref manual docs on listcomprehensions Message-ID: <1649606592.16.0.422891614151.issue401175@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401178] add items() method to listobject Message-ID: <1649606592.24.0.201508808689.issue401178@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue211866] Overflow Error Message-ID: <1649606592.34.0.510282416854.issue211866@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue211928] obsolete use of socket.connect() Message-ID: <1649606592.38.0.248984013155.issue211928@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401062] Docs for the new parser markers introduced by Unicode Message-ID: <1649606590.19.0.622656288405.issue401062@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue212113] Built-in exception class not found: UnboundLocalError. Message-ID: <1649606592.66.0.367853479527.issue212113@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401197] use socket.getfqdn where appropriate Message-ID: <1649606592.62.0.966047693672.issue401197@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue401138] 'for i indexing a in l': exposing the for-loop counter Message-ID: <1649606591.23.0.684028542097.issue401138@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401212] Document new opcodes Message-ID: <1649606592.84.0.694699831718.issue401212@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210868] PythonWin crash on dead keys (PR#372) Message-ID: <1649606589.78.0.290442960111.issue210868@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue212244] time.strptime() not present in Python 1.5.2 for MSWin Message-ID: <1649606592.97.0.744211522947.issue212244@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401127] lib-old/dircmp.py mods for new getopt.py Message-ID: <1649606590.98.0.973722572064.issue401127@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue401233] PyModule_AddObject() and friends Message-ID: <1649606593.23.0.954122603782.issue401233@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue401243] Use a compile time mechanism to 'find "import-from" args' Message-ID: <1649606593.42.0.532912019363.issue401243@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue401250] Use '*args' instead of providing defaults in User*.py Message-ID: <1649606593.57.0.935492994452.issue401250@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue401167] remove tabs in Tools/compiler Message-ID: <1649606591.94.0.0445134149173.issue401167@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue212436] getopt regression test failure Message-ID: <1649606593.61.0.115172068527.issue212436@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue401264] Attribute Doc-Strings (PEP 224) Message-ID: <1649606593.76.0.105048085512.issue401264@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue212472] wrong registry entry written by Wise installer Message-ID: <1649606593.67.0.125982527971.issue212472@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue401277] Catch errors raised by comparisons during dictionary lookup. Message-ID: <1649606593.95.0.424251955994.issue401277@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401208] Add parens to zipfile.py to fix file time seconds bug Message-ID: <1649606592.78.0.338044890639.issue401208@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401284] dis.py does not know DUP_TOPX Message-ID: <1649606594.01.0.210447422644.issue401284@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue401226] make threading fork-safe Message-ID: <1649606593.17.0.0654235576212.issue401226@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401298] Enable Py_DEBUG via configure Message-ID: <1649606594.1.0.162502860468.issue401298@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue212265] Impossible to get Win32 default font encoding in Tk widgets Message-ID: <1649606593.0.0.641697867046.issue212265@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue212760] python can not read binary file fully Message-ID: <1649606594.2.0.0586562967136.issue212760@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue212759] open('file').read() can not read entire binary file Message-ID: <1649606594.18.0.00115114937768.issue212759@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:10 +0000 Subject: [issue401064] [Moshe] Fixing bug 110832 -- urlparse.urljoin Message-ID: <1649606590.24.0.0713706757414.issue401064@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue212693] re behaves differently in 1.6 and 2.0 than 1.52 Message-ID: <1649606594.04.0.160812091487.issue212693@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401320] Translate doc strings Message-ID: <1649606594.46.0.425999618858.issue401320@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401340] test_fcntl.py: add support for FreeBSD-[45] Message-ID: <1649606594.71.0.940691633236.issue401340@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401338] don't create group-writable dirs; don't install *.orig Message-ID: <1649606594.66.0.637696695114.issue401338@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue213037] auotconf/build problems on HP-UX Message-ID: <1649606594.79.0.468355286202.issue213037@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:11 +0000 Subject: [issue211620] lots of use of send() without verifying amount of data sent. Message-ID: <1649606591.62.0.689800837397.issue211620@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:09 +0000 Subject: [issue210857] it don't make (PR#269) Message-ID: <1649606589.43.0.349199454255.issue210857@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue212288] os.path.commonprefix behaviour change. Message-ID: <1649606593.05.0.408229216306.issue212288@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue213142] configure problems with poll.h Message-ID: <1649606595.0.0.371936468376.issue213142@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue212289] NetBSD1.4.2 build issue Message-ID: <1649606593.09.0.497204520902.issue212289@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue211860] file.writelines() crashes Message-ID: <1649606592.29.0.0301690254852.issue211860@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401380] sys.(get|set)recursionlimit Message-ID: <1649606595.15.0.30377843776.issue401380@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401337] Cleanup configuration for FreeBSD Message-ID: <1649606594.64.0.259495919495.issue401337@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue212786] Build under Cygwin fails Message-ID: <1649606594.29.0.995313223061.issue212786@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401390] Add special names to operator module as expected by user Message-ID: <1649606595.36.0.492577627202.issue401390@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401211] list comprehensions: require initial for clause Message-ID: <1649606592.8.0.755413747518.issue401211@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401373] configure.in: missing brackets Message-ID: <1649606595.11.0.00684822027649.issue401373@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue213328] Python 1.6b1 build failure on Solaris (with patch) Message-ID: <1649606595.41.0.509672371314.issue213328@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401312] gettext: Bi-endianness, catalog information, Unicode Message-ID: <1649606594.34.0.629160532947.issue401312@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:12 +0000 Subject: [issue401186] IPv6 support in 1.6b1 (1.5.2 also available at ftp.kame.net) - from core@kame.net Message-ID: <1649606592.39.0.880077905457.issue401186@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401398] API doc changes (InPlace-API & And/Or/Xor fixes) Message-ID: <1649606595.52.0.153079171272.issue401398@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue213600] mmap module is undocumented Message-ID: <1649606595.67.0.0649928077663.issue213600@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401420] auto-detect libdb Message-ID: <1649606595.69.0.583240710802.issue401420@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue213693] freeze modulefinder broken Message-ID: <1649606595.79.0.254554894578.issue213693@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue213704] asyncore.py / asynchat.py outdated Message-ID: <1649606595.9.0.938016210988.issue213704@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401433] Fix for 110845: Check struct short and byte ranges Message-ID: <1649606596.0.0.602241215035.issue401433@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401346] print warning if exception occurs in GC Message-ID: <1649606594.85.0.676626513432.issue401346@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213793] getopt.c compile fails on Solaris 2.6/gcc 2.95.2 Message-ID: <1649606596.34.0.289897248724.issue213793@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213795] IDLE 0.6 with Python 2.0b1 doesn't handle chinese characters Message-ID: <1649606596.37.0.243226530034.issue213795@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213800] optional{} produces incorrect HTML Message-ID: <1649606596.49.0.914874541196.issue213800@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213807] PyArg_ParseTupleAndKeywords and Unicode...? Message-ID: <1649606596.57.0.813316704524.issue213807@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213811] Python 2.0 beta 1 -- urllib.urlopen() fails Message-ID: <1649606596.64.0.87547105287.issue213811@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213828] getpythonregpath with null data in registry key Message-ID: <1649606596.72.0.345856196808.issue213828@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213888] Compiling on alpha-osf1v4: Py_IS_INFINITY not defined Message-ID: <1649606596.84.0.448886574452.issue213888@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214033] re incompatibility in sre Message-ID: <1649606597.12.0.739039356802.issue214033@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue401447] Fix for 113704: Update asyncore/asynchat Message-ID: <1649606596.47.0.951502194767.issue401447@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213829] hasattr() doesn't accept Unicode strings Message-ID: <1649606596.75.0.71685466206.issue213829@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214027] Compiling on alpha-osf1v4: libpthreads is called libpthread Message-ID: <1649606597.05.0.184676431057.issue214027@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue213934] string * int silently returns wrong answer for certain ints Message-ID: <1649606597.0.0.888379417499.issue213934@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214235] error in getgid()? Message-ID: <1649606597.21.0.172899749945.issue214235@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401374] linuxaudiodev.c: add support for FreeBSD Message-ID: <1649606595.13.0.937265150378.issue401374@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401477] Fixes of ReadStream.readline() in UTF-16 and -LE codecs Message-ID: <1649606597.18.0.0607402359114.issue401477@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214290] search_for_prefix failure on relative path Message-ID: <1649606597.45.0.0426456697059.issue214290@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214256] Python 2.0b1, Win2K - urllib failure Message-ID: <1649606597.4.0.0381779191381.issue214256@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214287] InPlace API needs refcount info Message-ID: <1649606597.43.0.189474058051.issue214287@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401481] fix for Bug #113894 in ntpath.py and posixmodule.c Message-ID: <1649606597.23.0.766867085653.issue401481@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401483] mailbox.py broken for Maildir Message-ID: <1649606597.36.0.50158569597.issue401483@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue401458] Adding Unicode support to get|set|hasattr() Message-ID: <1649606596.97.0.209806789775.issue401458@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401485] Patch to test sendmail virtual domain gid's for bug #114235 Message-ID: <1649606597.47.0.386037442364.issue401485@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214293] Unexpected Evaluation of Expressions from Pickle Message-ID: <1649606597.49.0.361726267227.issue214293@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401495] mailbox.py broken for Maildir Message-ID: <1649606597.67.0.96276191074.issue401495@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214304] wm_resizable should return a tuple. Message-ID: <1649606597.63.0.783876936938.issue214304@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213803] [2.0b1 NT4.0] printing non asci char causes idle to abort Message-ID: <1649606596.53.0.691467994876.issue213803@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214324] Minor build problems on HPUX for 2.0b1 Message-ID: <1649606597.78.0.63264593109.issue214324@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401496] Support switches -h and -V (help & version) Message-ID: <1649606597.84.0.525663402949.issue401496@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214334] glob does not handle set coplementation ([^ ... ]) properly Message-ID: <1649606597.82.0.20002680923.issue214334@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214359] snpplib Message-ID: <1649606597.9.0.776855739408.issue214359@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214424] Tkinter/Canvas drawing causes interpreter to crash. Message-ID: <1649606597.94.0.153237261707.issue214424@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214336] Python-2.0b1 build fails on OpenBSD 2.7 Message-ID: <1649606597.88.0.747578228255.issue214336@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214410] 'make tests' fails with thread error on OpenBSD 2.7 Message-ID: <1649606597.92.0.881177421576.issue214410@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue401439] Better syntax for print ( 'print [to file [, ]] [(arg , )*]' ) Message-ID: <1649606596.16.0.32484061414.issue401439@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214318] References to Python 1.5 Message-ID: <1649606597.71.0.862076795756.issue214318@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401508] add 'punctuation' and 'printable' consts. to stropmodule.c Message-ID: <1649606598.0.0.949999459981.issue401508@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401507] add 'punctuation' and 'printable' consts. to stropmodule.c Message-ID: <1649606597.98.0.825387488089.issue401507@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401486] Unexpected Evaluation of Expressions from Pickle Patch Message-ID: <1649606597.52.0.580634786541.issue401486@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214296] distutils documentation out of date Message-ID: <1649606597.58.0.674144900867.issue214296@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214427] bug with urlencode method from urllib Message-ID: <1649606597.95.0.614185627984.issue214427@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401509] Fix for 114424: PyTuple_Resize buggy with cyclic gc Message-ID: <1649606598.06.0.880939507916.issue401509@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401512] Support parsing of already opened file objects Message-ID: <1649606598.17.0.539269174686.issue401512@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214490] crash on empty module registry key Message-ID: <1649606598.32.0.523233500361.issue214490@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214333] minidom fails to parse PI Message-ID: <1649606597.8.0.65449199842.issue214333@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401510] Fix for 114424: PyTuple_Resize buggy with cyclic gc Message-ID: <1649606598.08.0.527934889462.issue401510@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401531] Fix for GC bug #113812 Message-ID: <1649606598.47.0.796244268369.issue401531@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401530] urllib and redirects Message-ID: <1649606598.45.0.304354715741.issue401530@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:13 +0000 Subject: [issue401246] Let UserString.translate() method work with unicode data Message-ID: <1649606593.47.0.998180940787.issue401246@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401536] httplib should not close socket on zero-length response Message-ID: <1649606598.57.0.230829113885.issue401536@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401529] urllib and redirects Message-ID: <1649606598.42.0.0762106212172.issue401529@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214557] Nuke hard tabs from the std library Message-ID: <1649606598.65.0.796727908348.issue214557@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214439] define_macros ignored when building Extension Message-ID: <1649606598.04.0.780248228392.issue214439@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue213960] Problems with reverse() in the array module Message-ID: <1649606597.02.0.12476318191.issue213960@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214630] Add fpectl functionality patch for FreeBSD Message-ID: <1649606598.8.0.723049742812.issue214630@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401558] Fix for #112289 Message-ID: <1649606598.87.0.31938661663.issue401558@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214598] Blue Screen crash, popen, Win98, Norton Antivirus 2000 Message-ID: <1649606598.72.0.680356400079.issue214598@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401369] Solves bug 111961 Message-ID: <1649606595.08.0.569719797563.issue401369@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214749] HTML docs: mark off-site links Message-ID: <1649606598.99.0.553512832938.issue214749@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214566] Bad link to some information at unicode.org Message-ID: <1649606598.68.0.989377342498.issue214566@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue214754] marshal_loads can return NULL without setting Error Message-ID: <1649606599.02.0.177384388211.issue214754@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214747] Freeze does not work Message-ID: <1649606598.95.0.764477195218.issue214747@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue214775] test_minidom failing on Windows Message-ID: <1649606599.11.0.492766944686.issue214775@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214746] dis module is not up todate in 2.0b1-#4 Message-ID: <1649606598.91.0.681964929966.issue214746@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401482] fix for Bug #114245 Message-ID: <1649606597.31.0.751727349516.issue401482@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213786] copy.py doesn't support unicode strings Message-ID: <1649606596.28.0.240429193975.issue213786@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue401569] URL quote doesn't always quote international characters Message-ID: <1649606599.29.0.736606327961.issue401569@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401537] Include/ceval.h mentions obsolete RET_SAVE macro Message-ID: <1649606598.59.0.473603990214.issue401537@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue401472] Fix for 110842: Add several dl.RTLD_ constants Message-ID: <1649606597.17.0.411855468732.issue401472@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue214792] Document how to report bugs against python Message-ID: <1649606599.25.0.54093549795.issue214792@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue401570] adds correct signatures to handler.py Message-ID: <1649606599.31.0.746983646697.issue401570@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue214780] Rare hangs in w9xpopen.exe Message-ID: <1649606599.19.0.696491261963.issue214780@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue401575] a first start on updating expatreader.py Message-ID: <1649606599.53.0.0528914131579.issue401575@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue214821] 2.0b1 IDLE "replace" dead broken Message-ID: <1649606599.54.0.110351676669.issue214821@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue214900] Undefined Symbols When Building Message-ID: <1649606599.66.0.992112771243.issue214900@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue401595] ob_type in deallocator function Message-ID: <1649606599.74.0.0815141446118.issue401595@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue401574] a first start on updating expatreader.py Message-ID: <1649606599.48.0.389309045115.issue401574@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue214846] python20_d.dll missing Message-ID: <1649606599.59.0.418168791209.issue214846@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401428] typo's in NEWS Message-ID: <1649606595.77.0.849047561254.issue401428@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue215040] sre behavior differes from pre Message-ID: <1649606599.89.0.21571372601.issue215040@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue215051] Dodgy use of PyTuple_SET_ITEM in pyexpat.c Message-ID: <1649606599.94.0.157488726486.issue215051@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue215056] __init__.py has tab ==> indention error Message-ID: <1649606600.0.0.788379133249.issue215056@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue215054] test_minidom has a tab.... Message-ID: <1649606599.98.0.482307412965.issue215054@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue215035] SunOS 4.1.4 with GCC 2.95.2 can't compile complete Message-ID: <1649606599.86.0.487168132806.issue215035@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215119] re module docs missing lookbehind, etc. Message-ID: <1649606600.19.0.87367582958.issue215119@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215077] configure.in broken for HP-UX 11 w/ HP ANSI compiler Message-ID: <1649606600.1.0.894299118105.issue215077@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue214758] sys.prefix can be wrong with multiple Python installations Message-ID: <1649606599.09.0.269691794976.issue214758@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215112] can you post release files on sourceforge? Message-ID: <1649606600.15.0.525263779591.issue215112@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:15 +0000 Subject: [issue401416] coax _sre.c into using Py_GetRecursionLimit() Message-ID: <1649606595.6.0.6637691909.issue401416@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215143] Python sometimes complains about continue in an except Message-ID: <1649606600.29.0.25693992828.issue215143@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401630] adds back the InputSource object Message-ID: <1649606600.37.0.248028023823.issue401630@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401636] pulldom: Use updated SAX2 *NS functions Message-ID: <1649606600.53.0.249244360753.issue401636@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401632] extends 101573 with attribute support Message-ID: <1649606600.41.0.464145325266.issue401632@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215146] time.strptime returns bad day of month Message-ID: <1649606600.3.0.450309844523.issue215146@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215221] test_poll hangs on Debian Linux 2.2 Message-ID: <1649606600.43.0.58714381507.issue215221@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215247] 2.0b1 Gives error on Install. Message-ID: <1649606600.55.0.915609854689.issue215247@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401634] SAX: Fix parse and parseString, support parsing of open file Message-ID: <1649606600.48.0.633764412698.issue401634@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401606] threads and __del__ Message-ID: <1649606600.12.0.918449461923.issue401606@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214294] Module Index Links don't work. Message-ID: <1649606597.54.0.338932258988.issue214294@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215330] popen2 should use dup2() rather than dup(). Message-ID: <1649606600.83.0.882972657827.issue215330@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215118] float errors in Python 1.6 Message-ID: <1649606600.17.0.417933091428.issue215118@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214660] sre hangs with "collapse whitespace" RE Message-ID: <1649606598.84.0.834650216045.issue214660@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215338] 2.0b1.1 HTML docs: Contents/Module index problem Message-ID: <1649606600.89.0.277088059887.issue215338@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215341] Todays CVS python dumps core in gcmodule.c?! Message-ID: <1649606600.91.0.243080881678.issue215341@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401647] adds SSL server socket support to socketmodule.c Message-ID: <1649606600.58.0.971149980427.issue401647@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215147] os.execvp ignores first item in arguments Message-ID: <1649606600.33.0.186619299058.issue215147@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215353] os.popen4() missing on Unix Message-ID: <1649606600.97.0.166633978714.issue215353@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215357] ConfigParser feedback Message-ID: <1649606601.03.0.691167784897.issue215357@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215392] Build under SunOS 4.1.4_JL fails Message-ID: <1649606601.07.0.386560092439.issue215392@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401651] Gracefully detect usage of old extension module Message-ID: <1649606600.67.0.437635424092.issue401651@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue401544] Fix for 110609: Allow large long integers in formatting Message-ID: <1649606598.76.0.421150317174.issue401544@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215476] Python-2.0b2 is incompatible with readline version 2 Message-ID: <1649606601.22.0.729357864495.issue215476@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215469] test_socket hangs on Debian Linux 2.2 Message-ID: <1649606601.17.0.656012379699.issue215469@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215487] Windows installer not logo compliant Message-ID: <1649606601.25.0.0947944695155.issue215487@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue401679] Use full paths in _path_created cache Message-ID: <1649606601.19.0.656147657024.issue401679@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215362] ConfigParser chokes on capitalization Message-ID: <1649606601.05.0.592210896282.issue215362@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215491] 2.0b2:test_unicodedata fails: Sparc Solaris 2.7/6 Message-ID: <1649606601.28.0.697187267094.issue215491@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue401676] Detect conflicting Python DLL on module import under Windows Message-ID: <1649606601.14.0.981158927146.issue401676@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue401682] poll fix for glibc 2.0.7 Message-ID: <1649606601.34.0.0715336823502.issue401682@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215506] recent change to md5.h causes md5c.c compilation failure Message-ID: <1649606601.36.0.36010481124.issue215506@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215492] 1 test failed: test_unicodedata Message-ID: <1649606601.3.0.293250038325.issue215492@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215528] import creates extra modules if in working directory Message-ID: <1649606601.45.0.674364365438.issue215528@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215517] no option of using { } for nested blocks Message-ID: <1649606601.42.0.426760862975.issue215517@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215595] Building extensions on windows Message-ID: <1649606601.59.0.357276742049.issue215595@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401664] Add new unistr() builtin + PyObject_Unicode() C API Message-ID: <1649606600.99.0.305724960754.issue401664@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215617] poll problem on Linux 2.0.38, glibc 2.0.7 Message-ID: <1649606601.66.0.917795956757.issue215617@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215608] Readme.txt Message-ID: <1649606601.61.0.905412494229.issue215608@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215618] SRE lookbehind raises a RuntimeError Message-ID: <1649606601.7.0.388824535218.issue215618@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215625] python2.0b2 test_pty fails on x86 Solaris 8 Message-ID: <1649606601.73.0.725807173768.issue215625@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue401699] GC fixes for malloc() == NULL Message-ID: <1649606601.77.0.200854503567.issue401699@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215615] atof, atoi, atol not behaving as methods Message-ID: <1649606601.64.0.662928371302.issue215615@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215641] Dynamic Loading Fails on Mac OS X Message-ID: <1649606601.8.0.268225038248.issue215641@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue401572] updates XMLGenerator to new interface Message-ID: <1649606599.43.0.399873870286.issue401572@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:17 +0000 Subject: [issue214030] 2.0b1: Module index empty Message-ID: <1649606597.09.0.291363306311.issue214030@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue401709] test_import to verify that .pyc files can be imported Message-ID: <1649606601.89.0.566879464769.issue401709@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215658] Minor spelling mistakes in tutorial of beta2 documentation Message-ID: <1649606601.88.0.336579851689.issue215658@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215673] Typo in the documentation (very low priority) Message-ID: <1649606601.91.0.380481951476.issue215673@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215690] Dr. Watson error on Python2.0b2 Idle 0.6 WinNT4.0 SP6 Message-ID: <1649606602.02.0.558588470562.issue215690@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue401721] Fix for 115530/1: add closed attribute to cStringIO objects Message-ID: <1649606602.14.0.74702355458.issue401721@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215731] Linking with old versions of readline Message-ID: <1649606602.2.0.405458601389.issue215731@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue401724] Fix for 115714: Don't rename Tkinter to Tk Message-ID: <1649606602.17.0.898229730616.issue401724@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215261] ambiguous else Message-ID: <1649606600.56.0.33454242029.issue215261@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215712] mimetools.decode doesn't work with '7bit' encoding Message-ID: <1649606602.09.0.153489128918.issue215712@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215831] 0.0**-2.0 returns "inf" instead of raising ValueError Message-ID: <1649606602.35.0.286745108492.issue215831@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215844] OverflowError: integer multiplication Message-ID: <1649606602.38.0.755064145161.issue215844@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401652] unidb-based unicodectype.c replacement Message-ID: <1649606600.72.0.950271576042.issue401652@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215845] sre: maxsplit as keyword argument Message-ID: <1649606602.42.0.300289146581.issue215845@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215894] Difference between dos_8x3 and dos-8x3 Message-ID: <1649606602.44.0.128506631849.issue215894@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215900] difference between pre and sre for buggy expressions Message-ID: <1649606602.48.0.352658006808.issue215900@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215903] sre: split exceeds recursion limit Message-ID: <1649606602.51.0.697627952536.issue215903@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:06 +0000 Subject: [issue210685] isdir bad behaviouring (PR#408) Message-ID: <1649606586.91.0.979741887489.issue210685@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215918] 2.0b2: print a_module.__dict__ also prints the license text Message-ID: <1649606602.58.0.339942681609.issue215918@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401635] adds ExternaltEntityParserCreate method Message-ID: <1649606600.51.0.211682972491.issue401635@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215974] utf-16 codec problems with multiple file write Message-ID: <1649606602.76.0.334478729815.issue215974@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue401753] exception bugfix for gcmodule.c Message-ID: <1649606602.69.0.113164713451.issue401753@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215928] UserList.__getslice__ and co break previous behaviour Message-ID: <1649606602.64.0.523787887871.issue215928@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215987] Crash in __coerce__ (2.0b2) Message-ID: <1649606602.79.0.499664774892.issue215987@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215973] Cygwin Fixes Message-ID: <1649606602.73.0.323104267446.issue215973@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue216008] Subsection Hypertext Links are broken in HTML Docs Message-ID: <1649606602.83.0.950067094928.issue216008@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue401772] __MWERKS__ != BeOS in thread.c Message-ID: <1649606602.9.0.242704381742.issue401772@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue401773] BeOS PPC lacks fseeko, but isn't MS Windows Message-ID: <1649606602.93.0.364730357663.issue401773@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215531] cStringIO truncate() doesn't support size parameter Message-ID: <1649606601.51.0.302752153149.issue215531@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue216011] PyPort.h backward compatibility issues missing Message-ID: <1649606602.88.0.102955637391.issue216011@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215676] repr(__builtin__.license) reads from stdin Message-ID: <1649606601.93.0.916489008182.issue215676@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue401775] revise BeOS build Message-ID: <1649606602.99.0.364580121283.issue401775@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401776] revise BeOS build Message-ID: <1649606603.01.0.145778512052.issue401776@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401778] revise BeOS build Message-ID: <1649606603.09.0.326234532017.issue401778@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401779] revise BeOS build Message-ID: <1649606603.11.0.858819963194.issue401779@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401780] BeOS/linkmodule missing VERSION Message-ID: <1649606603.15.0.125289040212.issue401780@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401777] revise BeOS build Message-ID: <1649606603.05.0.480144725623.issue401777@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:19 +0000 Subject: [issue215026] SSL features undocumented Message-ID: <1649606599.83.0.860004841386.issue215026@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401781] BeOS regen Message-ID: <1649606603.17.0.0439563578305.issue401781@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401782] Enhances 1.6 compiler to raise 'proper' SyntaxErrors Message-ID: <1649606603.19.0.837157300222.issue401782@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216048] BeOpen Python 2.0b2 RPM does not include python2.0 binary Message-ID: <1649606603.24.0.54086101708.issue216048@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216117] cmath & umath fail to load on HPUX10.2 Message-ID: <1649606603.26.0.16310637616.issue216117@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216121] cmath & umath fail to load on HPUX10.2 Message-ID: <1649606603.29.0.211791595237.issue216121@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue215714] Module 'turtle' exports name 'Tk'... Message-ID: <1649606602.12.0.181073618311.issue215714@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216144] Python 2.0b1 hangs Message-ID: <1649606603.33.0.769551542686.issue216144@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216136] sre recursion limit hit in tokenize.py Message-ID: <1649606603.3.0.538330836271.issue216136@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216174] using %% in cstrings sometimes fails with unicode params Message-ID: <1649606603.47.0.0537397440252.issue216174@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401801] Prevent possible buffer exploits under Windows Message-ID: <1649606603.5.0.133450775942.issue401801@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue401751] Make 0.0**-2.0 raise ValueError (fixes hi-pri bug 115831) Message-ID: <1649606602.46.0.610770450608.issue401751@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401804] Cygwin Fix -- missing tcp.h Message-ID: <1649606603.63.0.248261074434.issue401804@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216241] Possible leak in pythonrun.c Message-ID: <1649606603.74.0.0944810006227.issue216241@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216235] module_search_path in PC/getpahp.c Message-ID: <1649606603.65.0.774945005761.issue216235@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216237] Leak in ceval.c Message-ID: <1649606603.72.0.797023310073.issue216237@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401802] Cygwin Fix -- missing tcp.h Message-ID: <1649606603.54.0.926702145026.issue401802@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216255] 2.0b2: LDSHARED incorrect on SGI IRIX Message-ID: <1649606603.84.0.835168688944.issue216255@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401807] Patch for SRE character class bug (#116251) Message-ID: <1649606603.92.0.480330786483.issue401807@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216267] zlib.decompress memory allocation "infinite" loop Message-ID: <1649606603.94.0.0774783265291.issue216267@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216236] Possible leak in pystate.c Message-ID: <1649606603.68.0.763453219934.issue216236@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216280] writing to closed cStringIO inst does not raise ValueError Message-ID: <1649606604.04.0.299291973018.issue216280@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue401810] Fix MemoryError when decompressing empty string Message-ID: <1649606603.97.0.0690566727556.issue401810@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216251] SRE miscompiles character class containing - Message-ID: <1649606603.81.0.864250099403.issue216251@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216285] Unicode encoders don't report errors properly Message-ID: <1649606604.07.0.567601749306.issue216285@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216263] Tools/compiler cannot handle "from foo import *" Message-ID: <1649606603.88.0.426550227108.issue216263@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue401816] Fixes shared modules on Mac OS X Message-ID: <1649606604.22.0.259396127838.issue401816@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216326] Syntax error in Modules/config.c Message-ID: <1649606604.35.0.398949156165.issue216326@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:21 +0000 Subject: [issue215555] Parser crashes for deeply nested list displays Message-ID: <1649606601.54.0.580542386363.issue215555@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:22 +0000 Subject: [issue401774] revise BeOS build Message-ID: <1649606602.96.0.515500415802.issue401774@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue401824] On Darwin, remove unrecognized option `-OPT:Olimit=0' Message-ID: <1649606604.43.0.228957849335.issue401824@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216325] RedHat 5.2: ./configure: test: too many arguments Message-ID: <1649606604.33.0.376665159523.issue216325@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216244] 2.0b2 xml.dom.minidom: no attributes allowed Message-ID: <1649606603.78.0.804423803309.issue216244@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216388] cStringIO rejects Unicode strings Message-ID: <1649606604.45.0.194350945424.issue216388@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216295] pickle fails to reduce class instances as documented Message-ID: <1649606604.27.0.151633197469.issue216295@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216397] Python takes cmd line options after module name for itself Message-ID: <1649606604.55.0.457468685725.issue216397@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:18 +0000 Subject: [issue214553] copy.deepcopy() barfs if it hits class/function/method Message-ID: <1649606598.62.0.151530187464.issue214553@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue401840] Minor fix in documentation of calendar module. Message-ID: <1649606604.58.0.810332947997.issue401840@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401663] Regression test for Unicode database Message-ID: <1649606600.94.0.40530558697.issue401663@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue401844] bdist_wininst creates corrupt installations Message-ID: <1649606604.79.0.458503973493.issue401844@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216453] [Windows] TclError does not always produce error messages Message-ID: <1649606604.88.0.96330661955.issue216453@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue401612] Prevent recursion limit when using ".*?xxx" Message-ID: <1649606600.35.0.739063153871.issue401612@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue401857] ifdef for USE_STACKCHECK consistant Message-ID: <1649606604.9.0.460211163954.issue401857@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue401859] copy_reg: raise TypeError used with class objects Message-ID: <1649606604.96.0.172459123292.issue401859@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216636] Bug in StringIO.write() Message-ID: <1649606605.13.0.336211230137.issue216636@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216649] urllib2.urlopen fails on redirects? Message-ID: <1649606605.14.0.329526680558.issue216649@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216604] Files missing in Tools/perfecthash Message-ID: <1649606605.08.0.839795163522.issue216604@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216664] Crash starting "idle" (2.0c1) Message-ID: <1649606605.16.0.00844043948219.issue216664@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue401843] Remove all uses of "assert" from the test suite Message-ID: <1649606604.74.0.906957114351.issue401843@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216603] Files missing in Demo/p2c Message-ID: <1649606605.07.0.785013995485.issue216603@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216716] urllib.quote and Unicode Message-ID: <1649606605.28.0.494183746394.issue216716@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue401877] Completed codecs API docs Message-ID: <1649606605.35.0.751373031365.issue401877@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216787] StringIO does not check constructor argument type Message-ID: <1649606605.5.0.0517628796318.issue216787@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue401880] Make unlink clean up siblings Message-ID: <1649606605.42.0.987681922897.issue401880@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue401882] Minor pth support cleanup Message-ID: <1649606605.46.0.754417943945.issue401882@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216720] function to open a file and create intermediate directories Message-ID: <1649606605.34.0.251548050004.issue216720@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216872] 2.0c1 can't "import string" ?! Message-ID: <1649606605.69.0.972710012441.issue216872@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:20 +0000 Subject: [issue215057] -program-suffix=SUFFIX not respected Message-ID: <1649606600.02.0.609121836318.issue215057@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue217028] Installation fails if prefix directory does not exist. Message-ID: <1649606605.82.0.115748567805.issue217028@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue401928] gettext fails to find .mo file (Bug #116964) Message-ID: <1649606605.74.0.698324872894.issue401928@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue401896] fix to expatreader incremental parsing Message-ID: <1649606605.54.0.371395515373.issue401896@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:23 +0000 Subject: [issue216271] corrupted wave file header Message-ID: <1649606603.99.0.761870297886.issue216271@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217178] Documentation missing for __iadd__, __isub__, etc. Message-ID: <1649606606.12.0.674759858578.issue217178@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217242] Negative lookbehind fails Message-ID: <1649606606.24.0.474464093045.issue217242@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217167] _tkinter module segfaults on "syntax error" Message-ID: <1649606606.06.0.626627266832.issue217167@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue401980] Fix for #117278: Do not release unallocated Tcl objects Message-ID: <1649606606.51.0.358755710082.issue401980@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216682] 2.0 stalls Mac on external drive Message-ID: <1649606605.26.0.945496704062.issue216682@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217329] Compile Python 2.0 on BSDI BSD/OS 4.0.1 fails Message-ID: <1649606606.61.0.0424660399391.issue217329@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217278] re-opening of bug #117167 Message-ID: <1649606606.4.0.212303928206.issue217278@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217402] Interpreter crashes when str or repr called with an array Message-ID: <1649606606.73.0.584840504138.issue217402@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217324] threadmodule.c uses fprintf(stderr...) Message-ID: <1649606606.56.0.661217263842.issue217324@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue402068] fix for bug #117402 (repr of array) Message-ID: <1649606606.74.0.14880551398.issue402068@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue401993] Fix prepare_input_stream bug Message-ID: <1649606606.64.0.882635251889.issue401993@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217484] Float operations/assignments in Python 2.0 Message-ID: <1649606606.91.0.930425311656.issue217484@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217490] mailbox.Maildir does not create self.boxes in __init__ Message-ID: <1649606606.93.0.599631615276.issue217490@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217464] clash with BSD db when building Message-ID: <1649606606.82.0.951309735749.issue217464@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217508] Building 2.0 under Solaris 8 with GCC 2.95.2 fails to link Message-ID: <1649606606.96.0.304882754193.issue217508@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:16 +0000 Subject: [issue213890] eval() fails with unicode string Message-ID: <1649606596.88.0.954148046297.issue213890@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216405] Bug in buffer interface Message-ID: <1649606604.72.0.761265868162.issue216405@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217245] Python shared-library modules do not work on OpenBSD 2.7 Message-ID: <1649606606.3.0.311668266908.issue217245@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue402106] sys._getframe() for getting the current stack frame Message-ID: <1649606607.14.0.799057748847.issue402106@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217524] The unicodedata db does not know about the special ranges. Message-ID: <1649606606.99.0.492125696051.issue217524@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue217606] *.so creation in solaris+GCC Message-ID: <1649606607.06.0.507739856172.issue217606@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue217612] sre gives wrong groups with findall and empty groups Message-ID: <1649606607.12.0.807280747002.issue217612@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue217686] IDLE doesn't display long arrays well Message-ID: <1649606607.2.0.551484595139.issue217686@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue217691] Unable to run windows installer in windows 2000 Message-ID: <1649606607.22.0.757223097754.issue217691@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue402114] Make *shared* modules work on OpenBSD (bug 117245) Message-ID: <1649606607.25.0.763766352669.issue402114@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219123] Use of ftplib or urllib causes page fault on exit Message-ID: <1649606607.28.0.552534233041.issue219123@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219645] distutils.sysconfig.LINKFORSHARED is undefined Message-ID: <1649606607.48.0.522211329926.issue219645@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219558] bsddb module doesn't check return value of malloc() Message-ID: <1649606607.44.0.480941066039.issue219558@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216516] test_sre.py fails on Win64 because PyOS_CheckStack *never* f Message-ID: <1649606604.92.0.129534634551.issue216516@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219486] fcntl.lockf() is broken Message-ID: <1649606607.38.0.838560480966.issue219486@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue402169] Additional docs for __iadd__ hooks Message-ID: <1649606607.63.0.582857934721.issue402169@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219709] POLLIN undefined Message-ID: <1649606607.56.0.519263344721.issue219709@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219662] python2.0 fails to build on RedHat7.0 Message-ID: <1649606607.51.0.482654750898.issue219662@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219772] Interactive InterPreter+ Thread -> core dump at exit Message-ID: <1649606607.67.0.734745364386.issue219772@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219729] copy/past error in Extending&Embedding Message-ID: <1649606607.6.0.175287451052.issue219729@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue216289] Programs using Tkinter sometimes can't shut down (Windows) Message-ID: <1649606604.11.0.686379145259.issue216289@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219862] Memory leak in python 2.0 and below Message-ID: <1649606607.85.0.95757118549.issue219862@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue402185] reclaim fds in smtplib.py on connect failures Message-ID: <1649606607.88.0.552875622119.issue402185@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219851] inline C++ keyword in config.h Message-ID: <1649606607.78.0.276522531808.issue219851@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219755] sys.getdefaultencoding undocumented Message-ID: <1649606607.65.0.66859150865.issue219755@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue220082] making vars() more useful Message-ID: <1649606607.99.0.693522164926.issue220082@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33427 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue402170] move getopt() to Py_GetOpt() and use it unconditionally Message-ID: <1649606607.7.0.818739197693.issue402170@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue220993] Installation flaky with multiple installers, old versions Message-ID: <1649606608.06.0.451123359844.issue220993@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33429 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue220994] Traceback with DISTUTILS_DEBUG set Message-ID: <1649606608.11.0.281732641113.issue220994@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33430 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219707] urllib failure when return code not 200 Message-ID: <1649606607.53.0.564716397266.issue219707@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219960] Problems with Tcl/Tk and non-ASCII text entry Message-ID: <1649606607.92.0.124173579834.issue219960@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216732] httplib no longer supports old, pre-1.0 HTTP servers Message-ID: <1649606605.4.0.146126586734.issue216732@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221060] memory leak in python 2.0 Message-ID: <1649606608.25.0.09201368998.issue221060@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33434 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue402223] --default-domain fix for Tools/i18n/pygettext.py Message-ID: <1649606608.29.0.931956360057.issue402223@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33435 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue402226] freeze/modulefinder.py should use _winreg, not win32api Message-ID: <1649606608.32.0.286422599355.issue402226@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33436 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221115] Kill threads from main thread Message-ID: <1649606608.35.0.471153010387.issue221115@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33437 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue402208] Allow jython to use StringIO.py without an errno module. Message-ID: <1649606608.21.0.612925628671.issue402208@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33433 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221121] Dynamic loading on Solaris does not work Message-ID: <1649606608.37.0.685258853175.issue221121@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33438 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue402229] a better robotparser.py module Message-ID: <1649606608.47.0.934857852853.issue402229@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33441 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221208] Advanced email module Message-ID: <1649606608.57.0.799548740205.issue221208@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33444 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221013] Bug in .join() Message-ID: <1649606608.15.0.56214298968.issue221013@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33431 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221327] threads within an embedded python interpreter Message-ID: <1649606608.61.0.930888976785.issue221327@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33445 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue402278] add tparm to _cursesmodule Message-ID: <1649606608.84.0.881836951981.issue402278@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33450 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219450] dictionary values returns pointers when the value is a list Message-ID: <1649606607.32.0.405430279713.issue219450@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221479] Compiler warnings on Solaris Message-ID: <1649606608.65.0.217408079257.issue221479@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33446 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue402231] Dynamic loading on Solaris does not work (bug #121121) Message-ID: <1649606608.51.0.680604791301.issue402231@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33442 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221791] Error for bad \x escape doesn't mention filename Message-ID: <1649606608.91.0.818995678705.issue221791@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33452 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221027] regex.compile("***").match("") malfunction Message-ID: <1649606608.18.0.957676013499.issue221027@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33432 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue402313] shar output support Message-ID: <1649606608.99.0.948671723922.issue402313@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33454 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue221963] IDLE hangs on Threads Message-ID: <1649606609.13.0.279028148946.issue221963@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33457 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue217706] Typo in the tutorial: shorted -> shorter Message-ID: <1649606607.23.0.79879034998.issue217706@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue402337] revised CALL_FUNCTION implementation Message-ID: <1649606609.21.0.159757702192.issue402337@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33459 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222070] rfc822.py unprotected call to tell() fails in Win32 Message-ID: <1649606609.25.0.967866487075.issue222070@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33460 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222168] Does not compile on RH 7.0 Message-ID: <1649606609.33.0.877491485008.issue222168@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33463 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222162] split is broken for unicode strings Message-ID: <1649606609.31.0.576166919435.issue222162@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33462 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221654] sre regex () groups have strong memory Message-ID: <1649606608.7.0.179600710914.issue221654@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33447 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222113] Mathematic operations fail on maximum negative integer Message-ID: <1649606609.27.0.49490939874.issue222113@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33461 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue402356] Fix cthread support on Mac OS X Server Message-ID: <1649606609.44.0.532654046481.issue402356@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33466 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222176] Error in rotor module documentation Message-ID: <1649606609.54.0.241683513388.issue222176@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33468 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue402362] Support dynamic module loading under OSX [including support for modules w/Objective-C] Message-ID: <1649606609.59.0.976792708914.issue402362@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33470 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222215] python will not build without --with-suffix on case insensitive filesystem Message-ID: <1649606609.56.0.720528408939.issue222215@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33469 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219622] Python 2.0 compile errors ... Message-ID: <1649606607.47.0.649278903843.issue219622@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue402357] Add support for frameworks and objective-c source. Uesful for both GnuStep and for OSXS/OSX/Darwin. Message-ID: <1649606609.5.0.228224369642.issue402357@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33467 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216547] test_poll.py fails on SPARCstation LX under Red Hat 5.2 Message-ID: <1649606605.03.0.0755896663755.issue216547@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222327] 0.1 + 0.1 = 0.20000000000000001 Message-ID: <1649606609.72.0.00896767904205.issue222327@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33475 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222395] readline() of codecs.StreamReader doesn't work for"utf-16le" Message-ID: <1649606609.77.0.217012855479.issue222395@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33476 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222236] 11.4.2 Example 2 contains typos and one bug Message-ID: <1649606609.66.0.507788380302.issue222236@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33473 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222562] Some typo errors in Extending & Embedding Message-ID: <1649606609.88.0.323979106895.issue222562@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33479 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: =?utf-8?q?=5Bissue222589=5D_xmllib_unable_to_parse_=22german_scharfes_?= =?utf-8?q?=C3=9F=22_in_UTF8_format?= Message-ID: <1649606609.97.0.967535626829.issue222589@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33482 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222564] Some typo errors in Extending & Embedding Message-ID: <1649606609.91.0.707686077314.issue222564@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33480 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue402363] Allow Unicode in urllib Message-ID: <1649606609.61.0.0110477131102.issue402363@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33471 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:24 +0000 Subject: [issue401850] Documentation for SAX2 Message-ID: <1649606604.84.0.207840451703.issue401850@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: =?utf-8?q?=5Bissue222587=5D_xmllib_unable_to_parse_=22german_scharfes_?= =?utf-8?q?=C3=9F=22_in_UTF8_format?= Message-ID: <1649606609.94.0.472507053148.issue222587@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33481 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222625] Using os.system() does not execute some programs Message-ID: <1649606610.13.0.0717599505745.issue222625@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33486 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222684] Memory leak creating sub-interpreters Message-ID: <1649606610.17.0.848136484581.issue222684@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33488 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222985] threading not ok with GNU pth Message-ID: <1649606610.48.0.608774732337.issue222985@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33496 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222977] ConfigParser.get needs a default arg Message-ID: <1649606610.38.0.068533027974.issue222977@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33494 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue402453] Modified urlencode in urllib to accept more types Message-ID: <1649606610.4.0.684861710885.issue402453@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33495 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222756] BaseHTTPServer subclass I/O call blocks forever Message-ID: <1649606610.32.0.640562752494.issue222756@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33492 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue223045] httplib uses a case-sensitive comparision on HTTP-Version Message-ID: <1649606610.53.0.137141467663.issue223045@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33498 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222729] writable not writeable in asyncore Message-ID: <1649606610.26.0.513183447603.issue222729@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33491 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue223166] Python20 installation overwrite a newer pdh.dll Message-ID: <1649606610.6.0.032510383513.issue223166@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33500 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue223225] asyncore.py should use select.poll(), not "import poll" Message-ID: <1649606610.68.0.42110267824.issue223225@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33502 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222680] compile python 2.0 on irix 6.5 Message-ID: <1649606610.15.0.771843878973.issue222680@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33487 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: =?utf-8?q?=5Bissue222588=5D_xmllib_unable_to_parse_=22german_scharfes_?= =?utf-8?q?=C3=9F=22_in_UTF8_format?= Message-ID: <1649606610.01.0.990286162863.issue222588@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33483 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue402498] imputil.py: uninstall method & import of .pyc-files Message-ID: <1649606610.83.0.0649979543578.issue402498@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33506 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219221] Include/graminit.h and Parser/graminit.c erroneously in dist Message-ID: <1649606607.3.0.099233893203.issue219221@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219883] smtplib.py can leak file descriptors Message-ID: <1649606607.9.0.865708955088.issue219883@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue402469] Use glibc's getline() extension Message-ID: <1649606610.56.0.30200800754.issue402469@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33499 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:25 +0000 Subject: [issue216546] test_longexp.py causes apparently endless page thrashing Message-ID: <1649606605.01.0.220828953516.issue216546@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221672] Documentation which needs updating to 2.0 Message-ID: <1649606608.79.0.182989625105.issue221672@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33449 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue223520] Example code doesn't work Message-ID: <1649606610.93.0.919123995945.issue223520@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33509 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue402548] fix for bug #121013 Message-ID: <1649606611.06.0.657332202736.issue402548@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33511 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221207] % operator on strings not documented Message-ID: <1649606608.55.0.129795548752.issue221207@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33443 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue402553] Fix for handling jython's PyStringMap Message-ID: <1649606611.22.0.680299795256.issue402553@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33515 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue223685] bug in extension handling Py_RunSimpleFile Message-ID: <1649606611.36.0.107178881787.issue223685@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33519 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222986] threading not ok with GNU pth - bis Message-ID: <1649606610.5.0.586618315333.issue222986@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33497 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue223599] Need user-centered info for Windows users. Message-ID: <1649606610.98.0.751965583784.issue223599@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33510 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue223695] xml.sax.handler.ContentHandler.characters() not SAX2 Message-ID: <1649606611.4.0.650944084239.issue223695@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33521 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue223769] sre bug for non-greedy match Message-ID: <1649606611.46.0.969573129805.issue223769@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33523 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue223616] compiler package needs better documentation. Message-ID: <1649606611.09.0.894302155641.issue223616@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33512 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue220983] python2.0 dumps core in gc_list_remove Message-ID: <1649606608.02.0.230644753559.issue220983@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33428 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue223816] Can not install Python2.0 Message-ID: <1649606611.48.0.676183439178.issue223816@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33524 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:26 +0000 Subject: [issue217241] class.method(*([self]+args)) gave me a 'unbound method must be called with class instance 1st argument" error message. Message-ID: <1649606606.22.0.927424866709.issue217241@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue402355] Fix fileobject.c on Mac OS X Server to support TELL64() Message-ID: <1649606609.38.0.405184922139.issue402355@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33465 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue402599] better errors for getsockaddrarg Message-ID: <1649606611.64.0.0892425035451.issue402599@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33529 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222273] sunau readframes() docs should mention ULAW conversion Message-ID: <1649606609.68.0.77337103027.issue222273@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33474 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue223625] "authinfo" belongs before "mode reader" in nntplib.py Message-ID: <1649606611.13.0.383621535109.issue223625@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33513 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue402627] A Set class which *can* use the .firstkey() patch Message-ID: <1649606611.93.0.668109640399.issue402627@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33537 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue224003] sys.path[0] is not the script directory Message-ID: <1649606611.61.0.286541785913.issue224003@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33528 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue402626] Add a .first{key/item/value}() method to dictionaries Message-ID: <1649606611.89.0.754106677608.issue402626@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33536 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402630] Don't raise TypeError from isinstance Message-ID: <1649606612.0.0.379127720292.issue402630@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33539 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue224106] isinstance() doesn't *quite* work on ExtensionClasses Message-ID: <1649606611.79.0.0309161140678.issue224106@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33533 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219485] os.path.basename behaves different from Unix basename Message-ID: <1649606607.36.0.676887760002.issue219485@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue223634] Pickle broken on Unicode strings Message-ID: <1649606611.26.0.48924437847.issue223634@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33516 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue217684] IDLE stack browser display problem Message-ID: <1649606607.18.0.240458147452.issue217684@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219483] OpenBSD can't dynamically load modules Message-ID: <1649606607.34.0.900875455746.issue219483@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402638] A patch for gdbmmodule.c, by Damjan Message-ID: <1649606612.1.0.174043743309.issue402638@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33543 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue223398] "Python/C API Reference Manual" erroneous Python/C exception Message-ID: <1649606610.87.0.528225979033.issue223398@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33507 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224367] problem with shelve not handling some db entries. Message-ID: <1649606612.13.0.14657995955.issue224367@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33544 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:29 +0000 Subject: [issue222463] ./configure --help double trouble Message-ID: <1649606609.8.0.402258904767.issue222463@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33477 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224572] Python 2.0 os.system() failure, Debian Linux 2.2.17, i686 Message-ID: <1649606612.2.0.392850108688.issue224572@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33547 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue402227] make BUILD_MAP use it's argument Message-ID: <1649606608.4.0.126234563073.issue402227@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33439 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402637] A patch for gdbmmodule.c Message-ID: <1649606612.09.0.691369295524.issue402637@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33542 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402652] Reference implementation for PEP 208 (coercion) Message-ID: <1649606612.18.0.78954824996.issue402652@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33546 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402678] Let SocketServer reuse addresses Message-ID: <1649606612.39.0.99257483726.issue402678@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33552 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402665] Different credit text for jython Message-ID: <1649606612.23.0.159670658665.issue402665@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33548 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402681] issubclass() and isinstance() error messages Message-ID: <1649606612.46.0.293299168868.issue402681@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33554 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224758] Bogus error message from os.getlogin() Message-ID: <1649606612.58.0.946341999002.issue224758@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33557 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224764] P_DETACH advertised but not supported Message-ID: <1649606612.63.0.8324441917.issue224764@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33558 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402698] Fix for StreamReader bug Message-ID: <1649606612.71.0.794745526858.issue402698@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33561 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224943] NumPy URL update Message-ID: <1649606612.77.0.464165939997.issue224943@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33563 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224981] zlib decompress of sync-flushed data fails Message-ID: <1649606612.8.0.449942466708.issue224981@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33564 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue402492] minidom/pulldom: remove nodes already in the tree Message-ID: <1649606610.81.0.398707562538.issue402492@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33505 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224782] configure should attempt to find a default C++ compiler. Message-ID: <1649606612.67.0.699679700746.issue224782@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33559 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue225003] Extension manual: Windows DLL/C++ info needs review Message-ID: <1649606612.84.0.573176009892.issue225003@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33565 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue402549] simpler, faster(!) implementation of string.join Message-ID: <1649606611.17.0.719305729188.issue402549@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33514 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402691] Use CXX in Misc/Makefile.pre.in and Modules/makesetup Message-ID: <1649606612.55.0.111697919355.issue402691@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33556 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue212943] infinite recursion bug Message-ID: <1649606594.53.0.40437340223.issue212943@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:14 +0000 Subject: [issue401335] Adds login to auth-type servers (smtplib.py) Message-ID: <1649606594.6.0.964476533488.issue401335@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402737] Add DOM exception classes Message-ID: <1649606612.9.0.839264585588.issue402737@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33567 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219860] Exception "TypeError: not enough arguments" without details Message-ID: <1649606607.81.0.20685486679.issue219860@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:28 +0000 Subject: [issue221706] exceptions module cannot be imported in two interpreters Message-ID: <1649606608.87.0.450724346172.issue221706@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33451 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue402628] Fixing bug 124120 -- filecmp.dircmp gives an error Message-ID: <1649606611.98.0.71718926585.issue402628@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33538 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402780] SET_LINENO for augassign Message-ID: <1649606613.03.0.204330886751.issue402780@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33571 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225473] Typo in LICENSE: developement Message-ID: <1649606613.16.0.396435271852.issue225473@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33576 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225391] Associativity of exponentiation documented incorrectly Message-ID: <1649606613.09.0.179167781903.issue225391@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33573 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue223409] Global Module Index up link does not work Message-ID: <1649606610.91.0.919744458524.issue223409@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33508 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402794] trivial typo fix Message-ID: <1649606613.11.0.326981107328.issue402794@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33574 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225476] Codec naming scheme and aliasing support Message-ID: <1649606613.19.0.727027441913.issue225476@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33577 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224344] smtplib quoteaddr() has problems with RFC821 source routing Message-ID: <1649606612.06.0.276986916073.issue224344@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33541 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225531] sre Scanner.scan typo (?) Message-ID: <1649606613.26.0.307450343589.issue225531@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33580 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225452] shlex.shlex hangs when parsing an unclosed quoted string Message-ID: <1649606613.14.0.285536950104.issue225452@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33575 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225598] Confusing KeyError-Message when key is tuple of size 1 Message-ID: <1649606613.36.0.270013130565.issue225598@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33583 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402817] Fix for #124782:Always check for C++ compiler Message-ID: <1649606613.43.0.638904353754.issue402817@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33585 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue402409] Cygwin Python DLL and Shared Extension Patch Message-ID: <1649606610.03.0.927051120317.issue402409@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33484 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402827] Fix for PR#119558: bsddb.c: check return from malloc Message-ID: <1649606613.51.0.385016560808.issue402827@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33588 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225744] httplib does not check if port is valid (easy to fix?) Message-ID: <1649606613.54.0.249790624521.issue225744@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33589 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224478] make -f Makefile.pre.in boot fails in RedHat 7.0 Message-ID: <1649606612.15.0.246145910965.issue224478@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33545 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225610] SuppReq: please elaborate on your email notif. requests Message-ID: <1649606613.4.0.879846965851.issue225610@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33584 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225775] Calculations are wrong Message-ID: <1649606613.58.0.999761720073.issue225775@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33590 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402715] Prototype for PEP 230 - warnings Message-ID: <1649606612.75.0.577318837242.issue402715@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33562 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402813] _cursesmodule: Add panel support Message-ID: <1649606613.33.0.862896859355.issue402813@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33582 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue224038] CGI : Uploaded file is whole stored in memory Message-ID: <1649606611.67.0.517936308968.issue224038@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33530 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:27 +0000 Subject: [issue219806] cgi.py uses too much memory on large file uploads Message-ID: <1649606607.73.0.519217817371.issue219806@roundup.psfhosted.org> Change by admin : _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225891] windows popen4 crashes python when not closed correctly Message-ID: <1649606613.76.0.644832843464.issue225891@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33596 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225860] Kill the hard disk Message-ID: <1649606613.71.0.247775362261.issue225860@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33594 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402864] prototype closure implementation (PEP 227) Message-ID: <1649606613.92.0.728124168457.issue402864@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33601 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402868] fileobject.c:get_line leaks memory when hitting EOF Message-ID: <1649606613.95.0.792882997739.issue402868@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33602 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue223642] Add site-codecs package to enable drop-in codec support Message-ID: <1649606611.31.0.738285432121.issue223642@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33517 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225880] TeX source found in PDF contents list Message-ID: <1649606613.73.0.82224159701.issue225880@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33595 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402863] another memory leak Message-ID: <1649606613.9.0.294375648643.issue402863@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33600 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue225989] cmp() broken on instances Message-ID: <1649606614.03.0.9528400724.issue225989@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33605 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402891] Alternative readline module Message-ID: <1649606614.09.0.00772250898105.issue402891@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33608 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226254] Traceback objects not properly garbage-collected Message-ID: <1649606614.16.0.451911686024.issue226254@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33610 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226161] pickling the string u'\\u' is impossible in Python 2.0 Message-ID: <1649606614.15.0.741493446324.issue226161@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33609 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue402613] __findattr__() Message-ID: <1649606611.85.0.00354447062405.issue402613@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33535 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226264] ref/ref3.tex: Remove claim about eval(repr(obj)) Message-ID: <1649606614.2.0.444766396439.issue226264@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33611 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402939] Fix for 126345:Garbage collection for modules Message-ID: <1649606614.34.0.903134824078.issue402939@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33616 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402940] Use only printable Unicode chars in reporting % errors Message-ID: <1649606614.36.0.031781639483.issue402940@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33617 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402925] Add new function gc.getreferents Message-ID: <1649606614.26.0.577920941369.issue402925@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33613 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224791] math.modf, math.floor, math.ceil give misleading result Message-ID: <1649606612.69.0.695576731798.issue224791@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33560 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402915] xreadlines : readlines :: xrange : range Message-ID: <1649606614.22.0.650202569459.issue402915@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33612 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue225933] warnings framework documentation Message-ID: <1649606613.87.0.0691469711729.issue225933@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33599 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226564] Default of static linking 'bsddb' breaks 3rd party modules Message-ID: <1649606614.55.0.802825112436.issue226564@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33623 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue225297] select([], [], [], 1) on Windows raises exception Message-ID: <1649606612.99.0.722343604463.issue225297@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33570 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402953] [Bug #125452 ] shlex.shlex hangs Message-ID: <1649606614.42.0.787064459052.issue402953@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33619 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402679] linuxaudiodev: better format names (and error messages) Message-ID: <1649606612.42.0.0300238023966.issue402679@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33553 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226587] sre matchobject,groupdict() seems to memory leak Message-ID: <1649606614.62.0.908377060725.issue226587@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33625 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226619] Dict methods have no __doc__ strings Message-ID: <1649606614.68.0.987163030765.issue226619@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33627 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402980] BaseServer class for SocketServer.py (inh. by TCPServer) Message-ID: <1649606614.65.0.206053833628.issue402980@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33626 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402989] Allow 'continue' inside 'try' clause Message-ID: <1649606614.7.0.218196546335.issue402989@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33628 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue222715] __rcmp__() description Message-ID: <1649606610.24.0.749538622661.issue222715@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33490 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226665] makepy crashes parsing "Hauppauge WinTV OCX (b.11) Message-ID: <1649606614.74.0.815444789994.issue226665@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33629 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226766] popen('python -c"...."') tends to hang Message-ID: <1649606614.94.0.714449506949.issue226766@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33634 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402852] Make % error a bit more informative Message-ID: <1649606613.68.0.223689652028.issue402852@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33593 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402955] bltinmodule.c warning fix Message-ID: <1649606614.45.0.369754212616.issue402955@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33620 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue226851] ftplib.py should default to passive mode Message-ID: <1649606615.07.0.203009720382.issue226851@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33638 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue226863] getopt long option handling broken Message-ID: <1649606615.12.0.995204273273.issue226863@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33639 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403028] Make tempfile.mktemp threadsafe Message-ID: <1649606615.2.0.371846553668.issue403028@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33641 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226586] Floating point is broken in Python 2.0 Message-ID: <1649606614.58.0.57962732389.issue226586@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33624 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue224324] Python 2.0/ConfigParser: "remove_option" raises "NameError" Message-ID: <1649606612.02.0.409725763322.issue224324@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33540 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227055] bisect module needs updated docs Message-ID: <1649606615.28.0.516412141911.issue227055@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33643 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:31 +0000 Subject: [issue224120] filecmp.dircmp crashes with TypeError Message-ID: <1649606611.83.0.0507213551407.issue224120@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33534 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403045] Tim's proposed new text for 'else' in try/except/else Message-ID: <1649606615.32.0.444401336536.issue403045@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33644 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227098] Explanation of try/else in Lang Ref is flawed Message-ID: <1649606615.38.0.537921951119.issue227098@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33646 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403048] Generate simple JUMP_FORWARD for 'break' outside 'try' Message-ID: <1649606615.42.0.551174509411.issue403048@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33647 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403052] Restore non-cyclic operation of pulldom.PullDOM Message-ID: <1649606615.45.0.698751816657.issue403052@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33648 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403029] Implementation of chomp() on string objects. Message-ID: <1649606615.25.0.224852092198.issue403029@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33642 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403055] IPv6 patch, against 2.0 CVS tree, Dec30-2000 Message-ID: <1649606615.48.0.268316395128.issue403055@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33649 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227151] mkhowto --iconserver doesn't do anything Message-ID: <1649606615.56.0.65563352466.issue227151@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33651 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403067] Make interpreter recognize byte code files Message-ID: <1649606615.59.0.257534522879.issue403067@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33652 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403061] turtle.py has a minor bug. Message-ID: <1649606615.53.0.646659895284.issue403061@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33650 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226400] test_format broken Message-ID: <1649606614.39.0.298500591224.issue226400@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33618 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227377] bsddb set_location doc clarification Message-ID: <1649606615.81.0.12810356787.issue227377@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33657 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227072] log, exp & sqrt (math) function innaccuracies Message-ID: <1649606615.35.0.135606987726.issue227072@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33645 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403082] speed up readline() using getc_unlocked() Message-ID: <1649606615.85.0.354639757574.issue403082@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33659 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue402878] More tests for coercion and comparison Message-ID: <1649606614.05.0.00881632677196.issue402878@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33606 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227271] parser module tuple2ast cannot handle node type 280 Message-ID: <1649606615.68.0.585128675874.issue227271@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33654 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227483] repr and str return different results for a some floats Message-ID: <1649606615.94.0.0629704639256.issue227483@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33661 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227273] Documentation of 'long' function is wrong Message-ID: <1649606615.71.0.277967224441.issue227273@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33655 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue227718] binascii_a2b_uu '@' is 0? trailing garbage bug. Message-ID: <1649606616.07.0.144966897195.issue227718@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33665 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue227722] getpythonregpath fails Message-ID: <1649606616.09.0.194237941148.issue227722@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33666 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226790] SIGSEGV in chunk_malloc/Python 1.5.2 Linux i386 Message-ID: <1649606614.99.0.166308813596.issue226790@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33635 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue228079] memory leak in pyexpat parser Message-ID: <1649606616.52.0.645831247965.issue228079@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33677 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue228053] Minor bug in posixmodule.c Message-ID: <1649606616.47.0.234186530493.issue228053@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33676 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402669] self of some string methods is incorrect type Message-ID: <1649606612.31.0.897909681739.issue402669@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33550 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue228119] Building under FreeBSD 2.2.1 fails due to unresolved _TELL64 Message-ID: <1649606616.57.0.38469210954.issue228119@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33679 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue403155] avoid warning using modules thread and threading Message-ID: <1649606616.63.0.830477350953.issue403155@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33681 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue228223] Typo in saxutils.py Message-ID: <1649606616.79.0.0292022890887.issue228223@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33686 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue403147] restrict dir output in presence of __exports__ Message-ID: <1649606616.55.0.342481227315.issue403147@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33678 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue228220] cmp() broken with Unicode? Message-ID: <1649606616.76.0.655796755986.issue228220@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33685 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:30 +0000 Subject: [issue223261] string.split Message-ID: <1649606610.75.0.12228255768.issue223261@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33504 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue402670] self of some string methods is incorrect type Message-ID: <1649606612.34.0.791882524282.issue402670@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33551 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue403158] Don't do unsafe arithmetic in xrange object Message-ID: <1649606616.65.0.607029065541.issue403158@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33682 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue403002] Fix for #116285: Properly raise UnicodeErrors Message-ID: <1649606614.78.0.855662810215.issue403002@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33630 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue228302] Repeatedly initializing the interpreter dumps core Message-ID: <1649606617.06.0.2461161669.issue228302@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33692 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226351] urlparse.scheme_chars and string.letters Message-ID: <1649606614.31.0.376306889692.issue226351@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33615 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue228164] time.localtime(-5.0) -> IOError (errno=22) Message-ID: <1649606616.7.0.524877098543.issue228164@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33683 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue403129] Avoid unsafe arithmetic in xrange object Message-ID: <1649606616.15.0.847408348174.issue403129@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33668 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue228475] mimetools.encode (sometimes) fails when called from a thread Message-ID: <1649606617.19.0.188296784976.issue228475@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33697 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue403170] (MosheZ) Implement PEP 217 Message-ID: <1649606616.95.0.503270965417.issue403170@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33689 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403185] Some more standard modules cleanup for Cygwin Message-ID: <1649606617.12.0.266974413122.issue403185@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33694 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue227259] New re breaks on some '*?' matches Message-ID: <1649606615.63.0.126014267846.issue227259@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33653 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403220] Cygwin util.get_platform() fix Message-ID: <1649606617.41.0.397727117272.issue403220@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33704 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403179] Memory leak fix - partial fix for bug #127699 Message-ID: <1649606617.08.0.543511167789.issue403179@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33693 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403200] from foo import * respects __all__ Message-ID: <1649606617.17.0.730135852055.issue403200@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33696 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403216] Auto-detect dbmmodule and build dynamically Message-ID: <1649606617.34.0.334474814957.issue403216@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33701 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue228685] popen on Win9x isnt smart enough about finding w9xpopen.exe Message-ID: <1649606617.54.0.254146400201.issue228685@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33707 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403188] BeOS/ar-fake support for extra libraries Message-ID: <1649606617.14.0.972167482257.issue403188@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33695 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403225] httplib: smallest Python patch ever Message-ID: <1649606617.48.0.735433887298.issue403225@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33706 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403232] Preserve Nonstandard Port Number in Host Header Message-ID: <1649606617.78.0.965540592046.issue403232@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33713 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403227] make code.py appreciate softspace. Message-ID: <1649606617.6.0.621322429852.issue403227@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33708 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403217] prevent htmllib from calling None.split() Message-ID: <1649606617.37.0.957494162024.issue403217@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33702 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue228251] Windows mmap docs need cleaning Message-ID: <1649606616.84.0.775770238076.issue228251@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33687 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403243] another code.py fix - compiling can lead to UnicodeError Message-ID: <1649606618.06.0.0971919681328.issue403243@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33720 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403222] Remove case insensitive problem with "Python" directory Message-ID: <1649606617.44.0.603715941917.issue403222@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33705 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue228764] urllib.splithost() chokes on password containing '/' Message-ID: <1649606617.84.0.481568911288.issue228764@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33714 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue228921] string.count crashes on Unicode Message-ID: <1649606618.11.0.451969950686.issue228921@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33722 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403246] Remove unneeded string exception compat from Queue Message-ID: <1649606618.16.0.757662029721.issue403246@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33724 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue228930] Inconsistent -L, -R options Message-ID: <1649606618.13.0.267785910149.issue228930@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33723 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403247] Strings: '\012' -> '\n' Message-ID: <1649606618.2.0.290085042455.issue403247@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33725 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403235] getargs: better error messages for wrong # of args Message-ID: <1649606617.92.0.342111911092.issue403235@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33716 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403259] Tutorial: Unicode section says UTF-8 is default Message-ID: <1649606618.55.0.541060939477.issue403259@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33734 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403253] Plug memory leak in posixmodule.c Message-ID: <1649606618.4.0.386763297904.issue403253@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33730 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403248] Fix a memory leak in _sre.c Message-ID: <1649606618.23.0.165817634844.issue403248@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33726 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403249] fix for bug # 128921 Message-ID: <1649606618.26.0.663025579707.issue403249@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33727 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue228973] OpenBSD Problems with _funlockfile in fileobject.c Message-ID: <1649606618.45.0.0581930143284.issue228973@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33732 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403283] Rich comparisons technical preview Message-ID: <1649606618.77.0.0838255389833.issue403283@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33740 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:32 +0000 Subject: [issue225217] urllib2.py and proxies (Python 2.0) Message-ID: <1649606612.95.0.612239050164.issue225217@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33569 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue229173] setup.py tries to build pyexpat in the absence of xmlparse.h Message-ID: <1649606618.88.0.963919587017.issue229173@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33743 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue229179] Memory leak on repeated reloads Message-ID: <1649606618.9.0.812220906075.issue229179@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33744 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403305] function attribute segfault Message-ID: <1649606618.95.0.380401906889.issue403305@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33745 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue228711] Need string-to-character-list splitter Message-ID: <1649606617.71.0.259614507425.issue228711@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33711 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue229000] struct should handle terminated strings Message-ID: <1649606618.58.0.865134392086.issue229000@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33735 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403279] Flag for making sysconfig assume build directories Message-ID: <1649606618.75.0.810281605375.issue403279@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33739 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue403012] Update fpectlmodule for current glibc Message-ID: <1649606614.91.0.168974350535.issue403012@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33633 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403313] Include build directory when running "make test" Message-ID: <1649606619.11.0.539059678861.issue403313@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33750 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229205] simple typo Message-ID: <1649606619.03.0.634301093769.issue229205@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33747 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403276] zipfile.py - file header size calculation fixed Message-ID: <1649606618.68.0.518168292327.issue403276@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33737 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403265] Let time functions default to 'now' (where it makes sense) Message-ID: <1649606618.6.0.216086806567.issue403265@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33736 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229234] Various typo in the API ref manual Message-ID: <1649606619.07.0.296568990939.issue229234@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33749 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403250] Optimize a strspn() out of startup Message-ID: <1649606618.29.0.719819902661.issue403250@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33728 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403303] patch to fix dis.py in the face of function attributes Message-ID: <1649606618.84.0.0744629088307.issue403303@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33742 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403314] allow urllib.urlencode to work with multivalued parameters Message-ID: <1649606619.14.0.672063746502.issue403314@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33751 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229288] urllib.quote et al do lowercase %xx Message-ID: <1649606619.19.0.76629619413.issue229288@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33753 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229280] Weird build directory on BSDI Message-ID: <1649606619.17.0.12594046319.issue229280@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33752 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403318] non-recursive makefile Message-ID: <1649606619.28.0.61103999941.issue403318@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33755 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403329] Update poplib to use re Message-ID: <1649606619.39.0.900151981737.issue403329@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33759 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229345] Section 4.6, Minor grammatical error Message-ID: <1649606619.35.0.607137801892.issue229345@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33758 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403252] Startup optimize: read *.pyc as string, not with getc() Message-ID: <1649606618.32.0.977112721566.issue403252@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33729 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403323] trivial tests of all untested modules Message-ID: <1649606619.31.0.149668575496.issue403323@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33756 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403334] Strip "." pathname components Message-ID: <1649606619.49.0.153910290638.issue403334@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33763 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403336] Missing cast Message-ID: <1649606619.51.0.0171463704239.issue403336@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33764 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229475] How to validate a text box using Python Message-ID: <1649606619.53.0.20564492991.issue229475@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33765 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403343] Allow the important test_pkg to succeed under Jython Message-ID: <1649606619.61.0.722475998793.issue403343@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33768 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:36 +0000 Subject: [issue228037] problems using the shelve module Message-ID: <1649606616.37.0.69849173458.issue228037@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33674 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229417] Negative numbers are grouped incorrectly Message-ID: <1649606619.43.0.801276375519.issue229417@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33761 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403349] Allow pickle.py to be using with Jython unicode strings Message-ID: <1649606619.67.0.942937540347.issue403349@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33771 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229584] pythonpath registry value ignored in 2.0 Message-ID: <1649606619.55.0.0970938283361.issue229584@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33766 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229683] test___all__ expects all referenced modules to exist Message-ID: <1649606619.75.0.593613327387.issue229683@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33775 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue228965] Crash on Windows (no current thread) with gadfly Message-ID: <1649606618.42.0.178032496205.issue228965@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33731 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue225981] socket close is not thread safe Message-ID: <1649606614.0.0.799210527212.issue225981@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33604 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229718] file locking lossage Message-ID: <1649606619.79.0.619944551639.issue229718@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33777 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229661] library-dirs option in setup.cfg crashes distutils Message-ID: <1649606619.73.0.883772435384.issue229661@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33774 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229762] Python 2.1a1 build on Irix - Makefile syntax Message-ID: <1649606619.87.0.0467316255383.issue229762@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33780 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229788] cgi module. FieldStorage class returns keys blank fields. Message-ID: <1649606619.9.0.43581547671.issue229788@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33781 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229810] Memore leak in pickle and cPickle Message-ID: <1649606619.94.0.419889905052.issue229810@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33782 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403345] Avoid outdated exec form in test_class.py. Message-ID: <1649606619.65.0.0319833538426.issue403345@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33770 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403373] zlib sync-flush fix Message-ID: <1649606619.99.0.337426748888.issue403373@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33783 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229759] typo Message-ID: <1649606619.84.0.51451137361.issue229759@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33779 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229827] Mac OSX build of 2.1a needs "-traditional-cpp" Message-ID: <1649606620.02.0.541282117756.issue229827@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33784 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue403333] install_data does not do pathname conversion Message-ID: <1649606619.46.0.765654237705.issue403333@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33762 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229832] 2.1a Mac OSX build fails on "-lm" switch Message-ID: <1649606620.07.0.905965811655.issue229832@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33786 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229344] Section 7.1, Sentence makes no sense Message-ID: <1649606619.33.0.221099734781.issue229344@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33757 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229843] MacOSX case insensitivity bug resurfaces Message-ID: <1649606620.17.0.708425787484.issue229843@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33790 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229854] old PYTHONPATH confuses setup.py [build|install] Message-ID: <1649606620.21.0.168713301943.issue229854@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33791 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403391] Add support for lists in urlencode Message-ID: <1649606620.23.0.5551614968.issue403391@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33792 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229833] 2.1a Mac OSX build fails on "-lm" switch Message-ID: <1649606620.09.0.243789687836.issue229833@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33787 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229840] IDLE needs to print ! Message-ID: <1649606620.11.0.601713642874.issue229840@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33788 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229829] 2.1a Mac OSX build fails on "-lm" switch Message-ID: <1649606620.04.0.36164900215.issue229829@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33785 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403395] Guido changed his mind! Quickly, add 'if key in dict'! Message-ID: <1649606620.37.0.291685121264.issue403395@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33796 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229998] "Corrupt installation" when installed without admin privs Message-ID: <1649606620.5.0.811529872101.issue229998@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33801 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229626] Size command broken? Message-ID: <1649606619.69.0.00217330103372.issue229626@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33772 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403297] __all__ values for a handful of modules Message-ID: <1649606618.82.0.621256726645.issue403297@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33741 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue230006] /test/tokenize_tests_.py minor bug Message-ID: <1649606620.57.0.811069962724.issue230006@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33803 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229991] build process references ld_so_aix in lib before it exists Message-ID: <1649606620.41.0.567870492592.issue229991@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33798 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue230117] Python-2.1a1 sgi build _curses Module fix Message-ID: <1649606620.74.0.469523414457.issue230117@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33809 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403394] check for libtermcap as well as libreadline Message-ID: <1649606620.34.0.0862564593221.issue403394@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33795 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue228591] C-level GC API is not documented Message-ID: <1649606617.39.0.231628575544.issue228591@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33703 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue230077] one-line typo in arraymodule.c Message-ID: <1649606620.71.0.598995491182.issue230077@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33808 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue230165] Python 2.1a1 Makefile changed OPT value not used in module c Message-ID: <1649606620.77.0.636832734412.issue230165@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33810 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403445] Fixed DB_RECNO support in bsddb module Message-ID: <1649606620.83.0.0871255326652.issue403445@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33812 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403453] PyMember_Set of T_CHAR always raises exception Message-ID: <1649606620.89.0.638477634193.issue403453@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33814 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue230010] Nasty case for comparison performance Message-ID: <1649606620.59.0.521401659216.issue230010@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33804 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403441] an inline syntax for function attributes Message-ID: <1649606620.79.0.438010333438.issue403441@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33811 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue230355] unicode capitalize method does the wrong thing Message-ID: <1649606621.05.0.22430708606.issue230355@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33820 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403409] install: setup.py 'dbm' header file searching Message-ID: <1649606620.39.0.926489590239.issue403409@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33797 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403457] Fixed shadowing problem with cmpfunc in Mac OS X Message-ID: <1649606620.94.0.0267607987085.issue403457@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33816 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue230359] Run script should not appear in shell window Message-ID: <1649606621.07.0.191616263815.issue230359@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33821 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue230306] statcache.py full of thread problems Message-ID: <1649606620.97.0.975060962452.issue230306@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33817 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403487] BeOS build scripts, setup.py Message-ID: <1649606621.23.0.16866044283.issue403487@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33826 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403471] xml pretty-printing in minidom Message-ID: <1649606620.99.0.606657720612.issue403471@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33818 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403485] _cursesmodule.c, AIX and NetBSD Message-ID: <1649606621.21.0.468179514617.issue403485@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33825 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229379] LINKFORSHARED usage incorrently documented Message-ID: <1649606619.42.0.328561814222.issue229379@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33760 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403477] BeOS build scripts, setup.py Message-ID: <1649606621.16.0.662539159805.issue403477@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33823 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403511] robotparser.py: fix for top-level web names Message-ID: <1649606621.29.0.215203979199.issue403511@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33828 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403512] symtable['.noopt'] = None, should be = 0 Message-ID: <1649606621.32.0.613422773379.issue403512@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33829 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue403412] Complete description of percent formatting in libstdtypes Message-ID: <1649606620.53.0.637780075191.issue403412@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33802 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:33 +0000 Subject: [issue402847] fix a memory leak Message-ID: <1649606613.64.0.490064676775.issue402847@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33592 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue228899] SRE: ignorecase doesn't work for uppercase literals (!) Message-ID: <1649606618.09.0.0141420098959.issue228899@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33721 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403495] case sensitive import for case insensitive FileSystem Message-ID: <1649606621.25.0.820350539337.issue403495@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33827 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:35 +0000 Subject: [issue403100] Multicharacter replacements in PyUnicode_TranslateCharmap Message-ID: <1649606615.96.0.301960259402.issue403100@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33662 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue230197] --with-suffix removal breaks macosx build Message-ID: <1649606620.86.0.911145703996.issue230197@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33813 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403473] Cookie.py: Allow values containing '=' Message-ID: <1649606621.02.0.303857825076.issue403473@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33819 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403517] ftplib.py: provide a default blocksize arg in storbinary Message-ID: <1649606621.45.0.860623509895.issue403517@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33833 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403543] `result' undeclared in Objects/floatobject.c Message-ID: <1649606621.57.0.252634097958.issue403543@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33837 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue230656] 'from ... import' error from setup.py Message-ID: <1649606621.53.0.786041787337.issue230656@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33836 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403544] Minor cleanup and support for NIS and bsddb on BSD systems Message-ID: <1649606621.59.0.313475571546.issue403544@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33838 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:34 +0000 Subject: [issue226700] Demo/curses/tclock.py raises error. Message-ID: <1649606614.81.0.631047938949.issue226700@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33631 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue230712] BaseHTTPServer.HTTPServer.serve_forever() is stuck Message-ID: <1649606621.65.0.381865134906.issue230712@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33840 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403547] Fix mpz.binary method to handle 64-bit systems Message-ID: <1649606621.62.0.332297736134.issue403547@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33839 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue230748] re punts on "^*" Message-ID: <1649606621.68.0.538121903535.issue230748@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33841 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403513] Canvas.py fixes Message-ID: <1649606621.36.0.636977379905.issue403513@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33830 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403557] Speed-up PyObject_IsTrue Message-ID: <1649606621.71.0.890845488951.issue403557@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33842 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue229994] problem building readline extension on linux Message-ID: <1649606620.44.0.606103671479.issue229994@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33799 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403514] small speedup in Tkinter.Misc._bind Message-ID: <1649606621.39.0.394812144377.issue403514@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33831 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403589] Fix segfault related to nested scopes Message-ID: <1649606621.81.0.357813387368.issue403589@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33845 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403587] Python 2.1a2 distutils install_data command broken Message-ID: <1649606621.78.0.0132726739238.issue403587@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33844 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue231064] sys.path not set correctly in embedded python interpreter. Message-ID: <1649606621.89.0.864961928119.issue231064@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33847 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue231189] Crash when Python Re-Initialized with Daemon Threads Message-ID: <1649606621.99.0.315141767581.issue231189@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33849 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue231170] make install fails on macosx for Python-2.1a2 Message-ID: <1649606621.94.0.180950172523.issue231170@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33848 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231204] fork()/execv() IDE Crash Message-ID: <1649606622.02.0.663392572717.issue231204@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33850 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231225] sys.winver is still '2.0' in python 2.1a2 Message-ID: <1649606622.22.0.477610928632.issue231225@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33853 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231235] mpzmodule wont compile with msvc Message-ID: <1649606622.26.0.100551209117.issue231235@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33854 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231237] multiple symbol definition - Py_DebugFlag Message-ID: <1649606622.3.0.637484953999.issue231237@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33855 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue403636] Fix for null byte strings in SSL support of socketmodule.c Message-ID: <1649606622.36.0.503854201009.issue403636@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33857 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229692] \seepep{} not correct in HTML translation Message-ID: <1649606619.77.0.509121012469.issue229692@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33776 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231328] fcntl module functions should accept file module arguments. Message-ID: <1649606622.59.0.908491157672.issue231328@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33863 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231377] [HP-UX] Python chokes on pthread_mutex_init Message-ID: <1649606622.67.0.870051077253.issue231377@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33864 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231273] [windows] os.popen doens't kill subprocess when interrupted Message-ID: <1649606622.48.0.155574796374.issue231273@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33860 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231398] installation of Numeric for Python 2.0. is impossible Message-ID: <1649606622.74.0.485793689483.issue231398@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33865 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue403656] configure.in changes for Solaris Message-ID: <1649606622.83.0.258070108242.issue403656@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33867 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231439] python and Python interfaces should use cc -G for so's Message-ID: <1649606622.89.0.190252023447.issue231439@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33869 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231442] testing bug submission Message-ID: <1649606622.92.0.487590967686.issue231442@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33870 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue403666] Allow jython to use test_new Message-ID: <1649606623.0.0.560094609518.issue403666@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33872 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403668] Allow jython to make temporary test modules Message-ID: <1649606623.08.0.802166740176.issue403668@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33874 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231304] a few misprints in 2.0 Python/C API manual Message-ID: <1649606622.56.0.00785978348855.issue231304@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33862 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:40 +0000 Subject: [issue230242] PyMember_Set of T_CHAR always raises exception Message-ID: <1649606620.92.0.918600245258.issue230242@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33815 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403671] Allow jython to complete the test_class test Message-ID: <1649606623.13.0.271308380833.issue403671@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33876 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403669] Allow jython to complete the test_unicode. Message-ID: <1649606623.11.0.524651459687.issue403669@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33875 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231480] __test__() should auto-exec at compile time Message-ID: <1649606623.16.0.837790395689.issue231480@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33877 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403680] small change to ld_so_beos (apply after 103679) Message-ID: <1649606623.28.0.280524370665.issue403680@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33880 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403681] Remove grammar rule from Makefile Message-ID: <1649606623.31.0.105104750852.issue403681@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33881 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403667] Allow jython to work with test_socket. Message-ID: <1649606623.04.0.865191779479.issue403667@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33873 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403596] Make UnboundLocalError work in nested scopes (fix segfault) Message-ID: <1649606621.85.0.329803023944.issue403596@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33846 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231540] threads and profiler don't work together Message-ID: <1649606623.39.0.171692410306.issue231540@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33884 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231239] -x flag is ignored on non pyc files Message-ID: <1649606622.33.0.928146000843.issue231239@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33856 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403687] Several improvements for bdist_wininst Message-ID: <1649606623.47.0.853012499481.issue403687@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33886 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231560] pdb imports 'repr', causing name collision Message-ID: <1649606623.44.0.659327861422.issue231560@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33885 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403693] tupleobject.c: implement tuple.index() and tuple.count() Message-ID: <1649606623.53.0.291762233357.issue403693@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33887 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:39 +0000 Subject: [issue229293] zlib library used for binary win32 distribution can crash Message-ID: <1649606619.24.0.174588585919.issue229293@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33754 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue403236] urllib: Encode special characters in user and password Message-ID: <1649606617.95.0.0541608395796.issue403236@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33717 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403694] fix makexp_aix path in configure.in Message-ID: <1649606623.6.0.487485592423.issue403694@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33888 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231653] compile.py, mentioned in documentation, unaccessible Message-ID: <1649606623.72.0.014290566256.issue231653@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33892 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403703] Fix for Tools\compiler\transformer.py and renaming Message-ID: <1649606623.74.0.918076183607.issue403703@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33893 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231249] cgi.py opens too many (temporary) files Message-ID: <1649606622.39.0.115553868924.issue231249@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33858 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403717] can't make directories with included install-sh Message-ID: <1649606623.96.0.42309185552.issue403717@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33898 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231652] cPickle calls string.joinfields() Message-ID: <1649606623.7.0.247684101375.issue231652@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33891 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:37 +0000 Subject: [issue228688] Tools/compiler can't compile Lib/*.py Message-ID: <1649606617.68.0.388477832666.issue228688@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33710 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231725] Making documentation requires Python 2.0+ Message-ID: <1649606623.82.0.481071904703.issue231725@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33895 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue231825] doctest.py needs docs Message-ID: <1649606624.06.0.940410196918.issue231825@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33901 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue403721] robotparser2.py and empty url path Message-ID: <1649606624.1.0.231442732358.issue403721@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33902 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue231996] wrong argument list for "def _cmp(...)" in filecmp.py Message-ID: <1649606624.25.0.572704226181.issue231996@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33905 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue403749] fix for complex & default args segfault Message-ID: <1649606624.34.0.454972873825.issue403749@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33907 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232000] New robotparser fails for non-HTTP schemes Message-ID: <1649606624.38.0.131806358794.issue232000@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33908 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue403752] [bug #132000] Allow robotparser to handle non-HTTP URLs Message-ID: <1649606624.42.0.566495344422.issue403752@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33909 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232010] urllib and httplib fails to open url Message-ID: <1649606624.59.0.0498738970701.issue232010@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33913 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232008] PyList_Reverse fails with C Extensions Message-ID: <1649606624.54.0.372157463003.issue232008@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33912 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232124] [PATCH] simple fix, cgi.py uses /usr/local/bin/python ? Message-ID: <1649606624.67.0.0835152191193.issue232124@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33915 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232136] traceback module gets out of sync source lines Message-ID: <1649606624.73.0.80400866316.issue232136@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33916 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue403777] Cannot build Python-2.1a2 on Windows 2000 Message-ID: <1649606624.79.0.55794528174.issue403777@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33918 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232288] Config Parser .ini "Gotcha" Message-ID: <1649606624.88.0.864416770558.issue232288@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33920 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue403782] Clarify "altinstall" Installation Instructions Message-ID: <1649606624.9.0.986522784206.issue403782@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33921 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue230532] newest CVS won't build on AIX Message-ID: <1649606621.48.0.437810645879.issue230532@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33834 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232313] error message confusing for assignment in lambda Message-ID: <1649606624.94.0.178191913918.issue232313@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33922 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403685] Printing unicode Message-ID: <1649606623.37.0.283965085417.issue403685@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33883 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232399] Problem with floats in dictionary values Message-ID: <1649606625.07.0.356401617899.issue232399@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33926 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232276] make install not working Message-ID: <1649606624.86.0.826202969906.issue232276@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33919 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232397] 2.0 doesn't install libpython2.0.a Message-ID: <1649606625.0.0.56954932634.issue232397@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33924 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue403804] fixes setup.py to look for xmlparse.h in the correct place Message-ID: <1649606625.11.0.722103114174.issue403804@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33927 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231774] Architecture-specific config.h is badly named Message-ID: <1649606623.89.0.892710550212.issue231774@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33897 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232460] SSL Support (Apparently) Broken on Solaris Message-ID: <1649606625.16.0.415239553214.issue232460@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33929 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232409] setup.py does not look in the right place for xmlparse.h Message-ID: <1649606625.14.0.496367236938.issue232409@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33928 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231756] [Linux 2.2.19] make test fails CVS HEAD Message-ID: <1649606623.84.0.10162393966.issue231756@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33896 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232510] Fatal error on x+1=1 Message-ID: <1649606625.3.0.562751112267.issue232510@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33932 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue403808] doctest.py docs Message-ID: <1649606625.22.0.924008463809.issue403808@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33930 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403578] setup.py: _tkinter build fix for Debian unstable Message-ID: <1649606621.74.0.534911077385.issue403578@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33843 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232600] 2.1a2 tries to build bsddb without "-ldb" Message-ID: <1649606625.39.0.0499472279773.issue232600@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33934 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232619] 2.1a2 misleading comment from "make install" (minor nit) Message-ID: <1649606625.48.0.474488097903.issue232619@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33937 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue403657] make install on solaris dies duringing mkdir Message-ID: <1649606622.86.0.468215762504.issue403657@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33868 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232783] 2.1a2 fails to build extensions under Solaris 8 with gcc Message-ID: <1649606625.61.0.989770930439.issue232783@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33941 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231222] Python-2.1a2: HP make continiously runs the configure script Message-ID: <1649606622.17.0.00454490988502.issue231222@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33852 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232637] can't compile modules on AIX 4.2.1 (for real this time) Message-ID: <1649606625.54.0.844184828346.issue232637@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33939 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232786] 2.1a2 "make test" failures under Solaris 8 Message-ID: <1649606625.64.0.540757956295.issue232786@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33942 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue403854] Check Node class in minidom Message-ID: <1649606625.69.0.38133694179.issue403854@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33944 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232820] Nested scopes have problems in -O mode Message-ID: <1649606625.8.0.85718012172.issue232820@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33948 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue403753] zlib decompress; uncontrollable memory usage Message-ID: <1649606624.44.0.545266759335.issue403753@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33910 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue231824] New std library difflib.py needs docs Message-ID: <1649606624.04.0.552394211035.issue231824@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33900 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue403864] 2.1a2 has minor bug in "make clean" target: BugID 132879 Message-ID: <1649606625.88.0.522552439725.issue403864@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33951 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue403865] BugID 132783 - alllow extensions to build under Solaris8/gcc Message-ID: <1649606625.91.0.764101367232.issue403865@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33952 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232921] None treated differently in cmp() / sort() in 2.1a2 Message-ID: <1649606625.97.0.575354078197.issue232921@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33955 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232879] 2.1a2 minor bug in "make clean" target Message-ID: <1649606625.86.0.418961785421.issue232879@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33950 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232817] test_ucn fails on OpenVMS - AssertionError Message-ID: <1649606625.77.0.687200530168.issue232817@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33947 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403868] Add better default compiler support Message-ID: <1649606626.01.0.41423854196.issue403868@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33957 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232815] getname() already in use by OS Message-ID: <1649606625.72.0.423902966123.issue232815@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33945 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232633] modules not building on AIX 4.2.1 Message-ID: <1649606625.51.0.0488812712804.issue232633@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33938 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233084] nis.match('username', 'aliases') does not work under Linux Message-ID: <1649606626.13.0.918190716718.issue233084@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33962 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:41 +0000 Subject: [issue403516] zipfile.py: use hex constants for magic numbers Message-ID: <1649606621.42.0.289172570699.issue403516@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33832 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233147] exec doesn't work with nested scopes Message-ID: <1649606626.19.0.720640641678.issue233147@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33964 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403885] Dynamic registration and lookup of DOM implementations Message-ID: <1649606626.23.0.135484555665.issue403885@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33966 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232606] 2.1a2 _tkinter build may pick up wrong Tcl/Tk versions Message-ID: <1649606625.43.0.102069905918.issue232606@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33935 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232787] 2.1a1 compiler warnings under Solaris 8 with gcc Message-ID: <1649606625.66.0.916814102764.issue232787@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33943 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233096] Fatal python error in com_make_closure() Message-ID: <1649606626.16.0.136394014195.issue233096@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33963 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403695] fix path to ld_so_aix Message-ID: <1649606623.62.0.880604417404.issue403695@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33889 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue403258] Cookie.py docs: example incorrect Message-ID: <1649606618.5.0.300950105305.issue403258@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33733 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233213] HTML rendering of >>> in doctest Message-ID: <1649606626.34.0.396297432022.issue233213@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33970 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403886] Building bsddb module with/without "-ldb" - BugID 132600 Message-ID: <1649606626.26.0.303393621432.issue403886@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33967 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403871] self.fp not defined in class ZipFile for non-existing file Message-ID: <1649606626.07.0.871122469748.issue403871@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33959 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403903] Change EXEEXT back to EXE in the makefile Message-ID: <1649606626.53.0.562021659169.issue403903@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33978 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403892] a small optimization for threading.py Message-ID: <1649606626.28.0.113181118633.issue403892@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33968 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233308] Python C-API for adding int (*getreadbufferproc) is wrong Message-ID: <1649606626.58.0.393842139838.issue233308@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33980 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233262] Incorrect encodings.py module imported Message-ID: <1649606626.46.0.181857054903.issue233262@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33975 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403928] Correct zlib freeze settings for Win32 Message-ID: <1649606626.68.0.896752327433.issue403928@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33983 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233214] HTML rendering of >>> in doctest Message-ID: <1649606626.36.0.254892483135.issue233214@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33971 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:38 +0000 Subject: [issue229193] make clean & make test failures with setup.py Message-ID: <1649606618.98.0.0801287632656.issue229193@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33746 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232609] 2.1a2 possible include/library mismatch in setup.py Message-ID: <1649606625.45.0.326066834623.issue232609@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33936 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233450] 2.1a2: make install fails for _tkinter Message-ID: <1649606626.73.0.905772478306.issue233450@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33985 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403930] Ignore error making grammar src if srcdir is readonly Message-ID: <1649606626.7.0.699721698394.issue403930@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33984 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403947] For Cygwin built Python use Cygwin like an UNIX C compiler Message-ID: <1649606626.88.0.121447679635.issue403947@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33991 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue232005] Making documentation requires Python 2.0+ (II) Message-ID: <1649606624.51.0.813013572819.issue232005@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33911 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403937] Attempt at BSDDB fix Message-ID: <1649606626.83.0.0989591102221.issue403937@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33989 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233532] Add warning about undefined "global" Message-ID: <1649606626.81.0.226535546964.issue233532@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33988 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233259] Ugly traceback for DistutilsPlatformError Message-ID: <1649606626.43.0.977211095407.issue233259@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33974 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233668] install-sh has no -d option but 2.1a2 Makefile uses it Message-ID: <1649606626.95.0.983433601832.issue233668@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33994 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue231635] ConfigParser module regexp issue Message-ID: <1649606623.67.0.999157286492.issue231635@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33890 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233665] Race condition in threading (Conditions) Message-ID: <1649606626.93.0.509697361497.issue233665@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33993 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233717] mimetools: Nice libraries don't "print" Message-ID: <1649606626.97.0.901349031438.issue233717@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33995 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403972] threaded profiler. Message-ID: <1649606626.99.0.348200590611.issue403972@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33996 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue403729] tutorial update for Unicode Message-ID: <1649606624.14.0.54397096116.issue403729@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33903 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue403977] Rename config.h to pyac_config.h, per SF bug #131774 Message-ID: <1649606627.04.0.382257921672.issue403977@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33998 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232913] ConfigParser set() does not xform option Message-ID: <1649606625.96.0.426203585283.issue232913@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33954 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue403985] Add support for weak-keyed dictionaries Message-ID: <1649606627.13.0.825652926087.issue403985@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34000 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404130] site.py sets sys.path incorrectly. Message-ID: <1649606627.15.0.354087232801.issue404130@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34001 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403678] setup.py.in Message-ID: <1649606623.19.0.790505541287.issue403678@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33878 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404159] New platform support: RISC OS Message-ID: <1649606627.18.0.333177871614.issue404159@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34002 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404163] New platform support: RISC OS Message-ID: <1649606627.24.0.647044787379.issue404163@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34004 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue403978] config.h -&gt; pyac_config.h change for OS2 Message-ID: <1649606627.11.0.277263137512.issue403978@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33999 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404276] get_platform(), patch for AIX Message-ID: <1649606627.31.0.627376825126.issue404276@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34007 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404274] Linking error on AIX (Python 1.5.2) Message-ID: <1649606627.28.0.872080186106.issue404274@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34006 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404275] get_platform(), patch for AIX Message-ID: <1649606627.33.0.00896141821706.issue404275@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34008 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404277] Linking error on AIX (Python 1.5.2) Message-ID: <1649606627.36.0.568032013396.issue404277@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34009 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404322] Python 2.1a and solaris8/x86 Message-ID: <1649606627.41.0.76984021094.issue404322@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34011 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404444] [IDLE] auto indent/parentheses Message-ID: <1649606627.51.0.496976414758.issue404444@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34014 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403683] Alternative dll version resources (also fixes Bug 13122) Message-ID: <1649606623.34.0.595943700973.issue403683@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33882 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404282] Manifest.in not included in sdist... Message-ID: <1649606627.38.0.33745063791.issue404282@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34010 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404536] Bug in ConfigParser.py Message-ID: <1649606627.57.0.907514601144.issue404536@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34016 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404327] struct.calcsize returns wrong size Message-ID: <1649606627.45.0.290825700149.issue404327@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34012 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404539] os.listdir() can't grok Unicode filename Message-ID: <1649606627.59.0.30855817527.issue404539@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34017 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404545] frozen package import uses wrong files Message-ID: <1649606627.62.0.169044253632.issue404545@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34018 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404875] setup.py problem with sunos4 (2.1) Message-ID: <1649606627.82.0.889899633947.issue404875@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34025 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404680] Two more Cygwin standard module issues Message-ID: <1649606627.69.0.47049253104.issue404680@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34020 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404774] nested scopes segfaults Message-ID: <1649606627.75.0.896586286283.issue404774@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34022 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404826] urllib2 enhancements Message-ID: <1649606627.78.0.191782605297.issue404826@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34023 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404899] testing uploads Message-ID: <1649606627.85.0.698451708794.issue404899@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34026 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404997] Alternative to __future__ imports Message-ID: <1649606627.95.0.982876906987.issue404997@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34030 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405102] os.py: fix docstring (make raw) Message-ID: <1649606628.12.0.101309100472.issue405102@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34035 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405122] webbrowser fix Message-ID: <1649606628.15.0.318676487009.issue405122@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34036 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405101] Add Random Seeding to OpenSSL Message-ID: <1649606628.08.0.99118092563.issue405101@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34034 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405227] sizeof(Py_UNICODE)==2 ???? Message-ID: <1649606628.21.0.739041440501.issue405227@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34038 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405228] split Telnet class into TelnetBase Message-ID: <1649606628.28.0.732438846831.issue405228@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34039 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405329] Cannot compile Python 2.1a2 on Solaris Message-ID: <1649606628.31.0.129419483107.issue405329@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34040 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue405007] Script install fails for build in subdir Message-ID: <1649606627.99.0.586402271649.issue405007@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34031 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405341] Reminder -- nested scopes TO DO list Message-ID: <1649606628.34.0.433429318849.issue405341@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34041 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403901] Minor regen fix to be consistent with Makefile Message-ID: <1649606626.49.0.767320715974.issue403901@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33976 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233283] Different re results in Python 2.0 and 2.1a2 Message-ID: <1649606626.51.0.274869778684.issue233283@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33977 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405350] 2.1b1 termios module fails to compile Message-ID: <1649606628.39.0.40224497804.issue405350@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34043 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405346] bug in unicodedata.c in 2.1a2 Message-ID: <1649606628.37.0.444534459082.issue405346@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34042 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404928] Support for next Cygwin gcc (2.95.2-8) Message-ID: <1649606627.93.0.390456564536.issue404928@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34029 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405351] 2.1b1 - dlmodule on 64-bit platform Message-ID: <1649606628.42.0.849041288696.issue405351@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34044 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405355] 2.1b1 Tru64 patch for termios.c Message-ID: <1649606628.46.0.0162763543149.issue405355@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34045 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405410] Documentation Non-MSVC-Compilers Message-ID: <1649606628.51.0.770960429534.issue405410@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34047 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue233334] --record option doesn't remove duplicate files Message-ID: <1649606626.62.0.939149803489.issue233334@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33981 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405092] Modules/termios.c on Solaris 2.6/SPARC Message-ID: <1649606628.05.0.917991087471.issue405092@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34033 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405427] SQL2000+XML returns "400.100" status Message-ID: <1649606628.54.0.0968027583316.issue405427@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34048 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:45 +0000 Subject: [issue232816] Compiler warning in PYEXPAT.C for extra ';' Message-ID: <1649606625.74.0.368052048941.issue232816@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33946 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403926] 2.1a2 CVS - stop compiler warnings Message-ID: <1649606626.65.0.359108193252.issue403926@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33982 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405553] pydoc.help broken in IDLE Message-ID: <1649606628.58.0.535938681303.issue405553@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34049 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405554] pydoc should be integrated with HTML doc Message-ID: <1649606628.63.0.0304659054884.issue405554@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34050 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405139] Add reset() method to dircache Message-ID: <1649606628.18.0.234305563516.issue405139@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34037 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:42 +0000 Subject: [issue231207] Fatal Python Error during program shutdown Message-ID: <1649606622.08.0.769661605925.issue231207@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33851 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:46 +0000 Subject: [issue403948] uninstaller for bdist_wininst Message-ID: <1649606626.91.0.399829842847.issue403948@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33992 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405567] 2.1b1 termios fix for FreeBSD 4.2 Message-ID: <1649606628.67.0.0598899281047.issue405567@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34051 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405676] Quasi hang in RE code Message-ID: <1649606628.77.0.896974547589.issue405676@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34053 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405792] Run configure instead of config.status Message-ID: <1649606628.81.0.207406284803.issue405792@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34054 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405845] Fix for #405427: raise BadStatusLine Message-ID: <1649606628.9.0.927235709799.issue405845@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34057 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405831] popen3 read fails in blocks Message-ID: <1649606628.83.0.0993596094243.issue405831@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34055 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405837] getting PyRun_String() true result Message-ID: <1649606628.87.0.221404215005.issue405837@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34056 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405849] print (float) of Python 2.0 Message-ID: <1649606628.92.0.708286952654.issue405849@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34058 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405851] Allow jython to complete test_strftime Message-ID: <1649606628.94.0.758999375244.issue405851@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34059 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue405894] sre fails on r'[\w-]' patterns Message-ID: <1649606629.02.0.57525325377.issue405894@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34061 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue405939] HTTPConnection Host hdr wrong w/ proxy Message-ID: <1649606629.11.0.855702218057.issue405939@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34065 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:43 +0000 Subject: [issue403710] Change PyImport_ImportModule semantics to call __import__ Message-ID: <1649606623.77.0.596860854585.issue403710@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33894 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404162] New platform support: RISC OS Message-ID: <1649606627.21.0.429825053477.issue404162@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34003 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue405931] Patches for SCO UnixWare 7.1.x port Message-ID: <1649606629.09.0.402995520024.issue405931@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34064 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:44 +0000 Subject: [issue403789] Add support to zipfile for passing file-like objects Message-ID: <1649606624.98.0.417481424763.issue403789@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33923 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue405896] String slice optimisations Message-ID: <1649606629.04.0.381494530427.issue405896@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34062 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue405900] String slice optimisations Message-ID: <1649606629.05.0.644015191215.issue405900@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34063 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue405952] cmd.py uses raw_input(); eats SIGCLD Message-ID: <1649606629.17.0.736599571041.issue405952@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34066 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406049] crash on nested listcomps Message-ID: <1649606629.26.0.748345343133.issue406049@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34068 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404240] time_t can be unsigned Message-ID: <1649606627.26.0.587599210207.issue404240@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34005 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406076] fix for nested list comprehensions (#406049) Message-ID: <1649606629.29.0.829625722196.issue406076@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34069 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406191] Mac OS X installation notes Message-ID: <1649606629.35.0.125265573688.issue406191@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34070 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406248] Enable Weak References to Functions Message-ID: <1649606629.39.0.486942976372.issue406248@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34071 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406280] Python 2.1b1 - pydoc shows nothing Message-ID: <1649606629.48.0.986193009726.issue406280@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34075 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406272] use INSTALL_SCRIPT to install scripts Message-ID: <1649606629.46.0.518330748904.issue406272@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34074 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406287] last try: INSTALL_SCRIPT Message-ID: <1649606629.52.0.435773723441.issue406287@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34076 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406270] termios.c: doesn't compile on FreeBSD Message-ID: <1649606629.41.0.690616982076.issue406270@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34072 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406293] Typo in os.py Message-ID: <1649606629.58.0.893359780171.issue406293@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34077 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406292] Typo in os.py Message-ID: <1649606629.65.0.487473781084.issue406292@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34080 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406296] Typo in os.py Message-ID: <1649606629.63.0.114044691153.issue406296@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34079 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406294] Typo in os.py Message-ID: <1649606629.6.0.140225581392.issue406294@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34078 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406299] Typo in os.py Message-ID: <1649606629.67.0.691944604518.issue406299@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34081 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406298] Typo in os.py Message-ID: <1649606629.69.0.292649858246.issue406298@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34082 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406295] Typo in os.py Message-ID: <1649606629.72.0.652498026662.issue406295@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34083 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406300] Typo in os.py Message-ID: <1649606629.74.0.222589530262.issue406300@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34084 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406297] Typo in os.py Message-ID: <1649606629.76.0.685481066672.issue406297@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34085 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406302] Typo in os.py Message-ID: <1649606629.78.0.574717957664.issue406302@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34086 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406301] Typo in os.py Message-ID: <1649606629.79.0.347532166002.issue406301@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34087 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406306] Typo in os.py Message-ID: <1649606629.84.0.493534032017.issue406306@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34089 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406308] Typo in os.py Message-ID: <1649606629.87.0.39913865807.issue406308@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34091 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406307] Typo in os.py Message-ID: <1649606629.86.0.41252668893.issue406307@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34090 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406304] Typo in os.py Message-ID: <1649606629.9.0.91068823143.issue406304@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34092 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406309] Typo in os.py Message-ID: <1649606629.93.0.167240464296.issue406309@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34093 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406312] Typo in os.py Message-ID: <1649606629.94.0.473410935911.issue406312@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34094 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406310] Typo in os.py Message-ID: <1649606629.99.0.558514287483.issue406310@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34095 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404535] Bug in ConfigParser.py Message-ID: <1649606627.55.0.0896059472339.issue404535@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34015 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406313] Typo in os.py Message-ID: <1649606630.02.0.56135644557.issue406313@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34096 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406314] Typo in os.py Message-ID: <1649606630.05.0.640543189945.issue406314@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34098 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406319] Typo in os.py Message-ID: <1649606630.07.0.410517218148.issue406319@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34099 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:48 +0000 Subject: [issue405016] small setup.py patch for VPATH build Message-ID: <1649606628.02.0.40348326727.issue405016@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34032 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406320] Typo in os.py Message-ID: <1649606630.1.0.0878522956765.issue406320@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34101 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406321] Typo in os.py Message-ID: <1649606630.14.0.447356312032.issue406321@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34103 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406318] Typo in os.py Message-ID: <1649606630.08.0.167484356724.issue406318@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34100 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406311] Typo in os.py Message-ID: <1649606630.03.0.620445824645.issue406311@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34097 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:49 +0000 Subject: [issue406305] Typo in os.py Message-ID: <1649606629.81.0.215918062626.issue406305@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34088 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406325] Typo in os.py Message-ID: <1649606630.18.0.922555243711.issue406325@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34104 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406323] Typo in os.py Message-ID: <1649606630.2.0.364780334459.issue406323@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34105 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406327] Typo in os.py Message-ID: <1649606630.32.0.261418873432.issue406327@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34108 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406328] Typo in os.py Message-ID: <1649606630.35.0.43598511785.issue406328@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34109 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406324] Typo in os.py Message-ID: <1649606630.24.0.598544613972.issue406324@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34106 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406326] Typo in os.py Message-ID: <1649606630.25.0.407775720431.issue406326@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34107 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406459] nested scopes opcodes not documented Message-ID: <1649606630.37.0.0739196461219.issue406459@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34110 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406642] 2.1b1 from socket import* omits errorTab Message-ID: <1649606630.43.0.700220461007.issue406642@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34112 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406563] test_long loops openbsd2.8 i386 Message-ID: <1649606630.41.0.357356410803.issue406563@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34111 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406815] python2.1b re bug (.*)? Message-ID: <1649606630.64.0.409430287777.issue406815@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34116 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue407019] Python-2.1 does not compile under cygwin Message-ID: <1649606630.75.0.948712343311.issue407019@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34119 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue407093] urllib2 correction of typos Message-ID: <1649606630.77.0.826966074341.issue407093@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34120 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406792] python2.1b1 core dumps --with-pymalloc Message-ID: <1649606630.61.0.505698535405.issue406792@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34115 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406683] typos in urllib2 ( cvs ) Message-ID: <1649606630.5.0.937808141194.issue406683@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34113 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406824] 2.1b1 pythonpath registry error. Message-ID: <1649606630.67.0.931466891182.issue406824@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34117 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue406705] imaplib search() quoting search criteria Message-ID: <1649606630.56.0.992538252386.issue406705@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34114 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407434] Meta-data XML output Message-ID: <1649606631.09.0.47183293382.issue407434@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34128 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:47 +0000 Subject: [issue404924] Cygwin termios module patch Message-ID: <1649606627.9.0.651026818103.issue404924@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34028 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407504] Bug in pwd.getpwall() Message-ID: <1649606631.11.0.623841800919.issue407504@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34129 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue407148] 'D' format option for Py_BuildValue Message-ID: <1649606630.85.0.261011657674.issue407148@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34121 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue407180] proposal: allow years before 1900 Message-ID: <1649606630.94.0.745073758651.issue407180@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34123 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407394] future nested_scopes * 2 => seg fault Message-ID: <1649606631.07.0.598679212634.issue407394@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34127 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407538] pickling fails on Unicode strings with newlines Message-ID: <1649606631.14.0.922046513071.issue407538@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34130 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407543] Python 2.1beta1 install fails with --wi Message-ID: <1649606631.16.0.930977962.issue407543@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34131 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:50 +0000 Subject: [issue407149] 'D' format option for Py_BuildValue Message-ID: <1649606630.91.0.0114683317094.issue407149@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34122 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407379] SRE objects of no known type Message-ID: <1649606631.04.0.150288821941.issue407379@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34126 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407965] Improve Level 2 conformance of minidom Message-ID: <1649606631.43.0.334335525919.issue407965@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34140 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407626] Trailing white space after line continue Message-ID: <1649606631.17.0.155575276662.issue407626@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34132 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408173] re.py comments refer to old versions Message-ID: <1649606631.54.0.008665568247.issue408173@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34143 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407777] 2.1b1 Lib/multifile.py typo Message-ID: <1649606631.32.0.738541205785.issue407777@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34136 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408085] urllib.py https redirect-302 bug Message-ID: <1649606631.45.0.958165119253.issue408085@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34141 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407680] obmalloc.c - looks like it's corrupted Message-ID: <1649606631.2.0.999522699922.issue407680@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34133 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408308] UserList.py bug in getslice, *add, mul Message-ID: <1649606631.59.0.895447375452.issue408308@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34145 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408696] Cygwin (ntsec mode) install patch Message-ID: <1649606631.72.0.26643569722.issue408696@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34149 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407800] global in classdef affect nested scope!? Message-ID: <1649606631.38.0.903946711984.issue407800@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34138 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408767] pydoc-file url Message-ID: <1649606631.77.0.264182059106.issue408767@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34150 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407783] urllib2: AbstractHTTPHandler limits flexible client implemen Message-ID: <1649606631.34.0.937578328513.issue407783@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34137 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407915] largefile support under Linux Message-ID: <1649606631.4.0.0617241674582.issue407915@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34139 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408271] crash in shelve module Message-ID: <1649606631.56.0.605575154293.issue408271@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34144 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408958] pydoc fails on exceptions.html (win2K) Message-ID: <1649606631.95.0.871627613859.issue408958@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34155 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409044] Update tcl/tk/tix versions Message-ID: <1649606632.03.0.909941368491.issue409044@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34158 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408820] 'install -d' fails on BSDI systems. Message-ID: <1649606631.82.0.511834864248.issue408820@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34152 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408959] pydoc fails on exceptions.html (win2K) Message-ID: <1649606631.99.0.501394913997.issue408959@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34156 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408098] python -i loses __future__ Message-ID: <1649606631.51.0.893820227229.issue408098@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34142 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408884] File not closed Message-ID: <1649606631.89.0.484218019924.issue408884@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34153 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409049] Form geometry manager for Tkinter.py Message-ID: <1649606632.15.0.304104977039.issue409049@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34162 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409045] Update tcl/tk/tix versions (2) Message-ID: <1649606632.07.0.37905881196.issue409045@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34159 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409053] Add Tix.py to Lib/lib-tk Message-ID: <1649606632.18.0.84203246628.issue409053@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34163 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408936] Python2.0 re module: greedy regexp bug 2 Message-ID: <1649606631.91.0.334066370881.issue408936@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34154 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409055] Tix Demos Message-ID: <1649606632.2.0.368965075995.issue409055@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34164 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409078] Doc/lib/libui.tex Message-ID: <1649606632.22.0.777799965104.issue409078@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34165 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409230] Python 2.1b1 dumps core on list compr. Message-ID: <1649606632.28.0.695203320388.issue409230@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34167 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409097] sys.excepthook Message-ID: <1649606632.25.0.648111873037.issue409097@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34166 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409231] Python 2.1b1 dumps core on list compr. Message-ID: <1649606632.33.0.129400463313.issue409231@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34168 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409254] User definable block structures Message-ID: <1649606632.38.0.308271214485.issue409254@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34171 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409232] Python 2.1b1 dumps core on list compr. Message-ID: <1649606632.34.0.745176731241.issue409232@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34169 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409307] Create parsermodule.h Message-ID: <1649606632.42.0.556545941055.issue409307@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34173 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409331] distutils does not support ObjC Message-ID: <1649606632.48.0.0678458056158.issue409331@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34175 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409355] Meta-class inheritance problem Message-ID: <1649606632.53.0.966817192396.issue409355@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34177 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409403] Require version in setup.py Message-ID: <1649606632.57.0.346931350472.issue409403@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34178 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409444] Redirect stdout in distutils.spawn Message-ID: <1649606632.68.0.53341875777.issue409444@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34182 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409504] Fix freeze: regex, continuation lines Message-ID: <1649606632.73.0.0313909541625.issue409504@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34184 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409419] gzip.py seek and tell methods are counter-productive (and seek is broken anyway) Message-ID: <1649606632.59.0.173531440197.issue409419@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34179 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409755] Followup to Bug 233033 - 2.1 Builds Fail Message-ID: <1649606632.86.0.983771076486.issue409755@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34189 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409684] pydoc htmls pages that fails or no-info Message-ID: <1649606632.83.0.609070569452.issue409684@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34188 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409911] cPickle holds GIL during I/O Message-ID: <1649606632.99.0.99410601277.issue409911@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34193 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410008] cannot use crypt module Message-ID: <1649606633.06.0.0035557339446.issue410008@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34196 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410046] asynchat: handle excessive response size Message-ID: <1649606633.11.0.254549575746.issue410046@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34198 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:03 +0000 Subject: [issue400723] make unicode_compare a UTF-16 code point order comparison fu Message-ID: <1649606523.36.0.634872723721.issue400723@roundup.psfhosted.org> Change by admin : ---------- github: None -> 32514 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410154] Patch for import case-check on macintosh Message-ID: <1649606633.16.0.517850593009.issue410154@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34200 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410164] pydoc can't find module in current dir Message-ID: <1649606633.26.0.654251599488.issue410164@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34203 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410231] make setup.py do dynamic Tk extensions Message-ID: <1649606633.37.0.671983981246.issue410231@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34206 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410223] Replaces and Replaced-By PEP headers Message-ID: <1649606633.34.0.419455685789.issue410223@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34205 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410155] tokenize.NL undocumented Message-ID: <1649606633.19.0.00472725343642.issue410155@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34201 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410274] sys.prefix isn't always set Message-ID: <1649606633.47.0.12079715805.issue410274@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34209 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410336] pydoc patch for strings & lists Message-ID: <1649606633.5.0.156327219441.issue410336@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34210 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409773] Bug Fix In dircmp class Message-ID: <1649606632.88.0.680204295901.issue409773@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34190 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410407] finishing touches on __future__ support Message-ID: <1649606633.57.0.98407786203.issue410407@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34212 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410395] death module Message-ID: <1649606633.53.0.947392269879.issue410395@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34211 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410473] Python docs contain refs to v1.7 Message-ID: <1649606633.66.0.252751564338.issue410473@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34215 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410541] bdist builds bogus .zips Message-ID: <1649606633.68.0.165487711992.issue410541@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34216 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410608] popen with threads Message-ID: <1649606633.77.0.791684685647.issue410608@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34218 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue409924] rm configure --with-check-import-case Message-ID: <1649606633.01.0.896328243656.issue409924@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34194 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409838] Error in httplib post example Message-ID: <1649606632.9.0.111909984162.issue409838@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34191 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410708] Condition.wait() and KeyboardInterrupt Message-ID: <1649606633.83.0.00527298466479.issue410708@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34220 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410620] pydoc installation w.r.t. RPM. Message-ID: <1649606633.8.0.249834307415.issue410620@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34219 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410878] Distutils should have a Setup parser Message-ID: <1649606633.86.0.0398329046817.issue410878@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34222 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue408798] 5.5 bisect documentation Message-ID: <1649606631.79.0.19445052077.issue408798@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34151 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410547] os.statvfs support for Windows Message-ID: <1649606633.73.0.955122863338.issue410547@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34217 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue411060] pydoc helpe(help) fails Message-ID: <1649606633.98.0.497601449209.issue411060@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34227 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410471] linuxaudiodev lacks Py_BEGIN/END_THREAD Message-ID: <1649606633.64.0.783658643362.issue410471@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34214 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411118] Typo in Python Reference Manual Message-ID: <1649606634.02.0.871146714977.issue411118@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34229 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411138] Fix for #231774: pyconfig.h Message-ID: <1649606634.05.0.645729901254.issue411138@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34231 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411127] README file for Unix not up to date Message-ID: <1649606634.04.0.194981813269.issue411127@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34230 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue411055] Delete unimportable extensions Message-ID: <1649606633.96.0.942332666397.issue411055@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34226 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411213] Platform support: RISC OS, round 2 Message-ID: <1649606634.14.0.685911934146.issue411213@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34234 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411267] s.encode('latin-1') passes non-latin-1 c Message-ID: <1649606634.17.0.712524597711.issue411267@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34235 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411508] httplib does not support user/pass Message-ID: <1649606634.25.0.555656552314.issue411508@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34238 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411834] Misc/BeOS-NOTES Message-ID: <1649606634.37.0.814686655612.issue411834@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34242 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411881] Use of "except:" in logging module Message-ID: <1649606634.42.0.140571637451.issue411881@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34244 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411830] Misc/BeOS-setup.py Message-ID: <1649606634.33.0.492534576085.issue411830@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34241 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410465] Allow pre-encoded strings as filenames Message-ID: <1649606633.6.0.969955164241.issue410465@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34213 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410890] Example of Python startup script Message-ID: <1649606633.88.0.306580794424.issue410890@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34223 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411845] problem on solaris7 Message-ID: <1649606634.4.0.0644772040766.issue411845@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34243 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412036] writexml method in Element class bug Message-ID: <1649606634.57.0.85995832388.issue412036@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34247 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412214] ZipFile constructor leaves files open Message-ID: <1649606634.62.0.767706847575.issue412214@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34249 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412227] explicit regular and arithmetic rshift Message-ID: <1649606634.67.0.849092018563.issue412227@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34250 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412086] curses module is missing some color vars Message-ID: <1649606634.59.0.510335581581.issue412086@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34248 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411996] no "_" variable with displayhook Message-ID: <1649606634.56.0.137494238281.issue411996@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34246 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412229] runtime RTLD_NOW control via sys Message-ID: <1649606634.72.0.457081483178.issue412229@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34251 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412271] licence/license confusion Message-ID: <1649606634.83.0.843806845855.issue412271@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34254 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411191] Refcount bug in PyObject_Unicode Message-ID: <1649606634.11.0.00653532826886.issue411191@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34233 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412252] mimetypes.py uses posixpath not os.path Message-ID: <1649606634.81.0.796760499182.issue412252@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34253 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412553] fix linuxaudiodev handling of EAGAIN Message-ID: <1649606634.97.0.438825638679.issue412553@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34258 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue412672] Backport of revs 2.32, 2.34 of pyexpat Message-ID: <1649606635.01.0.411998431534.issue412672@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34259 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412500] Unstable sort Message-ID: <1649606634.95.0.544248651791.issue412500@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34257 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409311] Python 2.1b1 re module is broken! Message-ID: <1649606632.44.0.0756570684643.issue409311@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34174 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409587] Tools/compiler loses linenos Message-ID: <1649606632.75.0.122078328252.issue409587@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34185 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue412718] Konqueror mis-spelled Message-ID: <1649606635.05.0.805642462581.issue412718@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34261 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413005] Fixes dynload_next.c to check to see library isn't already l Message-ID: <1649606635.06.0.564217075599.issue413005@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34262 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409430] pydoc install broken Message-ID: <1649606632.63.0.0311874618277.issue409430@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34181 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409864] lazy fix for Pings bizarre scoping crash Message-ID: <1649606632.94.0.841517943087.issue409864@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34192 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413011] Port to UnixWare 7.1.x for Python 2.1 Message-ID: <1649606635.09.0.0343684743365.issue413011@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34263 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413171] fix UserDict.get, setdefault, update Message-ID: <1649606635.24.0.384509743024.issue413171@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34267 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413144] sdist can't create empty directories Message-ID: <1649606635.21.0.990890112037.issue413144@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34266 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409683] import tzparse --> fails Message-ID: <1649606632.8.0.033053865237.issue409683@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34187 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413552] Premature decref on object Message-ID: <1649606635.42.0.376964236466.issue413552@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34271 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413333] Improved support for unicode conversions Message-ID: <1649606635.32.0.548142813883.issue413333@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34269 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413320] sys.argv should always be a sequence Message-ID: <1649606635.28.0.267507897517.issue413320@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34268 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413710] getopt module bug. Message-ID: <1649606635.51.0.0227364313459.issue413710@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34273 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413714] ccpython.cc build failure in sep. tree Message-ID: <1649606635.55.0.950123907572.issue413714@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34274 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409354] Meta-class inheritance problem Message-ID: <1649606632.51.0.477792136633.issue409354@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34176 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413582] g++ must be called for c++ extensions Message-ID: <1649606635.45.0.830515181649.issue413582@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34272 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413750] Cygwin entry for README file Message-ID: <1649606635.57.0.305684661881.issue413750@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34275 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409420] gzip.py seek and tell methods are counter-productive (and seek is broken anyway) Message-ID: <1649606632.61.0.604147029127.issue409420@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34180 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410979] Python 2.1 breaks py-qt Message-ID: <1649606633.9.0.891192557937.issue410979@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34224 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413876] rfc822.AddressList methods incorrect Message-ID: <1649606635.71.0.470928285253.issue413876@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34279 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413767] warn about __debug__ assignment Message-ID: <1649606635.67.0.285488697914.issue413767@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34277 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410993] linuxaudiodev fails during "make test". Message-ID: <1649606633.93.0.453233533629.issue410993@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34225 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413912] Disutils/unixcompiler.py needs ".m" extension Message-ID: <1649606635.75.0.651085729081.issue413912@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34280 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413956] 2.1b2 CVS termios no longer compiles Message-ID: <1649606635.79.0.978683631605.issue413956@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34281 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413766] Reimplementation of multifile.py Message-ID: <1649606635.63.0.943481596618.issue413766@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34276 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413980] core dump with regrtest.py on SGI Message-ID: <1649606635.82.0.291550763224.issue413980@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34282 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414080] site-packages initialization Message-ID: <1649606636.02.0.578504575496.issue414080@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34287 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue414055] Date/time functions Message-ID: <1649606635.96.0.715933162378.issue414055@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34285 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414228] Wrong PYTHONPATH in Makefile Message-ID: <1649606636.07.0.578071929364.issue414228@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34288 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414326] SSL fix for OpenSSL-0.9.6+ Message-ID: <1649606636.15.0.0925519565228.issue414326@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34291 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414354] PyArg_ParseTupleAndKeywords is misnamed Message-ID: <1649606636.19.0.855713750589.issue414354@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34292 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414316] Script installation failures Message-ID: <1649606636.11.0.381473566549.issue414316@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34290 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414391] Inplace optimization for binary ops Message-ID: <1649606636.24.0.949108652073.issue414391@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34294 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411713] __cmp__ and __rcmp__ have same descripti Message-ID: <1649606634.31.0.711121922481.issue411713@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34240 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414750] fix for bug #414743 Message-ID: <1649606636.37.0.689339789272.issue414750@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34297 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414743] Access violation in call to map Message-ID: <1649606636.31.0.33470628153.issue414743@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34296 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414775] Add --skip-build option to bdist command Message-ID: <1649606636.4.0.25471923604.issue414775@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34298 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414940] locale.format broken in 2.1b2 Message-ID: <1649606636.46.0.0834109840124.issue414940@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34300 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue415111] SocketServer doesn't close connection Message-ID: <1649606636.64.0.650448044954.issue415111@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34303 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:51 +0000 Subject: [issue407301] Win32: pydoc command isn't executable Message-ID: <1649606631.0.0.477059174858.issue407301@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34125 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue415227] Solaris pkgtool bdist command Message-ID: <1649606636.71.0.969629896631.issue415227@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34305 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue415228] HP-UX packaging command Message-ID: <1649606636.85.0.618848458705.issue415228@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34306 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue415331] add setacl/getacl to imaplib Message-ID: <1649606636.88.0.584560460541.issue415331@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34307 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:52 +0000 Subject: [issue409287] ssl fix when using _socketobject Message-ID: <1649606632.4.0.550634708377.issue409287@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34172 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue415226] new base class for binary packaging Message-ID: <1649606636.66.0.234785871138.issue415226@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34304 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue415492] Compiler generates relative filenames Message-ID: <1649606636.94.0.388680668605.issue415492@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34308 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411948] SMIME support? Message-ID: <1649606634.53.0.157997033046.issue411948@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34245 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue415634] Empty section in lib ref not tagged Message-ID: <1649606637.18.0.0733478280027.issue415634@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34314 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue415692] smarter temporary file object Message-ID: <1649606637.26.0.069256590118.issue415692@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34316 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue415879] Exception.__init__() causes segfault Message-ID: <1649606637.36.0.199636866252.issue415879@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34319 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue415660] Weak references cause illegal memory ref Message-ID: <1649606637.2.0.150471611583.issue415660@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34315 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue415629] setup.py: readline req. ncurses (SuSE) Message-ID: <1649606637.14.0.677755920426.issue415629@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34313 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416039] pstats browser crashes Message-ID: <1649606637.49.0.983461713837.issue416039@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34324 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416034] Confusing error message for top global Message-ID: <1649606637.45.0.754724576166.issue416034@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34323 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416089] import problem with 2.1c1 Message-ID: <1649606637.61.0.37669388806.issue416089@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34326 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416079] Improvements in 'telnetlib' Message-ID: <1649606637.57.0.768658134286.issue416079@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34325 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416023] Improved debug output for 'telnetlib' Message-ID: <1649606637.43.0.887854446237.issue416023@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34322 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue415777] Patch for 414940:new grouping strategy Message-ID: <1649606637.33.0.592415217138.issue415777@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34318 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416181] 2.1c1 builds strangely on Solaris Message-ID: <1649606637.66.0.353283278961.issue416181@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34327 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410207] correction to section 2.3: 'apply' Message-ID: <1649606633.31.0.155878348195.issue410207@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34204 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416220] pstats.py interactive read function fix Message-ID: <1649606637.87.0.511416832939.issue416220@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34330 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue412230] mailbox.BabylMailbox, missing headers Message-ID: <1649606634.77.0.838537246539.issue412230@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34252 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414948] Check dynload_next.c (see description) Message-ID: <1649606636.49.0.175176332817.issue414948@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34301 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416187] API problem causes unicode memory leak Message-ID: <1649606637.75.0.620638836325.issue416187@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34328 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416250] 2.1c1 thread_pthread: unused vrbl clean Message-ID: <1649606638.02.0.560791083683.issue416250@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34337 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416254] documentation for new imaplib methods Message-ID: <1649606638.09.0.171925912164.issue416254@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34340 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416253] additions to imaplib Message-ID: <1649606638.06.0.704450277317.issue416253@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34339 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416298] Fix in typo in WeakValueDictionary Message-ID: <1649606638.16.0.440754755774.issue416298@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34343 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416251] 2.1c1 mmapmodule: unused vrbl cleanup Message-ID: <1649606638.04.0.515106683837.issue416251@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34338 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416530] No notes for building on Mac OS X 10.0 Message-ID: <1649606638.35.0.326105304525.issue416530@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34349 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416480] weakref needs better test suite Message-ID: <1649606638.24.0.23442748995.issue416480@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34346 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416670] MatchObjects not deepcopy()able Message-ID: <1649606638.42.0.00890454344672.issue416670@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34351 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416696] --with-threads fail for 2.1c2 on HPUX 11 Message-ID: <1649606638.56.0.2590158578.issue416696@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34354 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416677] re.groups misbehaviour Message-ID: <1649606638.5.0.781755518967.issue416677@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34352 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416943] 2.1 segfaults on pydoc HTTP Message-ID: <1649606638.69.0.394580661877.issue416943@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34359 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416906] readlines() corrupts file opened for 'a' Message-ID: <1649606638.66.0.705069663398.issue416906@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34358 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416688] Python 2.1c2 build using --with-cxx Message-ID: <1649606638.53.0.352535259555.issue416688@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34353 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414279] incorrect example in asyncore mod. docs Message-ID: <1649606636.09.0.00629663027651.issue414279@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34289 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416901] 2.1 on OpenBSD 2.8: lots of bugs @ build Message-ID: <1649606638.64.0.516818891147.issue416901@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34357 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410161] Create parsermodule.h Message-ID: <1649606633.23.0.997745289522.issue410161@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34202 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416951] Problem with dictionary default argument Message-ID: <1649606638.74.0.218606091763.issue416951@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34361 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411612] cgi.py sometimes ignores QUERY_STRING Message-ID: <1649606634.27.0.596483025085.issue411612@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34239 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue417081] termios modernization Message-ID: <1649606638.81.0.337595696418.issue417081@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34364 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue417093] Case sensitive import: dir and .py file w/ same name Message-ID: <1649606638.85.0.433043313936.issue417093@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34366 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416953] Speed up ASCII decoding Message-ID: <1649606638.76.0.0499737212606.issue416953@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34362 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410146] python 2.1b shelve is broken Message-ID: <1649606633.13.0.80056808566.issue410146@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34199 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue417291] [Solaris] errors in _curses extension Message-ID: <1649606638.98.0.663490428669.issue417291@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34372 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411188] Fix for #121965 ported to 2.0 Message-ID: <1649606634.09.0.299071470548.issue411188@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34232 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue417212] curses.newwin can return pads Message-ID: <1649606638.91.0.407048699384.issue417212@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34369 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue417178] uu.py doesn't close in_file on exception Message-ID: <1649606638.9.0.824830788903.issue417178@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34368 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue417290] [Solaris] errors in _curses extension Message-ID: <1649606638.95.0.351035654122.issue417290@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34371 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417331] makestup should be called correctly Message-ID: <1649606639.0.0.67527703869.issue417331@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34373 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417472] Unneccessary warning message Message-ID: <1649606639.08.0.202377177832.issue417472@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34376 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue417176] MultiFile.read() includes CRLF boundary Message-ID: <1649606638.86.0.159625350168.issue417176@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34367 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:53 +0000 Subject: [issue410267] some additional constants for termios Message-ID: <1649606633.41.0.721733484519.issue410267@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34207 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:54 +0000 Subject: [issue411374] [Irix] SIGINT causes crash Message-ID: <1649606634.19.0.0806151268779.issue411374@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34236 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417418] Python 2.1 compile error on HPUX Message-ID: <1649606639.04.0.627946382473.issue417418@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34375 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417587] compiler warnings compiling 2.1 Message-ID: <1649606639.37.0.132299591047.issue417587@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34380 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417491] UnixWare BUILD *STILL* uses ld -G Message-ID: <1649606639.32.0.9745161932.issue417491@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34378 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417795] Fix memory cycles in Weak*Dictionary Message-ID: <1649606639.47.0.544088008989.issue417795@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34383 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417634] configuring without C++ compiler name Message-ID: <1649606639.41.0.476213847265.issue417634@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34381 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417802] mode_t not appropriate for chmod in BCC Message-ID: <1649606639.54.0.401352789248.issue417802@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34385 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417853] pydoc uses deprecated regex module Message-ID: <1649606639.68.0.369928300918.issue417853@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34388 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417779] Fails to build on RH 5.1 Message-ID: <1649606639.44.0.601948154417.issue417779@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34382 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417913] odd behavior when reloading "exceptions" Message-ID: <1649606639.73.0.573345963332.issue417913@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34390 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue418173] Unicode problem in Tkinter under Windows Message-ID: <1649606639.95.0.8376789548.issue418173@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34398 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418296] WinMain.c should use WIN32_LEAN_AND_MEAN Message-ID: <1649606640.02.0.419451618915.issue418296@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34401 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue418156] V2.1 installer not working on NT4 SP5 Message-ID: <1649606639.93.0.42204755205.issue418156@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34397 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418390] static member functions Message-ID: <1649606640.11.0.951171000581.issue418390@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34404 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue418011] Updated zipfile docs Message-ID: <1649606639.89.0.663302363119.issue418011@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34395 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414371] bad gcc/glibc config Message-ID: <1649606636.22.0.727040708495.issue414371@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34293 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417949] Missing #defines for Borland compiler Message-ID: <1649606639.84.0.525738812619.issue417949@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34393 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414492] adds a gc.get_generation function Message-ID: <1649606636.27.0.270459980026.issue414492@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34295 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416526] Regular expression tests: SEGV on Mac OS Message-ID: <1649606638.28.0.721150267559.issue416526@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34348 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418489] unittest string format error Message-ID: <1649606640.22.0.105794800507.issue418489@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34407 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418369] Typo in distutils (1.5 and 2.1) Message-ID: <1649606640.08.0.938316209961.issue418369@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34403 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418626] maximum recursion limit exceeded (2.1) Message-ID: <1649606640.29.0.290445552922.issue418626@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34410 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418212] makesetup and "-Wl,-rpath=..." Message-ID: <1649606640.0.0.388272906358.issue418212@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34400 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue412682] Cannot play solitaire - buggy Canvas.py? Message-ID: <1649606635.03.0.885479537538.issue412682@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34260 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419145] SocketServer test (UDP/TCP Thread/Fork) Message-ID: <1649606640.53.0.757182573849.issue419145@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34418 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417943] xreadlines documented twice for file obj Message-ID: <1649606639.81.0.96373960935.issue417943@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34392 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419153] Issue warning when LC_NUMERIC is not "C" Message-ID: <1649606640.56.0.4805837326.issue419153@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34419 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418465] patches for python-mode.el V4.1 Message-ID: <1649606640.17.0.771239841281.issue418465@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34406 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:56 +0000 Subject: [issue414899] Pyton1.5.2: urllib.always_safe variable Message-ID: <1649606636.44.0.316266555831.issue414899@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34299 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue415950] Problem with SSL and socketmodule Message-ID: <1649606637.39.0.985040320002.issue415950@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34320 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416247] 2.1c1 stringobject: unused vrbl cleanup Message-ID: <1649606637.96.0.258369988814.issue416247@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34334 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue418147] Fixes to allow compiling w/ Borland Message-ID: <1649606639.91.0.649626727352.issue418147@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34396 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419201] sys.setdefaultencoding() missing Message-ID: <1649606640.6.0.148791215979.issue419201@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34421 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417833] pydoc HTTP reload failure Message-ID: <1649606639.57.0.317088719485.issue417833@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34386 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419012] #define collision: LONG_BIT Message-ID: <1649606640.44.0.453051959428.issue419012@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34415 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419070] Fix #416670: register SRE types Message-ID: <1649606640.5.0.481572738326.issue419070@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34417 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419062] python 2.1 : building pbs on AIX 4.3.2 Message-ID: <1649606640.47.0.955942857577.issue419062@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34416 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419434] Tutorial contains wrong sample code. Message-ID: <1649606640.73.0.678241797886.issue419434@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34425 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419213] win32all: combrowse.py causes crash/`95 Message-ID: <1649606640.64.0.862371698059.issue419213@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34422 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue413087] support for Borland C++ compiler Message-ID: <1649606635.12.0.56647916204.issue413087@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34264 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419651] Metrowerks on Mac adds 0x itself Message-ID: <1649606640.87.0.263528919064.issue419651@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34430 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419649] Metrowerks library adds 0x itself Message-ID: <1649606640.84.0.63534160201.issue419649@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34429 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418392] METH_OLDARGS allows bogus keywords Message-ID: <1649606640.15.0.863540289148.issue418392@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34405 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420011] \u escapes don't work inside ranges Message-ID: <1649606641.0.0.310686584181.issue420011@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34434 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419873] ThreadingTCPServer invalidating sockets Message-ID: <1649606640.92.0.436243820905.issue419873@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34432 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419176] Fix 418977: Properly trace cellobjects Message-ID: <1649606640.58.0.544379159887.issue419176@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34420 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419648] Carbon support for distutils on Mac Message-ID: <1649606640.82.0.679072050078.issue419648@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34428 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416573] makesockaddr() AF_UNIX ignores sun_len Message-ID: <1649606638.4.0.0105077011478.issue416573@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34350 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420399] wrong HTML ("trademark" symbols?) Message-ID: <1649606641.24.0.564837809821.issue420399@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34439 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue416248] 2.1c1 unicodeobject: unused vrbl cleanup Message-ID: <1649606637.98.0.492093756096.issue416248@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34335 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420498] no docs for pydoc Message-ID: <1649606641.38.0.14788124652.issue420498@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34443 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420565] makes setup.py search sys.prefix Message-ID: <1649606641.44.0.346462247501.issue420565@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34445 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420720] Starting many threads causes core dump Message-ID: <1649606641.5.0.720814819253.issue420720@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34447 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416508] Reproductible parser crash with os.fdopen() Message-ID: <1649606638.25.0.291279976121.issue416508@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34347 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420343] SystemError from tuple() builtin Message-ID: <1649606641.2.0.160621648344.issue420343@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34438 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420216] bad links in v2.1 docs Message-ID: <1649606641.03.0.772621863215.issue420216@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34435 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418898] __debug__ assignment via setattr Message-ID: <1649606640.38.0.131837503638.issue418898@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34413 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420725] urllib: MIME header for local files Message-ID: <1649606641.57.0.180235688649.issue420725@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34449 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue421212] PythonPath registry value ignored in Py2 Message-ID: <1649606641.74.0.250410472567.issue421212@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34454 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420851] Missing docs for iteration support. Message-ID: <1649606641.69.0.869389240586.issue420851@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34453 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420724] urllib2 and non existing local files Message-ID: <1649606641.54.0.0717430313955.issue420724@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34448 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue421250] os.execvp fails with empty argument list Message-ID: <1649606641.8.0.752386098685.issue421250@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34456 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue421384] bad floating point precision Message-ID: <1649606641.84.0.613426769587.issue421384@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34457 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420601] --with-next-framework very broken on OSX Message-ID: <1649606641.47.0.426400869411.issue420601@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34446 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue421533] testing for != with or Message-ID: <1649606641.93.0.671812687201.issue421533@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34459 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417508] 'hypot' not found with Borland C++Builde Message-ID: <1649606639.35.0.994827479368.issue417508@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34379 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue421709] Access { thread id : frame } dict Message-ID: <1649606641.96.0.0454674064343.issue421709@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34460 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue421878] File in a directory with a special chara Message-ID: <1649606642.02.0.623950104525.issue421878@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34462 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420230] fileinput deletes backups without warnin Message-ID: <1649606641.07.0.658594678426.issue420230@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34436 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419459] urllib adds extra CRLF in posted data Message-ID: <1649606640.76.0.63700089437.issue419459@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34426 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue421728] readline returns '' when interrupted Message-ID: <1649606641.99.0.274385173097.issue421728@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34461 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue421999] wrong priority doc for ** vs unary - Message-ID: <1649606642.18.0.169351890042.issue421999@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34466 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422004] Missing "fixup" for "exceptions" module Message-ID: <1649606642.21.0.327110237492.issue422004@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34467 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417796] illegal version 1.0.2pre Message-ID: <1649606639.51.0.0873910761549.issue417796@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34384 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue416423] Python2.0-Darwin - test_rc failed Message-ID: <1649606638.18.0.718064304096.issue416423@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34344 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422088] [OSF1 alpha] string.replace() Message-ID: <1649606642.26.0.0579618623456.issue422088@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34468 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422108] Error in rich comparisons Message-ID: <1649606642.35.0.0310605992737.issue422108@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34470 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422177] Results from .pyc differs from .py Message-ID: <1649606642.41.0.408707202357.issue422177@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34472 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422320] 2.2a0 #include termio.h fails on FreeBSD Message-ID: <1649606642.55.0.144621108244.issue422320@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34475 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422203] math.sqrt() broken on parisc-linux Message-ID: <1649606642.47.0.194188218663.issue422203@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34473 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue421922] Implement rich comparison for dicts Message-ID: <1649606642.11.0.505291872622.issue421922@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34464 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:59 +0000 Subject: [issue417388] pythonw.exe will not work Message-ID: <1649606639.02.0.181308291865.issue417388@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34374 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419462] python 2.0 compile fails on mandrake 8 Message-ID: <1649606640.78.0.484224151283.issue419462@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34427 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue421893] Cleanup GC API Message-ID: <1649606642.05.0.362424567483.issue421893@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34463 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422265] Python 2.1 curses build failure on HPUX Message-ID: <1649606642.5.0.147627645812.issue422265@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34474 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422678] argv is modified in Py_Main() Message-ID: <1649606642.84.0.313515743325.issue422678@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34482 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422471] Install IDLE Help File Message-ID: <1649606642.77.0.94790450254.issue422471@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34480 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422702] dbhash.open default Message-ID: <1649606642.93.0.802600811065.issue422702@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34484 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422821] re.sub raise error with repl is '\\' Message-ID: <1649606642.97.0.241230372997.issue422821@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34485 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423033] time module docs vs implementation Message-ID: <1649606643.02.0.202640946389.issue423033@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34486 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423087] A small typo in weakref documentation Message-ID: <1649606643.05.0.256476302062.issue423087@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34487 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:57 +0000 Subject: [issue415514] "%#x" % 0 caused assertion failure/abort Message-ID: <1649606637.03.0.67048154628.issue415514@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34309 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423140] adds encode- and decodestring to quopri Message-ID: <1649606643.14.0.740674392312.issue423140@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34489 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420476] Python 2.1 'make test' failures: AIX 4.2 Message-ID: <1649606641.33.0.366491080583.issue420476@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34441 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:55 +0000 Subject: [issue414059] Floating point second in date/time tuple Message-ID: <1649606635.99.0.670353895486.issue414059@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34286 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423224] unittest fixture finder Message-ID: <1649606643.31.0.271973534387.issue423224@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34493 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423221] Add a few Windows encoding aliases Message-ID: <1649606643.27.0.214645816699.issue423221@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34492 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423157] Python 2.1 Idle does not run on Win98 Message-ID: <1649606643.2.0.37107054472.issue423157@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34490 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423429] very minor nit in library ref Message-ID: <1649606643.4.0.227050704303.issue423429@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34496 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423472] Hang in select.select() and time.sleep() Message-ID: <1649606643.46.0.0686421855468.issue423472@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34497 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423262] Change module attribute get & set Message-ID: <1649606643.36.0.432173652891.issue423262@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34494 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423181] small speedup in object rich comparisons Message-ID: <1649606643.23.0.0503315960843.issue423181@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34491 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422686] sys.path initialization in embedded Pyth Message-ID: <1649606642.88.0.808455049878.issue422686@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34483 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423728] improper value of sys.argv with '-c' opt Message-ID: <1649606643.53.0.726556295104.issue423728@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34499 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423394] Fix pulldom to preserve ns attributes Message-ID: <1649606643.38.0.00875689638953.issue423394@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34495 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:02 +0000 Subject: [issue422329] Python 2.1 site.py patch Message-ID: <1649606642.63.0.474090938611.issue422329@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34476 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419903] Non-contiguous indexing and slicing Message-ID: <1649606640.96.0.792229331773.issue419903@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34433 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423830] Spurious Install Warning Message-ID: <1649606643.65.0.616919701321.issue423830@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34503 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423851] Python 2.1 Falling Over On Win2K Message-ID: <1649606643.71.0.74535002911.issue423851@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34504 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue424002] sys.executable not reliable Message-ID: <1649606643.73.0.0864260267646.issue424002@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34505 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue424106] PyImport_ExecCodeModule not correct Message-ID: <1649606643.75.0.565408897071.issue424106@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34506 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423721] failure in urllib exception handling Message-ID: <1649606643.49.0.922449409157.issue423721@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34498 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423759] fix on Python bugs 422678 and 423728 Message-ID: <1649606643.57.0.996458615239.issue423759@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34500 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue423779] sgmllib.py not good at handling
Message-ID: <1649606643.6.0.480401852502.issue423779@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34501 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue424335] richcompare for strings Message-ID: <1649606643.8.0.87608017138.issue424335@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34507 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue424552] Example function # 4.4 is incorrect Message-ID: <1649606643.85.0.805023908563.issue424552@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34509 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue424776] SMTP Example does not work Message-ID: <1649606644.02.0.0193102309291.issue424776@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34513 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue424951] ThreadingTCPServer file handle errors. Message-ID: <1649606644.06.0.94398480849.issue424951@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34515 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue424962] inconsistent result with __eq__ Message-ID: <1649606644.1.0.145240728263.issue424962@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34516 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue425261] re propagates opaque exceptions Message-ID: <1649606644.22.0.315767497493.issue425261@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34519 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420771] 'rw' option to open: is it a bug? Message-ID: <1649606641.64.0.383035353091.issue420771@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34451 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue419419] Support ExtensionClass in pydoc, inspect Message-ID: <1649606640.71.0.457678607425.issue419419@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34424 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue425242] Patch which "inlines" small dictionaries Message-ID: <1649606644.19.0.532026027825.issue425242@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34518 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue425732] shorter code with 'i++' Message-ID: <1649606644.42.0.0708025129932.issue425732@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34523 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue425325] Logs from Purify and Insure(?) Message-ID: <1649606644.33.0.306421674767.issue425325@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34521 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue425821] pygettext.py sorted output Message-ID: <1649606644.47.0.0108283954848.issue425821@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34524 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue421214] splitlist() for raw and unicode strings Message-ID: <1649606641.77.0.0610303734155.issue421214@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34455 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue425836] Reference leak in filter() Message-ID: <1649606644.5.0.20484957606.issue425836@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34525 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426345] Problem with addition Message-ID: <1649606644.61.0.894416859876.issue426345@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34529 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:03:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:03:58 +0000 Subject: [issue417030] print '%*s' fails for unicode string Message-ID: <1649606638.79.0.961464074041.issue417030@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34363 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426473] Need docs for writing PyUnit-based tests Message-ID: <1649606644.62.0.0509192554283.issue426473@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34530 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426539] Math-module lacks some docs and funcs Message-ID: <1649606644.66.0.0621682443989.issue426539@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34532 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426504] urllib fail with MS proxy Message-ID: <1649606644.64.0.535060280007.issue426504@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34531 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426866] urllib and socket fail with MS proxy Message-ID: <1649606644.87.0.371275195515.issue426866@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34538 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue425370] socketmodule SSL free calls in wrong order Message-ID: <1649606644.36.0.86439010067.issue425370@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34522 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426880] Tkinter Listbox missing methods Message-ID: <1649606644.9.0.00699737941697.issue426880@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34539 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426892] grid_location class at the wrong place Message-ID: <1649606644.94.0.741144445036.issue426892@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34540 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427036] [66.6] != [66.599999999999994]? Message-ID: <1649606645.03.0.346764433841.issue427036@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34542 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427073] DLINCLDIR defined incorrectly Message-ID: <1649606645.08.0.669851732938.issue427073@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34544 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426960] fork problem with Python-2.1 Message-ID: <1649606644.97.0.148286589885.issue426960@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34541 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:00 +0000 Subject: [issue418977] Access Violation in PyCell_Set Message-ID: <1649606640.41.0.79892539.issue418977@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34414 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427345] CGIHTTPServer fix for Windows Message-ID: <1649606645.13.0.194821805918.issue427345@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34546 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427604] Lang Ref, grammar productions should be hyperlinked Message-ID: <1649606645.2.0.25849782492.issue427604@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34548 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427783] Lang Ref section 4.1 s/is/in/ Message-ID: <1649606645.3.0.183389218639.issue427783@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34551 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue428342] [IRIX] crash on int->float conversio Message-ID: <1649606645.49.0.996408542954.issue428342@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34556 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue428391] Error in PySequence_Fast_GET_ITEM doc Message-ID: <1649606645.52.0.282034732629.issue428391@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34557 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427985] optional "listen" parameter in asyncore Message-ID: <1649606645.32.0.435925851994.issue427985@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34552 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue428326] Timer class for threading Message-ID: <1649606645.43.0.870681068114.issue428326@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34555 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427060] pydoc: inconsistent behavior for imports Message-ID: <1649606645.06.0.621647470241.issue427060@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34543 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue428972] any plan for ConfigParser supports XML? Message-ID: <1649606645.69.0.524319026584.issue428972@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34562 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429024] Deal with some unary ops at compile time Message-ID: <1649606645.72.0.783486820333.issue429024@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34563 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429031] Text widget, bindtags and Tabs Message-ID: <1649606645.75.0.604460670424.issue429031@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34564 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426711] Floating Point Curiosity in Python 2.1 Message-ID: <1649606644.74.0.948747767873.issue426711@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34534 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue428724] SystemError on import w/ invalid package Message-ID: <1649606645.64.0.224732015261.issue428724@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34560 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429070] Thread.getDaemon()should be isDaemon() Message-ID: <1649606645.82.0.131055958262.issue429070@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34566 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429059] No docs for os.getenv() Message-ID: <1649606645.79.0.782640971721.issue429059@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34565 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429171] sgmllib - leading spaces in declaration Message-ID: <1649606645.89.0.922286672354.issue429171@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34569 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429193] CGIHTTPServer crashes Explorer in WinME Message-ID: <1649606645.93.0.169780566524.issue429193@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34570 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429357] non-greedy regexp duplicating match bug Message-ID: <1649606645.99.0.290561330661.issue429357@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34572 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue429442] Cygwin sys.platform/get_platform() patch Message-ID: <1649606646.07.0.784621981841.issue429442@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34574 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue429611] doc build on win32 with MiKTeX et al. Message-ID: <1649606646.21.0.0431745373452.issue429611@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34578 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue429614] pythonpath and optimize def. before init Message-ID: <1649606646.25.0.481295451505.issue429614@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34579 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue429542] Bugfix for libsmtp example Message-ID: <1649606646.11.0.817719413614.issue429542@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34575 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue424856] Better way to read files from ZipFiles Message-ID: <1649606644.04.0.515449142008.issue424856@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34514 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue428320] rich comparisons as operator.__lt__ etc. Message-ID: <1649606645.38.0.404577313438.issue428320@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34554 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430269] python -U breaks import with 2.1 Message-ID: <1649606646.45.0.545917415971.issue430269@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34585 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430706] Persistent connections in BaseHTTPServer Message-ID: <1649606646.52.0.285762549185.issue430706@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34587 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430627] Fixes for templates/module.tex file Message-ID: <1649606646.51.0.967154330028.issue430627@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34586 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427524] path formatter between unix and windows Message-ID: <1649606645.18.0.655290320232.issue427524@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34547 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430753] Python 2.1 build fails on hp-ux 11 Message-ID: <1649606646.55.0.232072223336.issue430753@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34588 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue431191] termios, Python 2.1 and 1.5.2, AIX, SCO Message-ID: <1649606646.79.0.62161140228.issue431191@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34597 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430991] wrong co_lnotab Message-ID: <1649606646.73.0.546620131464.issue430991@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34594 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430986] Buglet in PyUnicode_FromUnicode Message-ID: <1649606646.7.0.371317434901.issue430986@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34593 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue431257] profile/trace dispatch speed-up Message-ID: <1649606646.82.0.586446348957.issue431257@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34598 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430849] binascii.a2b_base64(""): internal error Message-ID: <1649606646.66.0.770469301493.issue430849@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34591 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430948] Performance improvement for profiler Message-ID: <1649606646.68.0.250758428744.issue430948@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34592 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue431886] listcomp syntax too confusing (tuples) Message-ID: <1649606646.92.0.630500125191.issue431886@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34602 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue429554] PyList_SET_ITEM documentation omission Message-ID: <1649606646.14.0.0159495634942.issue429554@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34576 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432247] Deprecated Module regsub Message-ID: <1649606647.04.0.0602523303732.issue432247@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34605 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430846] faster string-decoding in base64.py Message-ID: <1649606646.63.0.601300932685.issue430846@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34590 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue431899] tkfileDialog on NT makes float fr specif Message-ID: <1649606647.07.0.454258022601.issue431899@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34606 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue429957] Add some more EBCDIC encodings Message-ID: <1649606646.28.0.523780794412.issue429957@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34580 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432117] Updated PullDOM patch Message-ID: <1649606647.09.0.802772737618.issue432117@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34607 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue431557] issue with include/cStringIO.h and C++ Message-ID: <1649606646.87.0.882712182291.issue431557@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34600 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432369] ConfigParser: problem w/ mixed-case opts Message-ID: <1649606647.2.0.942523050574.issue432369@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34612 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432208] dict.keys() and dict.values() not new Message-ID: <1649606647.14.0.263569119151.issue432208@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34609 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432457] Readline 4.2 Patch Message-ID: <1649606647.31.0.0170941978286.issue432457@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34616 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432401] unicode encoding error callbacks Message-ID: <1649606647.28.0.89355540649.issue432401@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34615 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432384] Recursion in PyString_AsEncodedString? Message-ID: <1649606647.25.0.580868907562.issue432384@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34614 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:01 +0000 Subject: [issue420828] Marshal fails on load of big tuple. Message-ID: <1649606641.67.0.0497363175936.issue420828@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34452 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:03 +0000 Subject: [issue424606] (string|unicode).(|r|l)strip Message-ID: <1649606643.98.0.467881507329.issue424606@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34511 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432552] PyLong_AsLongLong() problems Message-ID: <1649606647.38.0.600430034686.issue432552@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34619 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432183] PEP-259: skip printing newline*2 Message-ID: <1649606647.12.0.27415269758.issue432183@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34608 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427698] objects with __eq__ are not hashable Message-ID: <1649606645.23.0.117534689261.issue427698@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34549 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue428289] Integrates log4p Message-ID: <1649606645.35.0.169392927334.issue428289@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34553 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432621] httplib: multiple Set-Cookie headers Message-ID: <1649606647.42.0.560869723214.issue432621@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34621 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432786] Python 2.1 test_locale fails Message-ID: <1649606647.49.0.362400748436.issue432786@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34622 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue428555] IDLE crashes when running Tkinter code Message-ID: <1649606645.57.0.106474252142.issue428555@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34559 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432501] Problem with urllib and proxies / Win32 Message-ID: <1649606647.36.0.715089456082.issue432501@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34618 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432570] overlapping groups ? Message-ID: <1649606647.4.0.739758032164.issue432570@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34620 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432497] curses module doesn't build on HP-UX Message-ID: <1649606647.33.0.54519297548.issue432497@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34617 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433027] SRE: (?-flag) is not supported. Message-ID: <1649606647.6.0.6413481477.issue433027@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34624 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433024] SRE: (?flag) isn't properly scoped Message-ID: <1649606647.53.0.77964831887.issue433024@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34623 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433030] SRE: Atomic Grouping (?>...) is not supported Message-ID: <1649606647.76.0.293152016423.issue433030@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34627 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433029] SRE: posix classes aren't supported Message-ID: <1649606647.72.0.815525938237.issue433029@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34626 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433031] SRE: x++ isn't supported Message-ID: <1649606647.83.0.987484136893.issue433031@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34628 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433228] repr(list) woes when len(list) big Message-ID: <1649606647.92.0.477504401933.issue433228@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34631 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433028] SRE: (?flag:...) is not supported Message-ID: <1649606647.64.0.944937205922.issue433028@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34625 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430030] Avoid multiple BOMs in UTF-16 streams Message-ID: <1649606646.31.0.040234420089.issue430030@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34581 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433481] No way to link python itself with C++ Message-ID: <1649606648.0.0.967428627701.issue433481@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34634 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434008] sharedinstall must use $prefix Message-ID: <1649606648.35.0.593914285863.issue434008@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34643 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue433854] Wrong sys.path in weird situation Message-ID: <1649606648.22.0.268749354437.issue433854@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34639 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue433775] module build dir first in test import Message-ID: <1649606648.16.0.101470575284.issue433775@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34638 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue433537] better cross-compilation support Message-ID: <1649606648.02.0.902287768081.issue433537@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34635 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue433882] UTF-8: unpaired surrogates mishandled Message-ID: <1649606648.29.0.537737778109.issue433882@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34641 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue433625] bug in PyThread_release_lock() Message-ID: <1649606648.11.0.649425910166.issue433625@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34637 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433233] 2.0.1c1: statcache.py is broken (syntax) Message-ID: <1649606647.94.0.211155462182.issue433233@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34632 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue433875] 2.1 nocaret.py: SyntaxError Message-ID: <1649606648.26.0.587595770113.issue433875@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34640 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue433904] rexec: all s_* methods return None only Message-ID: <1649606648.31.0.865710301669.issue433904@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34642 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434199] ftplib changes CRLF to LF on Windows Message-ID: <1649606648.49.0.105280998796.issue434199@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34646 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434186] 0x80000000/2 != 0x80000000>>1 Message-ID: <1649606648.46.0.7888884611.issue434186@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34645 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434479] os.listdir loses on linux w/NTFS vols Message-ID: <1649606648.55.0.281709125028.issue434479@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34648 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434329] Expose tk_chooseDirectory in tkFileDialo Message-ID: <1649606648.52.0.443228915124.issue434329@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34647 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434743] rexec bug / doc bug? Message-ID: <1649606648.61.0.845600718382.issue434743@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34650 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue433619] NAMESPACE support in imaplib.py Message-ID: <1649606648.06.0.476545668938.issue433619@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34636 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434547] Problems with C++ ext. on Tru64 Message-ID: <1649606648.58.0.472805350522.issue434547@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34649 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434989] Possible bug in parsermodule.c Message-ID: <1649606648.75.0.370888095997.issue434989@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34654 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue435026] SGI cores on 1.0 / 0 Message-ID: <1649606648.8.0.850747769796.issue435026@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34656 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433234] Problems building under HP-UX 11.0 Message-ID: <1649606647.96.0.437591480528.issue433234@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34633 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue435381] Distutils patches for OS/2+EMX support Message-ID: <1649606648.84.0.143190149167.issue435381@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34658 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue435066] PyObject_ClearWeakRefs misdocumented Message-ID: <1649606648.82.0.9255596816.issue435066@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34657 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427749] Patch for bug #419390 (base64.py) Message-ID: <1649606645.26.0.782366933208.issue427749@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34550 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue435455] Python 2.0.1c1 fails to build on RH7.1 Message-ID: <1649606648.95.0.949597855156.issue435455@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34660 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue435446] Python.h not found while building extent Message-ID: <1649606648.9.0.948352711751.issue435446@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34659 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434988] Possible bug in _cursesmodule.c Message-ID: <1649606648.72.0.250570729344.issue434988@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34653 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429136] BROWSER fix for webbrowser.py Message-ID: <1649606645.87.0.377820404112.issue429136@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34568 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue435596] Fork/Thread problems on FreeBSD Message-ID: <1649606649.05.0.745408384255.issue435596@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34662 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436058] _PyTrace_Init needs a prototype Message-ID: <1649606649.12.0.0144967894462.issue436058@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34664 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436130] solaris2.6 problems with readline Message-ID: <1649606649.18.0.940291169752.issue436130@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34666 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue435971] Adds a UTF-7 codec Message-ID: <1649606649.09.0.909024498823.issue435971@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34663 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436131] freeze: global symbols not exported Message-ID: <1649606649.21.0.041420890365.issue436131@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34667 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue429084] Results of running Flawfinder Message-ID: <1649606645.84.0.111589769602.issue429084@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34567 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436173] site.py shouldn't normcase() agressively Message-ID: <1649606649.28.0.726137133838.issue436173@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34668 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue431597] Code being copied into shelve and UserDi Message-ID: <1649606646.96.0.202931550366.issue431597@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34603 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436525] Wrong macro name Message-ID: <1649606649.55.0.472587937681.issue436525@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34675 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436496] Configuring UCS-4 Message-ID: <1649606649.53.0.927821100174.issue436496@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34674 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436732] install.py does not record path file Message-ID: <1649606649.69.0.188131667884.issue436732@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34678 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436596] re.findall() bad with third argument Message-ID: <1649606649.6.0.635032549659.issue436596@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34676 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue431772] traceback.print_exc() causes traceback Message-ID: <1649606647.0.0.14502942935.issue431772@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34604 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue437395] RFC 2822 conformance Message-ID: <1649606649.87.0.823211593881.issue437395@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34684 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue437152] compiling source code fails on aix 4.3.1 Message-ID: <1649606649.81.0.821438544172.issue437152@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34682 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436757] popen parameters backword? Message-ID: <1649606649.73.0.42656838754.issue436757@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34679 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue431000] PyMapping_DelItem[String]() is broken Message-ID: <1649606646.75.0.244405769303.issue431000@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34595 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434944] setup.py - nonstandard paths Message-ID: <1649606648.65.0.707477268595.issue434944@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34651 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436259] [Windows] exec*/spawn* problem with spaces in args Message-ID: <1649606649.44.0.591794207983.issue436259@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34672 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438164] Format operator % fails with unicode Message-ID: <1649606650.26.0.858334203585.issue438164@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34696 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436193] SGI cores on 1.0 / 0 Message-ID: <1649606649.32.0.293790609069.issue436193@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34669 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:06 +0000 Subject: [issue430181] Make httplib work with picky servers Message-ID: <1649606646.39.0.268110699141.issue430181@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34583 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue437733] Additional Argument to Python/C Function Message-ID: <1649606650.03.0.603449128071.issue437733@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34689 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue437487] 2.1 build on Solaris fails if CC is set Message-ID: <1649606649.97.0.109890125401.issue437487@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34687 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438050] configure doesn't look for poll.h in sys Message-ID: <1649606650.19.0.694894988191.issue438050@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34694 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438347] minidom getElementsByTagNameNS() Message-ID: <1649606650.5.0.571645799017.issue438347@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34699 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:04 +0000 Subject: [issue426072] special case "O" in PyArg_ParseTuple() Message-ID: <1649606644.57.0.427832521406.issue426072@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34527 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue432325] \versionadded{2.2} in libstruct.tex Message-ID: <1649606647.18.0.194430190023.issue432325@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34611 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438295] [Windows] __init__.py cause strange behavior Message-ID: <1649606650.35.0.120331821944.issue438295@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34697 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438331] make ndiff.py into a library module Message-ID: <1649606650.39.0.881434456728.issue438331@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34698 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438424] Fix for missing turtle fuctionality Message-ID: <1649606650.55.0.104589973667.issue438424@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34700 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436207] "if 0: yield x" is ignored Message-ID: <1649606649.35.0.254516765068.issue436207@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34670 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue439364] GC for frames and generators Message-ID: <1649606650.84.0.496465881543.issue439364@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34710 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue439104] Tuple richcompares has code-typo Message-ID: <1649606650.82.0.875650015697.issue439104@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34709 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue437984] package name truncation to 50 chars. Message-ID: <1649606650.08.0.558576870301.issue437984@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34691 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438735] #ifndef WITHOUT_COMPLEX in config.c Message-ID: <1649606650.67.0.646756590078.issue438735@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34702 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:05 +0000 Subject: [issue427190] Speed-up "O" calls Message-ID: <1649606645.1.0.618223815077.issue427190@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34545 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue439710] User-defined mime.types file Message-ID: <1649606650.91.0.475328797795.issue439710@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34712 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue437879] SocketServer.py related problems Message-ID: <1649606650.06.0.302620724645.issue437879@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34690 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434143] calendar module broken for 1900 Message-ID: <1649606648.41.0.127948551001.issue434143@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34644 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue439990] os.nice() return 0 under Linux Message-ID: <1649606651.04.0.539775750978.issue439990@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34716 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438013] Remove 2-byte Py_UCS2 assumptions Message-ID: <1649606650.11.0.51744021206.issue438013@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34692 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438790] additional mappings for mimetypes.py Message-ID: <1649606650.74.0.981961324906.issue438790@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34705 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438823] Solaris Shared library build is broken Message-ID: <1649606650.77.0.309228652372.issue438823@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34706 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:08 +0000 Subject: [issue434992] Cleanup of warning messages Message-ID: <1649606648.77.0.692382808363.issue434992@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34655 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438786] CVS 2.1.1c1 broken on osf1V4 Message-ID: <1649606650.71.0.482656043692.issue438786@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34704 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438931] ftplib crash Message-ID: <1649606650.79.0.466600997121.issue438931@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34707 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440037] Extending: need import examples Message-ID: <1649606651.23.0.49014947393.issue440037@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34722 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue439012] Need doc: initial state of allocs Message-ID: <1649606650.81.0.0249353225051.issue439012@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34708 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue439997] infinite loop in re.match Message-ID: <1649606651.16.0.319865578744.issue439997@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34720 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440407] Remote execution patch for IDLE Message-ID: <1649606651.57.0.0593680742369.issue440407@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34732 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440464] Threading Program Crashes Python 2.1 Message-ID: <1649606651.6.0.0413417108253.issue440464@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34733 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue439798] Nested scopes core dump Message-ID: <1649606650.93.0.258598679013.issue439798@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34713 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue437158] null char in string processing Message-ID: <1649606649.85.0.105120500376.issue437158@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34683 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440486] IPv6-related definitions always present Message-ID: <1649606651.64.0.329484800535.issue440486@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34734 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440351] saxutils.escape needs to escape "quotes" Message-ID: <1649606651.54.0.475490423067.issue440351@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34731 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue439992] [win32] KeyboardInterrupt Not Caught Message-ID: <1649606651.08.0.754600365185.issue439992@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34717 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440522] Linux/nice() changes break build Message-ID: <1649606651.75.0.321222050288.issue440522@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34737 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue439848] Generic AIX C++ Module Support Message-ID: <1649606651.01.0.610473855998.issue439848@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34715 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440292] Test cases for pyclbr.py Message-ID: <1649606651.5.0.191493379743.issue440292@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34730 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436258] Some cleanup of the cPickle module Message-ID: <1649606649.39.0.486824958243.issue436258@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34671 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440826] Tests for repr.py Message-ID: <1649606651.89.0.105166242888.issue440826@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34741 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440170] Tests for fileinput module Message-ID: <1649606651.37.0.957217490663.issue440170@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34726 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue439995] fix for #439990: return value of nice Message-ID: <1649606651.14.0.874844136593.issue439995@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34719 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440707] doctest crashes on cross-platform .pyc Message-ID: <1649606651.82.0.514412846417.issue440707@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34739 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440693] path not normalized under win Message-ID: <1649606651.78.0.640987181271.issue440693@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34738 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441074] Python with Numeric module segfaults Message-ID: <1649606652.01.0.78403093942.issue441074@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34745 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441091] Allow jython to complete test_zlib test Message-ID: <1649606652.03.0.778022376889.issue441091@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34746 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue435492] tempnam(),tmpfile(),tmpnam() for Windows Message-ID: <1649606649.02.0.378984281956.issue435492@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34661 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440961] UnboundLocalError. Message-ID: <1649606651.99.0.356253831137.issue440961@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34744 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441175] Tests for glob.py Message-ID: <1649606652.09.0.93460158255.issue441175@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34748 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441172] Tree Widget does not cancel entry Message-ID: <1649606652.06.0.795281862026.issue441172@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34747 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441279] ConfigParser.options return default opts Message-ID: <1649606652.15.0.860722360733.issue441279@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34750 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440178] Build not finding libtk on Solaris 2.6 Message-ID: <1649606651.43.0.39835566179.issue440178@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34727 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440497] nested function with variables Message-ID: <1649606651.7.0.982524344174.issue440497@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34736 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441348] Allow jython to complete test_charmap Message-ID: <1649606652.21.0.380874564197.issue441348@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34752 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441400] [UNIX] #define NDEBUG for release build Message-ID: <1649606652.29.0.0348981830871.issue441400@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34755 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440290] Tests for test_fpformat.py Message-ID: <1649606651.45.0.175923858694.issue440290@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34728 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441350] Disutils config try_run broken Message-ID: <1649606652.24.0.526185293003.issue441350@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34753 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue437683] Improve h2py Message-ID: <1649606650.01.0.0828183505342.issue437683@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34688 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438773] fpectl is not initiliazed on Windows Message-ID: <1649606650.69.0.0197880839788.issue438773@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34703 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441357] time.clock() docs wrong for Windows Message-ID: <1649606652.26.0.0120590453626.issue441357@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34754 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue437475] MacPy21: sre "recursion limit" bug Message-ID: <1649606649.95.0.230553017687.issue437475@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34686 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441429] curses, can't write to loverright corner Message-ID: <1649606652.34.0.558345383608.issue441429@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34757 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441528] MSVC Preprocessor Message-ID: <1649606652.39.0.742781259428.issue441528@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34759 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441527] unixccompiler preprocessor broken Message-ID: <1649606652.36.0.874622992225.issue441527@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34758 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441409] re.compile of non-string misleading Message-ID: <1649606652.31.0.8609724797.issue441409@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34756 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441580] can't import readline in 2.1.1c1 Message-ID: <1649606652.43.0.51406848853.issue441580@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34760 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue437472] MacPy21: sre "recursion limit" bug Message-ID: <1649606649.91.0.0915555948122.issue437472@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34685 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441600] Misleading doc of $ metacharacter in re Message-ID: <1649606652.47.0.666668904086.issue441600@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34761 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436376] C API Request Message-ID: <1649606649.49.0.550891626297.issue436376@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34673 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441712] Exception using passive ftp with OS 390 Message-ID: <1649606652.56.0.681540108521.issue441712@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34764 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441691] BCPP Preprocessor Message-ID: <1649606652.52.0.0518468201048.issue441691@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34763 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441781] parser module does not support yield Message-ID: <1649606652.59.0.530080818891.issue441781@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34765 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441791] Improvment to package import semantics Message-ID: <1649606652.61.0.0968753316696.issue441791@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34766 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441793] Improvment to package import semantics Message-ID: <1649606652.64.0.957149517196.issue441793@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34767 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441833] Rule-based logic Message-ID: <1649606652.67.0.683823291508.issue441833@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34768 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue437041] strfime %Z isn't an RFC 822 timezone Message-ID: <1649606649.77.0.698667788182.issue437041@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34681 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436103] Compiling pygtk Message-ID: <1649606649.16.0.449699681715.issue436103@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34665 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442128] Creates zipfiles that java can read Message-ID: <1649606652.71.0.703688463498.issue442128@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34770 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441851] SystemError in sre scanner Message-ID: <1649606652.69.0.26064544832.issue441851@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34769 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442142] DLL base assignments need update Message-ID: <1649606652.73.0.227610281074.issue442142@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34771 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442351] Copy of classes with __del_ in jython Message-ID: <1649606652.76.0.0319462764267.issue442351@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34772 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:07 +0000 Subject: [issue433223] LICENSE file in 2.0.1c1 has three typos Message-ID: <1649606647.89.0.778022956715.issue433223@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34630 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442526] lang ref: Unicode literals undocumented Message-ID: <1649606652.91.0.595956911295.issue442526@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34777 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442647] 2.2alpha1: from __future__ import Message-ID: <1649606652.96.0.682539673956.issue442647@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34780 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442712] os.path.expanduser problem w/o HOME set Message-ID: <1649606653.01.0.576982756409.issue442712@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34782 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442530] Distutils config buggy Message-ID: <1649606652.92.0.616474100671.issue442530@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34778 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442734] 2.2a1: New style classes and pydoc Message-ID: <1649606653.06.0.760137364096.issue442734@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34784 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442724] Setting PYTHONHOME= breaks setup.py Message-ID: <1649606653.03.0.38440785516.issue442724@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34783 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442512] SRE BIGCHARSET endianness fix Message-ID: <1649606652.87.0.619155861849.issue442512@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34775 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442863] Add switch to disable PYTHON{HOME,PATH} Message-ID: <1649606653.22.0.0619742219322.issue442863@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34790 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442833] 2.2a1: __int__ and multiple inheritance Message-ID: <1649606653.2.0.475717458274.issue442833@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34789 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440017] SystemError when importing packages Message-ID: <1649606651.2.0.473127553488.issue440017@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34721 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442903] import Numeric fails on Linux Message-ID: <1649606653.29.0.784429795437.issue442903@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34793 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442374] Modulefinder registry support broken Message-ID: <1649606652.8.0.11381259333.issue442374@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34773 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442983] site.py rev 1.28 broke addsitedir() Message-ID: <1649606653.31.0.309355456786.issue442983@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34794 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441664] Python crash on del of a slice of a mmap Message-ID: <1649606652.49.0.276935517207.issue441664@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34762 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440144] Tests and minor bugfix for uu module Message-ID: <1649606651.3.0.174734466285.issue440144@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34724 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442866] Tests for codeop.py Message-ID: <1649606653.24.0.0502535230157.issue442866@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34791 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443238] Perm. in ../lib/python2.2/lib-dynload Message-ID: <1649606653.46.0.338660776406.issue443238@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34800 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442998] 2.2a1: compiler warnings Message-ID: <1649606653.34.0.672344061768.issue442998@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34795 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440291] Test cases for commands.py Message-ID: <1649606651.47.0.136685848582.issue440291@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34729 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443059] typo in reference manual Message-ID: <1649606653.42.0.460810504082.issue443059@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34798 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443337] incompatibilities in imputil's behavior Message-ID: <1649606653.53.0.181962315529.issue443337@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34802 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443464] Import Numeric RandomArray on 2.1.1 Message-ID: <1649606653.55.0.823411541505.issue443464@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34803 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440911] typo in xor docs Message-ID: <1649606651.96.0.367684702441.issue440911@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34743 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442501] class.__module__ in 2.2 Message-ID: <1649606652.84.0.0727790696987.issue442501@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34774 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:10 +0000 Subject: [issue438517] tkSimpleDialog.askString option Message-ID: <1649606650.63.0.840293951107.issue438517@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34701 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441314] __init__ not callable if non existant. Message-ID: <1649606652.18.0.507497067422.issue441314@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34751 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443239] Python 2.2 & Boost.Python Message-ID: <1649606653.5.0.95093484585.issue443239@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34801 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443600] overload of the slicing operator Message-ID: <1649606653.67.0.00214704924494.issue443600@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34808 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443626] TreeWidget cancellation problem Message-ID: <1649606653.74.0.773284228035.issue443626@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34810 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443759] Add Interface to readline's add_history Message-ID: <1649606653.81.0.233555624883.issue443759@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34813 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443614] enhancement for threading._Semaphore Message-ID: <1649606653.7.0.0669025643501.issue443614@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34809 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443775] Update to the BEGIN_ALLOW_THREADS macros Message-ID: <1649606653.88.0.847059517791.issue443775@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34815 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443788] Small documentation fixes Message-ID: <1649606653.99.0.799645917992.issue443788@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34818 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue443793] Subclassed dictionary gives SystemError Message-ID: <1649606654.01.0.510299241721.issue443793@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34819 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue443899] Minor fix to gzip.py module. Message-ID: <1649606654.07.0.661331736684.issue443899@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34821 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443784] test_poll hangs in cygwin Message-ID: <1649606653.95.0.598269448366.issue443784@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34817 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443120] denial-of-service attack to cgi.py Message-ID: <1649606653.43.0.335108797105.issue443120@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34799 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444129] python20 dll not found Message-ID: <1649606654.13.0.162274457608.issue444129@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34823 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444229] 5 .__new__(list, '42') == 42 Message-ID: <1649606654.19.0.173814089738.issue444229@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34825 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444201] Add Py-compile prefixes for getset Message-ID: <1649606654.17.0.663220161769.issue444201@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34824 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444486] Potential leak in Py_InitModule4() Message-ID: <1649606654.25.0.0969194943255.issue444486@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34827 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444359] Remove unused imports Message-ID: <1649606654.21.0.906714969561.issue444359@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34826 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443042] 2.2a1: unable to build posixmodule (PRIO_PROCESS undeclard Message-ID: <1649606653.38.0.102686057572.issue443042@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34797 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue443559] creating exceptions is underdocumented Message-ID: <1649606653.64.0.00251129207722.issue443559@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34807 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444582] Finding programs in PATH, adding shutil.which Message-ID: <1649606654.36.0.473138507279.issue444582@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34832 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444514] raw-unicode-escape codec fails roundtrip Message-ID: <1649606654.33.0.733978496251.issue444514@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34831 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444512] pydoc: Mozilla does not use localhost Message-ID: <1649606654.32.0.425122177188.issue444512@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34830 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444510] int() should guarantee truncation Message-ID: <1649606654.29.0.0888798438031.issue444510@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34829 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444707] cgi.escape() should replace single quote Message-ID: <1649606654.71.0.469704171242.issue444707@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34835 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444683] IDLE starts too late to enable "yield" Message-ID: <1649606654.68.0.267052164905.issue444683@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34834 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444708] Optional argument for string.strip() Message-ID: <1649606654.75.0.827077122231.issue444708@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34836 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440041] Inconsistencies in C API calls Message-ID: <1649606651.28.0.439689962081.issue440041@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34723 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444750] os.statvfs support for BSD Message-ID: <1649606654.82.0.474565090416.issue444750@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34837 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444842] array's buffer_info() -> length in bytes Message-ID: <1649606654.93.0.158741299691.issue444842@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34840 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442796] No descrobject in CVS Makefile.pre.in Message-ID: <1649606653.14.0.871529046247.issue442796@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34787 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444805] More functions in the C API! Message-ID: <1649606654.89.0.984714074995.issue444805@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34839 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442813] 2.2a1: list.__getitem__ and index<0 Message-ID: <1649606653.18.0.641483233353.issue442813@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34788 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue444984] Type comparison Message-ID: <1649606655.03.0.860693618911.issue444984@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34843 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444854] Distutils config _link doesn't clean up Message-ID: <1649606654.97.0.0941110119929.issue444854@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34841 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445096] hasattr does not support name mangling Message-ID: <1649606655.07.0.399820932555.issue445096@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34844 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445196] Hexadecimal character references break HTMLParser Message-ID: <1649606655.11.0.395844050008.issue445196@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34845 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444913] cgi.FieldStorage doesn't have __nonzero_ Message-ID: <1649606654.99.0.477901564607.issue444913@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34842 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444797] dlopen fails loading shared lib modules Message-ID: <1649606654.85.0.380013711111.issue444797@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34838 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445412] extract ndiff functionality to difflib Message-ID: <1649606655.14.0.347384641227.issue445412@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34846 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444589] install_data.py does not record dirs Message-ID: <1649606654.65.0.508654794503.issue444589@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34833 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442705] 2.2a1: Overriding __setslice__ Message-ID: <1649606652.99.0.67080735312.issue442705@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34781 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445413] docs for Lib/difflib.py patch Message-ID: <1649606655.16.0.228930676016.issue445413@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34847 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445433] a getPart method for mimetools.Message Message-ID: <1649606655.2.0.599132084762.issue445433@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34848 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue444004] distutils not mentioned in library docs Message-ID: <1649606654.1.0.139495155365.issue444004@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34822 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445717] Detect UCS2/4 incompatibilities Message-ID: <1649606655.39.0.232146201614.issue445717@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34852 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:14 +0000 Subject: [issue443866] Evaluating func_code causing core dump Message-ID: <1649606654.03.0.684282380738.issue443866@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34820 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445815] urllib doesn't handle proxy exceptions Message-ID: <1649606655.52.0.236823647301.issue445815@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34857 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445762] Support --disable-unicode Message-ID: <1649606655.46.0.142686178876.issue445762@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34855 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue441229] f.readline() checks for errors Message-ID: <1649606652.12.0.956853539842.issue441229@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34749 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445474] warn about import * inside functions Message-ID: <1649606655.25.0.961427026882.issue445474@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34849 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445862] bsddb fails for larger amount of data Message-ID: <1649606655.55.0.720186753412.issue445862@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34858 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445960] Compiler warnings on IRIX 6.5 Message-ID: <1649606655.71.0.69114093471.issue445960@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34861 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445770] Make calendar.py work forever. Message-ID: <1649606655.48.0.0288894585261.issue445770@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34856 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445980] _socket fails to build on IRIX 6.5 Message-ID: <1649606655.75.0.253126893321.issue445980@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34862 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:09 +0000 Subject: [issue436948] cPickle.loads(): Insecure string pickle Message-ID: <1649606649.75.0.772889498435.issue436948@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34680 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445484] pickle lacks float('inf') Message-ID: <1649606655.28.0.456278448593.issue445484@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34850 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445928] UnboundLocalError in httplib.py Message-ID: <1649606655.66.0.981835475542.issue445928@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34860 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446502] Expanding symlinks, addition to os.path Message-ID: <1649606656.04.0.371656207588.issue446502@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34871 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue446049] file type is callable but crashes Message-ID: <1649606655.93.0.599474670279.issue446049@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34867 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445986] test_locale fails on IRIX 6.5 Message-ID: <1649606655.8.0.942348884983.issue445986@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34864 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue446219] sndhdr.what() fails on some WAV files Message-ID: <1649606655.97.0.191793996561.issue446219@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34869 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446525] python 2.1 debug library missing _sre? Message-ID: <1649606656.08.0.0361600030091.issue446525@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34872 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445987] test_pty fails on IRIX 6.5 Message-ID: <1649606655.88.0.00995264302329.issue445987@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34865 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446602] Large File Support for Linux Message-ID: <1649606656.22.0.0845232671176.issue446602@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34875 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446645] rexec and function attributes Message-ID: <1649606656.27.0.382126773978.issue446645@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34876 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446671] configure ignores --mandir Message-ID: <1649606656.35.0.205969286083.issue446671@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34877 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:12 +0000 Subject: [issue442520] test_struct fails on SPARC Message-ID: <1649606652.88.0.603698945879.issue442520@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34776 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445902] runtime_library_dirs and gcc don't mix Message-ID: <1649606655.62.0.0149540975942.issue445902@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34859 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446754] Enhanced unicode constructor Message-ID: <1649606656.42.0.843995012299.issue446754@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34878 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446899] Permit import of .pyw under Windows Message-ID: <1649606656.48.0.595648076869.issue446899@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34880 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446912] Recursive object detection in xmlrpclib Message-ID: <1649606656.59.0.506372672847.issue446912@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34882 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue447143] exception item from mapped function Message-ID: <1649606656.67.0.869058483337.issue447143@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34884 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue447152] WeakValueDictionary wrong except. rised Message-ID: <1649606656.71.0.115435309677.issue447152@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34885 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue447478] a = b = c problem with tuples... Message-ID: <1649606656.84.0.482197663052.issue447478@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34888 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue447476] Fixes to setup.py for including OSX modules Message-ID: <1649606656.78.0.655348486581.issue447476@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34887 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446971] im_func, user-defined method Message-ID: <1649606656.63.0.550722655402.issue446971@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34883 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue447982] inconsistent availablility on modules Message-ID: <1649606656.95.0.881015144698.issue447982@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34891 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue447370] typo in urllib2.py Message-ID: <1649606656.75.0.370104859128.issue447370@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34886 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue447945] time.time() is not non-decreasing Message-ID: <1649606656.9.0.625262574063.issue447945@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34890 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:13 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:13 +0000 Subject: [issue442867] Tests cases for mhlib.py Message-ID: <1649606653.27.0.0079192292386.issue442867@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34792 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue448038] a move function for shutil.py Message-ID: <1649606657.0.0.605848899161.issue448038@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34893 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445984] test___all__ fails when _socket absent Message-ID: <1649606655.78.0.370220152665.issue445984@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34863 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue448025] Fix for #404535 not in Python 2.0x Message-ID: <1649606656.96.0.475895750673.issue448025@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34892 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448144] incompatible change of string type name Message-ID: <1649606657.1.0.59358451294.issue448144@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34895 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448100] imaplib.py test code does not work with Message-ID: <1649606657.06.0.0311956032877.issue448100@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34894 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue447918] strange results from dir() Message-ID: <1649606656.87.0.29762373587.issue447918@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34889 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448171] Allow jython to complete test_exceptions Message-ID: <1649606657.16.0.911987061353.issue448171@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34897 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448194] Debuging negative reference counts Message-ID: <1649606657.22.0.470322516695.issue448194@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34898 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:11 +0000 Subject: [issue440725] setup.py does not properly build bsddb Message-ID: <1649606651.86.0.975860543275.issue440725@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34740 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448153] Dictionary iterators break old code Message-ID: <1649606657.14.0.0798896441085.issue448153@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34896 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448481] Missing .h files and compiler warnings Message-ID: <1649606657.53.0.539106507341.issue448481@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34906 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448482] python 2.1.1: sgmllib, decl. subset Message-ID: <1649606657.56.0.359195112759.issue448482@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34907 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448403] libpython2.2.a missing -- Make Failure Message-ID: <1649606657.46.0.207168198575.issue448403@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34904 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448488] Implemenation of ImportNotFoundError PEP Message-ID: <1649606657.58.0.677520340697.issue448488@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34908 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448679] Left to right Message-ID: <1649606657.66.0.672492630184.issue448679@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34910 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448546] rexec:make_re() should not use pre? Message-ID: <1649606657.61.0.758722793967.issue448546@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34909 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448305] Additions to the C API Message-ID: <1649606657.31.0.261193839192.issue448305@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34901 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448474] Add support for 'tell()' to gzip.GzipFile Message-ID: <1649606657.49.0.106842884663.issue448474@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34905 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445991] test_struct dumps core on IRIX 6.5 Message-ID: <1649606655.9.0.833327533135.issue445991@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34866 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448835] Python 2.2a1 Under Idle - Generator Message-ID: <1649606657.75.0.0283285240974.issue448835@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34912 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448736] pydoc needs readline completion Message-ID: <1649606657.7.0.948128673548.issue448736@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34911 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448841] Patch for PEP 249 Message-ID: <1649606657.77.0.590991401917.issue448841@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34913 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448918] docs for mmap module unclear/typo Message-ID: <1649606657.85.0.610840382535.issue448918@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34915 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue448951] Bug in re group handling Message-ID: <1649606657.87.0.322464230636.issue448951@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34916 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue449000] re.sub(r'\n', ...) broke Message-ID: <1649606657.91.0.0324819884845.issue449000@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34917 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:17 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:17 +0000 Subject: [issue449009] distutils spelling error Message-ID: <1649606657.94.0.494726088406.issue449009@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34918 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449054] PEP 250 Implementation Message-ID: <1649606658.01.0.101514081167.issue449054@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34920 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449083] Use builtins to create types Message-ID: <1649606658.1.0.62852295786.issue449083@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34921 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449093] docs need to discuss // and __future__.division Message-ID: <1649606658.16.0.315597530621.issue449093@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34923 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449157] socketmodule.c doesn't compile on RH 5. Message-ID: <1649606658.25.0.25798298636.issue449157@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34925 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449151] Multiple interpreters break exceptions Message-ID: <1649606658.22.0.931448863796.issue449151@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34924 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449227] rlcompleter add "(" to callables feature Message-ID: <1649606658.36.0.824244951167.issue449227@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34927 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446375] Python 2.2a1 List functionality Message-ID: <1649606656.01.0.0715983543102.issue446375@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34870 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449085] Exception iterators Message-ID: <1649606658.14.0.902228484823.issue449085@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34922 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449444] MimeWriter: add RFC-required header Message-ID: <1649606658.55.0.603045510315.issue449444@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34931 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449383] os.chmod sets mode incorrectly Message-ID: <1649606658.53.0.647889206387.issue449383@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34930 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449572] thread.locked() missing Message-ID: <1649606658.62.0.171901732612.issue449572@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34933 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449258] inspect.stack() refcount problem Message-ID: <1649606658.44.0.279096138164.issue449258@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34928 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue446136] regex documentation Message-ID: <1649606655.95.0.690796740401.issue446136@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34868 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449757] digestsize variable for the md5 module Message-ID: <1649606658.72.0.257969439558.issue449757@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34936 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449854] make failing on OS X 10.0.4 Message-ID: <1649606658.79.0.182187445127.issue449854@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34939 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449973] Useful call method on base class. Message-ID: <1649606658.89.0.275892483261.issue449973@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34942 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449613] Mapping Type "in" and "not in" operators Message-ID: <1649606658.65.0.611727541523.issue449613@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34934 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449989] Make dir() more b/w compatible Message-ID: <1649606658.92.0.75892629026.issue449989@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34943 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue450013] bsddbmodule.c problem Message-ID: <1649606659.0.0.441222663901.issue450013@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34946 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449761] PyFile_WriteString has 2 args Message-ID: <1649606658.75.0.706506085772.issue449761@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34937 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:15 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:15 +0000 Subject: [issue445538] add completion for pstats.py sort cmd Message-ID: <1649606655.34.0.0343832248679.issue445538@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34851 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449964] sre.sub() fails Message-ID: <1649606658.87.0.944928192209.issue449964@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34941 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue449880] File size limit exceeded causes ABEND Message-ID: <1649606658.84.0.0984592130772.issue449880@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34940 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:16 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:16 +0000 Subject: [issue446874] 2.2a1: constructors have no docstring Message-ID: <1649606656.46.0.0351110232046.issue446874@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34879 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:19 +0000 Subject: [issue450265] OS/2 + EMX port - PC directory files Message-ID: <1649606659.14.0.661572281028.issue450265@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34949 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:19 +0000 Subject: [issue450225] urljoin fails RFC tests Message-ID: <1649606659.03.0.94379655118.issue450225@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34947 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:18 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:18 +0000 Subject: [issue450012] Problem compiling Message-ID: <1649606658.97.0.931119260955.issue450012@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34945 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue401530] urllib and redirects Message-ID: <1649606543.52.0.870431027782.issue401530@roundup.psfhosted.org> Change by admin : ---------- github: None -> 33125 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:19 +0000 Subject: [issue450350] Get --with-next-framework to work again (on OSX at least) Message-ID: <1649606659.21.0.642577118393.issue450350@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34952 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:19 +0000 Subject: [issue450568] test patch Message-ID: <1649606659.29.0.132965211542.issue450568@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34955 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:19 +0000 Subject: [issue450510] results of build on Mac OS X 10.0.4 Message-ID: <1649606659.23.0.275017993759.issue450510@roundup.psfhosted.org> Change by admin : ---------- github: None -> 34953 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Apr 10 12:02:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:02:23 +0000 Subject: [issue214532] cgi +