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 <malincns at 163.com>: ---------- pull_requests: +30298 pull_request: https://github.com/python/cpython/pull/32223 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue23689> _______________________________________ 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? <vedgar at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue39090> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30299 pull_request: https://github.com/python/cpython/pull/32224 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46850> _______________________________________ 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 <sam.z.ezeh at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue32547> _______________________________________ 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 <sam.z.ezeh at gmail.com>: Removed file: https://bugs.python.org/file50709/sam_ezeh.patch _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32547> _______________________________________ 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 <sam.z.ezeh at gmail.com>: Added file: https://bugs.python.org/file50710/sam_ezeh.patch _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32547> _______________________________________ 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 <sam.z.ezeh at gmail.com>: Removed file: https://bugs.python.org/file50710/sam_ezeh.patch _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32547> _______________________________________ 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 <sam.z.ezeh at gmail.com>: Added file: https://bugs.python.org/file50711/sam_ezeh.patch _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32547> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- pull_requests: +30300 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32225 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32547> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47182> _______________________________________ 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 <jakub.kulik at oracle.com> added the comment: Yes, it still does, and PyThread_get_thread_native_id is the only symbol missing. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue44133> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46850> _______________________________________ 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 <jakub.kulik at oracle.com>: ---------- nosy: +kulikjak _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47169> _______________________________________ 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 <jakub.kulik at oracle.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47169> _______________________________________ 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 <mikecmcleod at gmail.com> added the comment: Works for me. The command installed the correct version of Sphinx. Thanks. ---------- stage: -> resolved status: pending -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47183> _______________________________________ 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 <vstinner at python.org>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <vstinner at python.org> added the comment: See bpo-47185: code.replace(co_code=new_code) no longer catch exceptions on Python 3.11. ---------- nosy: +vstinner _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40222> _______________________________________ 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 <mark at hotpy.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47009> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30301 pull_request: https://github.com/python/cpython/pull/32229 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <mark at hotpy.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46841> _______________________________________ 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 <mikecmcleod at gmail.com>: ---------- keywords: +patch pull_requests: +30302 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32230 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32658> _______________________________________ 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 <mark at hotpy.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46841> _______________________________________ 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 <iritkatriel at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47186> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- keywords: +patch pull_requests: +30303 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32231 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47186> _______________________________________ 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 <mark at hotpy.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47186> _______________________________________ 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 <jdevries3133 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue32658> _______________________________________ 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 <jdevries3133 at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue38668> _______________________________________ 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 <sylvain.marie at schneider-electric.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47187> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30305 pull_request: https://github.com/python/cpython/pull/32233 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <eryksun at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue39090> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30306 pull_request: https://github.com/python/cpython/pull/32234 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46023> _______________________________________ 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 <eryksun at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47161> _______________________________________ 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 <mark at hotpy.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47172> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47172> _______________________________________ 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 <eric at trueblade.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46992> _______________________________________ 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 <encukou at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47168> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue46023> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <marxin.liska at gmail.com>: 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=<optimized out>, 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=<optimized out>) 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=<optimized out>, __wchar=<optimized out>, __s=<optimized out>, __s=<optimized out>, __wchar=<optimized out>, __ps=<optimized out>) 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=<optimized out>) at ../ncurses/./widechar/lib_unget_wch.c:113 #11 0x00007ffff7a55be5 in _curses_unget_wch (module=<optimized out>, ch='a') at /home/marxin/Programming/cpython/Modules/_cursesmodule.c:4497 #12 0x00000000006f6669 in cfunction_vectorcall_O (func=<built-in method unget_wch of module object at remote 0x7ffff7a8f4a0>, args=0x7ffff7b355b0, nargsf=<optimized out>, kwnames=0x0) at Objects/methodobject.c:512 #13 0x000000000042d0e8 in _PyObject_VectorcallTstate (kwnames=0x0, nargsf=<optimized out>, args=<optimized out>, callable=<built-in method unget_wch of module object at remote 0x7ffff7a8f4a0>, tstate=<optimized out>) at ./Include/cpython/abstract.h:114 #14 PyObject_Vectorcall (kwnames=0x0, nargsf=<optimized out>, args=<optimized out>, callable=<built-in method unget_wch of module object at remote 0x7ffff7a8f4a0>) at ./Include/cpython/abstract.h:123 #15 call_function (kwnames=0x0, oparg=<optimized out>, pp_stack=<synthetic pointer>, bounds=0x7fffffffd640, tstate=0xa70520) at Python/ceval.c:5379 #16 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=<optimized out>, throwflag=<optimized out>) 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 <report at bugs.python.org> <https://bugs.python.org/issue47188> _______________________________________ 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 <ericsnowcurrently at gmail.com> added the comment: Looks like gh-32218 worked. ---------- status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47146> _______________________________________ 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 <barney.gale at gmail.com>: ---------- nosy: +barneygale _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47161> _______________________________________ 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 <kenjin4096 at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47189> _______________________________________ 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 <kenjin4096 at gmail.com>: ---------- keywords: +patch pull_requests: +30307 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32235 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47189> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <ericsnowcurrently at gmail.com>: ---------- nosy: +Mark.Shannon _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue40222> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <skip.montanaro at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47190> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47089> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +30308 pull_request: https://github.com/python/cpython/pull/32237 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47089> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30309 pull_request: https://github.com/python/cpython/pull/32238 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <sweeney.dennis650 at gmail.com>: ---------- pull_requests: +30310 pull_request: https://github.com/python/cpython/pull/32239 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47009> _______________________________________ 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 <animatea.programming at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47191> _______________________________________ 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 <dutcho at ziggo.nl>: 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 (<frame at 0x00000209AD68C440, file 'audit.py', line 4, code <module>>,) 3.9.11 (tags/v3.9.11:2de452f, Mar 16 2022, 14:33:45) [MSC v.1929 64 bit (AMD64)] sys._getframe (<frame at 0x00000199B7593FD0, file 'C:\\Users\\...\\audit.py', line 4, code <module>>,) 3.10.3 (tags/v3.10.3:a342a49, Mar 16 2022, 13:07:40) [MSC v.1929 64 bit (AMD64)] sys._getframe (<frame at 0x00000210B95E9C40, file 'C:\\Users\\...\\audit.py', line 4, code <module>>,) 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 <report at bugs.python.org> <https://bugs.python.org/issue47192> _______________________________________ 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 <sam.z.ezeh at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47135> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- pull_requests: +30311 pull_request: https://github.com/python/cpython/pull/32240 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47089> _______________________________________ 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 <greg at krypto.org>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47193> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <brett at python.org>: ---------- nosy: +barneygale _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue39090> _______________________________________ 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 <greg at krypto.org>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <oleg at arhadthedev.net>: ---------- nosy: +arhadthedev _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47193> _______________________________________ 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 <sam.z.ezeh at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47135> _______________________________________ 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 <eryksun at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47170> _______________________________________ 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 <steve at pearwood.info> 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 "<stdin>", line 1, in <module> 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 <report at bugs.python.org> <https://bugs.python.org/issue47135> _______________________________________ 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 <sam.z.ezeh at gmail.com> 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 "<stdin>", line 1, in <module> 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 "<stdin>", line 1, in <module> 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 "<stdin>", line 1, in <module> AttributeError: 'decimal.Context' object has no attribute 'precision' >>> with decimal.localcontext(precision=10) as ctx: ... pass ... Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'precision' is an invalid keyword argument for this function >>> ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47135> _______________________________________ 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 <zachary.ware at gmail.com>: ---------- keywords: +patch pull_requests: +30312 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32241 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47162> _______________________________________ 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 <mike_mp at zzzcomputing.com>: ---------- nosy: +zzzeek _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47174> _______________________________________ 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 <lists at cheimes.de>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46023> _______________________________________ 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 <tir.karthi at gmail.com> added the comment: Seems to be duplicate of https://bugs.python.org/issue35759 ---------- nosy: +xtreak _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47191> _______________________________________ 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 <richard.purdie at linuxfoundation.org>: We've seen tracebacks in production like: File "<frozen importlib._bootstrap>", line 1004, in _find_and_load(name='oe.gpg_sign', import_=<built-in function __import__>) File "<frozen importlib._bootstrap>", line 158, in _ModuleLockManager.__enter__() File "<frozen importlib._bootstrap>", line 110, in _ModuleLock.acquire() KeyError: 139622474778432 and File "<frozen importlib._bootstrap>", line 1004, in _find_and_load(name='oe.path', import_=<built-in function __import__>) File "<frozen importlib._bootstrap>", line 158, in _ModuleLockManager.__enter__() File "<frozen importlib._bootstrap>", 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 <report at bugs.python.org> <https://bugs.python.org/issue47195> _______________________________________ 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 <tir.karthi at gmail.com>: ---------- nosy: +steve.dower _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47192> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47089> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- pull_requests: +30313 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32242 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47135> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30314 pull_request: https://github.com/python/cpython/pull/32243 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47162> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47162> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47162> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <roberthoodchatham at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47196> _______________________________________ 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 <roberthoodchatham at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47196> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47196> _______________________________________ 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 <roberthoodchatham at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47197> _______________________________________ 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 <davegoncalves at gmail.com>: ---------- nosy: +dpg nosy_count: 9.0 -> 10.0 pull_requests: +30316 pull_request: https://github.com/python/cpython/pull/32245 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue12387> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47089> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47089> _______________________________________ 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 <pablogsal at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47131> _______________________________________ 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 <roberthoodchatham at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47197> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47162> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue47147> _______________________________________ 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 <business at francisjohnson.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue44660> _______________________________________ 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 <siddhesh.poyarekar at gmail.com>: ---------- nosy: +siddhesh _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47188> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue47190> _______________________________________ 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 <snoopyjc at gmail.com>: 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 "<stdin>", line 1, in <module> 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 <report at bugs.python.org> <https://bugs.python.org/issue47198> _______________________________________ 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 <eryksun at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47198> _______________________________________ 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 <pxeger at protonmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47147> _______________________________________ 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 <malincns at 163.com>: `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 <report at bugs.python.org> <https://bugs.python.org/issue47199> _______________________________________ 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 <malincns at 163.com>: ---------- keywords: +patch pull_requests: +30318 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32247 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47199> _______________________________________ 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 <richard.purdie at linuxfoundation.org> 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 "<frozen importlib._bootstrap>", line 1024, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1024, in _find_and_load File "<frozen importlib._bootstrap>", 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 <report at bugs.python.org> <https://bugs.python.org/issue47195> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47196> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <donghee.na at python.org>: ---------- nosy: +corona10 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47193> _______________________________________ 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 <frenzy.madness at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47143> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <lukasz at langa.pl> 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 <report at bugs.python.org> <https://bugs.python.org/issue34480> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <vstinner at python.org> 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 <fredrik at pythonware.com> 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 <fredrik at pythonware.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47143> _______________________________________ 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 <sam.z.ezeh at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47200> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- stage: test needed -> resolved status: pending -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue27817> _______________________________________ 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 <malincns at 163.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +30319 pull_request: https://github.com/python/cpython/pull/32248 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30320 pull_request: https://github.com/python/cpython/pull/32249 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30321 pull_request: https://github.com/python/cpython/pull/32250 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30322 pull_request: https://github.com/python/cpython/pull/32251 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue22738> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47192> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- pull_requests: +30323 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32252 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47200> _______________________________________ 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 <asottile at umich.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <alessandro.pioli at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47201> _______________________________________ 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 <luminair at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47202> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47202> _______________________________________ 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 <luminair at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47202> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30324 pull_request: https://github.com/python/cpython/pull/32253 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com> added the comment: bpo-47089 is a duplicate of this issue and is fixed. This issue should be closed as well. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue37387> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <eric at trueblade.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47202> _______________________________________ 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 <asottile at umich.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <lists at cheimes.de> added the comment: Please attach your config.log file. Did configure tell you that you are missing pkg-config? ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <asottile at umich.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <asottile at umich.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue26023> _______________________________________ 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 <pablogsal at gmail.com> added the comment: I concur with Terry. ---------- resolution: -> rejected stage: -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47147> _______________________________________ 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 <puppy2655 at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue27376> _______________________________________ 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 <lists at cheimes.de> added the comment: PS: Check out ./configure --help ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue968063> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue968063> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue29920> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47201> _______________________________________ 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 <marek.suscak at gmail.com>: ---------- pull_requests: +30325 pull_request: https://github.com/python/cpython/pull/32256 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue34480> _______________________________________ 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 <amanschhina at gmail.com>: ---------- nosy: +achhina nosy_count: 7.0 -> 8.0 pull_requests: +30326 pull_request: https://github.com/python/cpython/pull/32257 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue41395> _______________________________________ 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 <marek.suscak at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue34480> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47031> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +30328 pull_request: https://github.com/python/cpython/pull/32263 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47031> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30329 pull_request: https://github.com/python/cpython/pull/32264 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47031> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <jelle.zijlstra at gmail.com>: ---------- nosy: +JelleZijlstra nosy_count: 4.0 -> 5.0 pull_requests: +30330 pull_request: https://github.com/python/cpython/pull/32265 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue26792> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47031> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30331 pull_request: https://github.com/python/cpython/pull/32266 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30332 pull_request: https://github.com/python/cpython/pull/32266 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46315> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47031> _______________________________________ 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 <eric at trueblade.com>: ---------- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45114> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30333 pull_request: https://github.com/python/cpython/pull/32267 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45114> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30334 pull_request: https://github.com/python/cpython/pull/32268 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45114> _______________________________________ 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 <jelle.zijlstra at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45114> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue46315> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45114> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45114> _______________________________________ 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 <ethan at stoneleaf.us>: ---------- nosy: +ethan.furman, twouters _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47200> _______________________________________ 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 <ethan at stoneleaf.us>: ---------- nosy: +alanmcintyre, twouters _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue4833> _______________________________________ 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 <ethan at stoneleaf.us>: ---------- nosy: +alanmcintyre, serhiy.storchaka _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47200> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <larry at hastings.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47145> _______________________________________ 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 <vstinner at python.org> added the comment: See also bpo-40259: "re.Scanner groups". ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <larry at hastings.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47145> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue37387> _______________________________________ 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 <vstinner at python.org> added the comment: bpo-37387 was closed as a duplicate of this issue. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47089> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45584> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +30335 pull_request: https://github.com/python/cpython/pull/32272 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45584> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30336 pull_request: https://github.com/python/cpython/pull/32273 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45584> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks for the patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45584> _______________________________________ 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 <erlend.aasland at innova.no> 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 <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45584> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45584> _______________________________________ 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 <kuba.kuczys at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45099> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <tjreedy at udel.edu>: ---------- pull_requests: +30337 pull_request: https://github.com/python/cpython/pull/32274 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30338 pull_request: https://github.com/python/cpython/pull/32275 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30339 pull_request: https://github.com/python/cpython/pull/32276 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <tjreedy at udel.edu>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue24563> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue46033> _______________________________________ 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 <tjreedy at udel.edu>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46033> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks for the bug report and patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47031> _______________________________________ 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 <davegoncalves at gmail.com>: ---------- nosy: +dpg nosy_count: 8.0 -> 9.0 pull_requests: +30340 pull_request: https://github.com/python/cpython/pull/32279 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue18624> _______________________________________ 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 <vstinner at python.org>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45410> _______________________________________ 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 <vstinner at python.org>: ---------- title: Deprecate getdefaultlocale(), getlocale() and normalize() functions -> Deprecate getlocale() and normalize() functions _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue43557> _______________________________________ 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 <roberthoodchatham at gmail.com>: ---------- pull_requests: +30341 pull_request: https://github.com/python/cpython/pull/32280 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47196> _______________________________________ 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 <ncoghlan at gmail.com>: ---------- pull_requests: +30342 pull_request: https://github.com/python/cpython/pull/32281 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue44800> _______________________________________ 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 <ncoghlan at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue44800> _______________________________________ 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 <ncoghlan at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47204> _______________________________________ 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 <ncoghlan at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47204> _______________________________________ 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 <ncoghlan at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue44800> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47196> _______________________________________ 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 <report at bugs.python.org> <https://bugs.python.org/issue46014> _______________________________________ 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 <malincns at 163.com>: ---------- pull_requests: +30344 pull_request: https://github.com/python/cpython/pull/32283 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue23689> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30345 pull_request: https://github.com/python/cpython/pull/32284 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <dom1310df at googlemail.com>: ---------- nosy: +dom1310df _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <lists at cheimes.de>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <lists at cheimes.de>: ---------- keywords: +patch pull_requests: +30346 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32285 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <jaraco at jaraco.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47142> _______________________________________ 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 <jaraco at jaraco.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47142> _______________________________________ 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 <jaraco at jaraco.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47142> _______________________________________ 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 <lists at cheimes.de> added the comment: Koobs, please take a look. ---------- nosy: +koobs _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <lists at cheimes.de>: ---------- components: +FreeBSD _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <kenjin4096 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <bpo at m.ganssle.io> 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 <report at bugs.python.org> <https://bugs.python.org/issue46614> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +30347 pull_request: https://github.com/python/cpython/pull/32286 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30348 pull_request: https://github.com/python/cpython/pull/32287 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <jelle.zijlstra at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47206> _______________________________________ 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 <jaraco at jaraco.com>: ---------- pull_requests: +30349 pull_request: https://github.com/python/cpython/pull/32288 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46126> _______________________________________ 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 <eryksun at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- nosy: +sam_ezeh _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue15795> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- pull_requests: +30350 pull_request: https://github.com/python/cpython/pull/32289 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue15795> _______________________________________ 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 <roberthoodchatham at gmail.com>: ---------- nosy: +amaury.forgeotdarc, belopolsky, meador.inge _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47197> _______________________________________ 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 <bpo at m.ganssle.io>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47207> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- nosy: +sam_ezeh _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue39064> _______________________________________ 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 <anntzer.lee at gmail.com>: ---------- nosy: -Antony.Lee _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue26792> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue23689> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue23689> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue39064> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- pull_requests: +30351 pull_request: https://github.com/python/cpython/pull/32290 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <senthil at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46337> _______________________________________ 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 <sam.z.ezeh at gmail.com> 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 "<stdin>", line 1, in <module> 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 <report at bugs.python.org> <https://bugs.python.org/issue39064> _______________________________________ 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 <iritkatriel at gmail.com> added the comment: Sam, can you put that in a PR please? ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue39064> _______________________________________ 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 <sam.z.ezeh at gmail.com> added the comment: Yes, of course. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue39064> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <merwok at netwok.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46614> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- nosy: +sam_ezeh nosy_count: 3.0 -> 4.0 pull_requests: +30352 pull_request: https://github.com/python/cpython/pull/32291 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue30964> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- pull_requests: +30353 pull_request: https://github.com/python/cpython/pull/32291 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue39064> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- pull_requests: -30352 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue30964> _______________________________________ 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 <julien+python at palard.fr>: ---------- pull_requests: +30354 pull_request: https://github.com/python/cpython/pull/32292 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue42238> _______________________________________ 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 <julien+python at palard.fr> added the comment: One true positive and one false positive this week, see: - 7f9c084fdec7ddcfe8855aa79f98545591ae2261 - ec8906fb5930b1f078e2a2170cdf445e6c6faf57 ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue42238> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46126> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47133> _______________________________________ 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 <julien+python at palard.fr> 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 <report at bugs.python.org> <https://bugs.python.org/issue42238> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47176> _______________________________________ 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 <lists at cheimes.de>: ---------- dependencies: +Function pointer cast in test_imp, ctypes mishandles `void` return type _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <lists at cheimes.de>: ---------- components: +Tests resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement versions: +Python 3.11 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47196> _______________________________________ 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 <lists at cheimes.de>: ---------- components: +Tests type: -> behavior versions: +Python 3.11 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47197> _______________________________________ 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 <lists at cheimes.de> added the comment: Thanks for your patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47176> _______________________________________ 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 <skip.montanaro at gmail.com>: ---------- keywords: +patch pull_requests: +30355 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32293 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47190> _______________________________________ 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 <roberthoodchatham at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47208> _______________________________________ 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 <roberthoodchatham at gmail.com>: ---------- nosy: +amaury.forgeotdarc, belopolsky, christian.heimes, meador.inge _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47208> _______________________________________ 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 <koobs.freebsd at gmail.com> added the comment: Investigating ---------- stage: patch review -> type: -> behavior _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <godlygeek at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46614> _______________________________________ 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 <songofacandy at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47000> _______________________________________ 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 <himkt at klis.tsukuba.ac.jp>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47209> _______________________________________ 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 <nad at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47194> _______________________________________ 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 <hn7n1 at hotmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue46337> _______________________________________ 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 <nad at python.org>: Removed file: https://bugs.python.org/file50716/mitre_f188eec1268fd49bdc7375fc5b77ded657c150875fede1a4d797f818d2514e88_120.csv _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46337> _______________________________________ 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 <himkt at klis.tsukuba.ac.jp> 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 <report at bugs.python.org> <https://bugs.python.org/issue47209> _______________________________________ 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 <nad at python.org>: ---------- hgrepos: -414 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46337> _______________________________________ 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 <nad at python.org>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue46337> _______________________________________ 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 <himkt at klis.tsukuba.ac.jp> 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 <report at bugs.python.org> <https://bugs.python.org/issue47209> _______________________________________ 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 <ripspin-5 at yahoo.com.au>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47210> _______________________________________ 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 <lists at cheimes.de>: ---------- keywords: +patch pull_requests: +30356 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32297 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47208> _______________________________________ 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 <storchaka+cpython at gmail.com> added the comment: It is a duplicate of issue27546. ---------- nosy: +serhiy.storchaka _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47190> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- pull_requests: +30357 pull_request: https://github.com/python/cpython/pull/32298 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <ripspin-5 at yahoo.com.au> 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 <report at bugs.python.org> <https://bugs.python.org/issue47210> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <oleg at arhadthedev.net>: ---------- nosy: +arhadthedev nosy_count: 1.0 -> 2.0 pull_requests: +30360 pull_request: https://github.com/python/cpython/pull/32299 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45763> _______________________________________ 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 <oleg at arhadthedev.net>: ---------- nosy: +arhadthedev nosy_count: 4.0 -> 5.0 pull_requests: +30359 pull_request: https://github.com/python/cpython/pull/32299 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45747> _______________________________________ 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 <oleg at arhadthedev.net>: ---------- nosy: +arhadthedev nosy_count: 5.0 -> 6.0 pull_requests: +30358 pull_request: https://github.com/python/cpython/pull/32299 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <oleg at arhadthedev.net>: ---------- pull_requests: -30358 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <oleg at arhadthedev.net>: ---------- pull_requests: +30361 pull_request: https://github.com/python/cpython/pull/32299 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <storchaka+cpython at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47211> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- keywords: +patch pull_requests: +30362 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32300 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47211> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <mark at hotpy.org>: ---------- pull_requests: +30363 pull_request: https://github.com/python/cpython/pull/32301 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue44800> _______________________________________ 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 <merwok at netwok.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue15795> _______________________________________ 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 <merwok at netwok.org>: ---------- versions: +Python 3.11 -Python 3.10 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue15795> _______________________________________ 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 <m.dartiailh at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47212> _______________________________________ 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 <aivainjr141 at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47213> _______________________________________ 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 <m.dartiailh at gmail.com>: ---------- keywords: +patch pull_requests: +30364 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32302 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47212> _______________________________________ 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 <Alex.Waygood at Gmail.com>: ---------- nosy: +pablogsal title: arrow at wrong place -> Incorrect location of caret in SyntaxError type: enhancement -> behavior _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47213> _______________________________________ 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 <aivainjr141 at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47214> _______________________________________ 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 <mark at hotpy.org>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47215> _______________________________________ 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 <pablogsal at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47213> _______________________________________ 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 <mark at hotpy.org>: ---------- keywords: +patch pull_requests: +30366 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32303 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47215> _______________________________________ 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 <malincns at 163.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <barney.gale at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue39090> _______________________________________ 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 <skip.montanaro at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47190> _______________________________________ 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 <skip.montanaro at gmail.com> added the comment: See also (perhaps) https://bugs.python.org/issue47190 ---------- nosy: +skip.montanaro _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue27546> _______________________________________ 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 <skip.montanaro at gmail.com>: ---------- nosy: -skip.montanaro _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue27546> _______________________________________ 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 <mark at hotpy.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue44800> _______________________________________ 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 <mark at hotpy.org>: ---------- keywords: +patch pull_requests: +30367 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32304 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45317> _______________________________________ 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 <sam.z.ezeh at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue15795> _______________________________________ 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 <sweeney.dennis650 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47214> _______________________________________ 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 <merwok at netwok.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue15795> _______________________________________ 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 <jim.wygralak at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46180> _______________________________________ 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 <gery.ogam at gmail.com>: ---------- nosy: +maggyero _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47206> _______________________________________ 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 <python at mrabarnett.plus.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47208> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47208> _______________________________________ 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 <lists at cheimes.de>: ---------- components: +Tests type: -> behavior versions: +Python 3.11 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47208> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46484> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +30368 pull_request: https://github.com/python/cpython/pull/32307 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46484> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30369 pull_request: https://github.com/python/cpython/pull/32308 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46484> _______________________________________ 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 <aivainjr141 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47214> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <steve at pearwood.info> 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 <report at bugs.python.org> <https://bugs.python.org/issue47214> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- pull_requests: +30370 pull_request: https://github.com/python/cpython/pull/32309 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47186> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46484> _______________________________________ 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 <pfobos at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47216> _______________________________________ 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 <pfobos at gmail.com>: ---------- keywords: +patch pull_requests: +30371 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32310 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47216> _______________________________________ 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 <aivainjr141 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47214> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46484> _______________________________________ 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 <iritkatriel at gmail.com> added the comment: Thank you Jiahua! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46484> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue42012> _______________________________________ 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 <matthew.rahtz at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue43224> _______________________________________ 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 <pfobos at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47217> _______________________________________ 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 <pfobos at gmail.com>: ---------- keywords: +patch pull_requests: +30373 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32311 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47217> _______________________________________ 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 <pfobos at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47218> _______________________________________ 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 <pfobos at gmail.com>: ---------- keywords: +patch pull_requests: +30374 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32312 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47218> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47208> _______________________________________ 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 <nicesalmon at gmail.com>: ---------- nosy: +neonene nosy_count: 5.0 -> 6.0 pull_requests: +30375 pull_request: https://github.com/python/cpython/pull/32313 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47182> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <mbadaire at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47219> _______________________________________ 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 <jelle.zijlstra at gmail.com>: ---------- nosy: +eric.snow _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47219> _______________________________________ 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 <encukou at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue21314> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue47190> _______________________________________ 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 <gery.ogam at gmail.com>: - 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 <report at bugs.python.org> <https://bugs.python.org/issue47220> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue38299> _______________________________________ 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 <cezary.wagner at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47221> _______________________________________ 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 <vzvzvz2 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47049> _______________________________________ 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 <cezary.wagner at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47221> _______________________________________ 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 <puppy2655 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <philipp at redfish-solutions.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47222> _______________________________________ 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 <sweeney.dennis650 at gmail.com> added the comment: I believe this is a duplicate of this issue: https://bugs.python.org/issue45542 ---------- nosy: +Dennis Sweeney _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47221> _______________________________________ 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 <sweeney.dennis650 at gmail.com>: ---------- title: Bug or bad performance -> chained comparisons slower than using `and` _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47221> _______________________________________ 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 <sweeney.dennis650 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47221> _______________________________________ 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 <sweeney.dennis650 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45542> _______________________________________ 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 <matthew.rahtz at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47006> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47097> _______________________________________ 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 <Alex.Waygood at Gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47097> _______________________________________ 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 <Alex.Waygood at Gmail.com> added the comment: (Feel free to reopen this issue if there's more to be done, Matthew!) ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47097> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46850> _______________________________________ 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 <nad at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47210> _______________________________________ 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 <nad at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <nad at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46180> _______________________________________ 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 <nad at python.org>: ---------- nosy: +gregory.p.smith _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47222> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue41233> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +30377 pull_request: https://github.com/python/cpython/pull/32316 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue41233> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30378 pull_request: https://github.com/python/cpython/pull/32317 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue41233> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue41233> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue41233> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks for the patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue41233> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30379 pull_request: https://github.com/python/cpython/pull/32318 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47007> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47007> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30380 pull_request: https://github.com/python/cpython/pull/32319 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47007> _______________________________________ 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 <steve at pearwood.info> 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 <report at bugs.python.org> <https://bugs.python.org/issue45542> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46998> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks for the idea and patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46998> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +30381 pull_request: https://github.com/python/cpython/pull/32320 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45790> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45790> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks for the report and fix! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47007> _______________________________________ 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 <jelle.zijlstra at gmail.com>: ---------- pull_requests: +30382 pull_request: https://github.com/python/cpython/pull/32321 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45790> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks for noticing and fixing! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45790> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +30383 pull_request: https://github.com/python/cpython/pull/32322 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32658> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue32658> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30384 pull_request: https://github.com/python/cpython/pull/32323 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32658> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks for the patch! ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue32658> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue43224> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47007> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30385 pull_request: https://github.com/python/cpython/pull/32326 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40982> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45790> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue40982> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30386 pull_request: https://github.com/python/cpython/pull/32327 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40982> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47007> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks for the report and patch! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40982> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue32658> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue32658> _______________________________________ 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 <sweeney.dennis650 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45542> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue40982> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue40982> _______________________________________ 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 <motogeomtop at gmail.com>: 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__ <attribute '__name__' of 'type' objects> 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 <report at bugs.python.org> <https://bugs.python.org/issue47223> _______________________________________ 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 <motogeomtop at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47223> _______________________________________ 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 <motogeomtop at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47223> _______________________________________ 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 <motogeomtop at gmail.com>: 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__ <attribute '__name__' of 'type' objects> 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 <report at bugs.python.org> <https://bugs.python.org/issue47224> _______________________________________ 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 <motogeomtop at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47223> _______________________________________ 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 <motogeomtop at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47136> _______________________________________ 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 <ethan at stoneleaf.us> 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 <report at bugs.python.org> <https://bugs.python.org/issue47224> _______________________________________ 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 <ethan at stoneleaf.us> added the comment: issue47223 and issue47224 closed, reopening this one. ---------- nosy: +ethan.furman resolution: duplicate -> stage: resolved -> status: closed -> open _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47136> _______________________________________ 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 <ethan at stoneleaf.us> added the comment: Takuo, please give us an example from real code so we can see the problem. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47136> _______________________________________ 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 <nad at python.org>: ---------- pull_requests: +30387 pull_request: https://github.com/python/cpython/pull/32328 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <malincns at 163.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <techie.prembshah at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47225> _______________________________________ 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 <raymond.hettinger at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue44090> _______________________________________ 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 <nad at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <asottile at umich.edu>: ---------- nosy: -Anthony Sottile _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45847> _______________________________________ 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 <raymond.hettinger at gmail.com> added the comment: See https://docs.python.org/3/tutorial/floatingpoint.html ---------- nosy: +rhettinger resolution: -> wont fix stage: -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47225> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45790> _______________________________________ 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 <vkaushalsai at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <raymond.hettinger at gmail.com> added the comment: Antoine, was the *callback* argument intended to be part of the public API? ---------- nosy: +pitrou, rhettinger _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47220> _______________________________________ 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 <sweeney.dennis650 at gmail.com>: What error message? ---------- nosy: +Dennis Sweeney _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <nad at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46890> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47165> _______________________________________ 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 <greg at krypto.org>: ---------- nosy: +gregory.p.smith _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <greg at krypto.org>: ---------- nosy: +gregory.p.smith _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47164> _______________________________________ 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 <pacqa100 at yahoo.com.au>: ---------- nosy: +PeterL777 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue12445> _______________________________________ 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 <julien+python at palard.fr>: ---------- pull_requests: +30388 pull_request: https://github.com/python/cpython/pull/32329 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue42238> _______________________________________ 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 <vkaushalsai at gmail.com>: ---------- status: open -> pending _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47139> _______________________________________ 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 <greg at krypto.org>: ---------- nosy: +gregory.p.smith _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47153> _______________________________________ 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 <eryksun at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <julien+python at palard.fr> 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 <report at bugs.python.org> <https://bugs.python.org/issue42238> _______________________________________ 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 <ostanley.lee at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47207> _______________________________________ 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 <storchaka+cpython at gmail.com> added the comment: See issue47211 for removing re.TEMPLATE. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47152> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- keywords: +easy versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.6, Python 3.7 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue28951> _______________________________________ 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 <julien+python at palard.fr> 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 <report at bugs.python.org> <https://bugs.python.org/issue21956> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <ostanley.lee at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue44158> _______________________________________ 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 <ostanley.lee at gmail.com> added the comment: Samriddhi, are you still working on this? ---------- nosy: +slateny _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46168> _______________________________________ 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 <mark at hotpy.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47009> _______________________________________ 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 <adiboo67 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue36207> _______________________________________ 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 <ripspin-5 at yahoo.com.au> added the comment: Bug closed because I get the same loop with python-3.10.4 ---------- stage: -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47210> _______________________________________ 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 <motogeomtop at gmail.com> 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__ <attribute '__name__' of 'type' objects> 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 <report at bugs.python.org> <https://bugs.python.org/issue47136> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47186> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47186> _______________________________________ 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 <Alex.Waygood at Gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47050> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47120> _______________________________________ 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 <gery.ogam at gmail.com> 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 "<stdin>", line 1, in <module> File "<stdin>", 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 <report at bugs.python.org> <https://bugs.python.org/issue44090> _______________________________________ 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 <lists at cheimes.de>: ---------- nosy: +christian.heimes nosy_count: 3.0 -> 4.0 pull_requests: +30389 pull_request: https://github.com/python/cpython/pull/32332 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47009> _______________________________________ 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 <storchaka+cpython at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47227> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- keywords: +patch pull_requests: +30390 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32333 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47227> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue45774> _______________________________________ 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 <amanschhina at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue41395> _______________________________________ 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 <pablogsal at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47212> _______________________________________ 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 <erlend.aasland at innova.no>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45774> _______________________________________ 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 <vkaushalsai at gmail.com>: ---------- assignee: -> terry.reedy components: +IDLE nosy: +terry.reedy status: pending -> open versions: +Python 3.10 -Python 3.11 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <bpo at m.ganssle.io>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47228> _______________________________________ 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 <vkaushalsai at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <vkaushalsai at gmail.com> added the comment: the error mesessage is tha unexpected incident ---------- components: +Windows -IDLE nosy: +paul.moore, steve.dower, tim.golden, zach.ware _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <vkaushalsai at gmail.com>: ---------- status: open -> pending _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue41930> _______________________________________ 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 <jelle.zijlstra at gmail.com> added the comment: Thanks, this will be in Python 3.11. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue41930> _______________________________________ 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 <vkaushalsai at gmail.com>: ---------- status: pending -> open Added file: https://bugs.python.org/file50719/python problem.PNG _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47088> _______________________________________ 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 <jelle.zijlstra at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47088> _______________________________________ 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 <vkaushalsai at gmail.com>: ---------- components: +IDLE _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <tjreedy at udel.edu>: ---------- nosy: -paul.moore, steve.dower, terry.reedy, tim.golden, zach.ware _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47226> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <m.dartiailh at gmail.com>: ---------- pull_requests: +30391 pull_request: https://github.com/python/cpython/pull/32334 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47212> _______________________________________ 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 <donghee.na at python.org>: ---------- nosy: +corona10 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue42012> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46607> _______________________________________ 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 <srittau at rittau.biz>: ---------- keywords: +patch pull_requests: +30392 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32335 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue42012> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47009> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47212> _______________________________________ 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 <ydroneaud at opteya.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47027> _______________________________________ 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 <Alex.Waygood at Gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47212> _______________________________________ 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 <lists at cheimes.de>: ---------- versions: +Python 3.11 -Python 3.8 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue17004> _______________________________________ 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 <ethan at stoneleaf.us> 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 <report at bugs.python.org> <https://bugs.python.org/issue47136> _______________________________________ 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 <coloneldare at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47229> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com> added the comment: Resolved with merged PR. ---------- resolution: -> fixed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47131> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47131> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- resolution: -> fixed status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45354> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- keywords: +patch pull_requests: +30393 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32337 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <chris.fernald at utexas.edu>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47231> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47139> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- keywords: +easy -patch type: -> enhancement versions: +Python 3.11 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue28540> _______________________________________ 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 <matthew.rahtz at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47006> _______________________________________ 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 <ethan at stoneleaf.us> added the comment: Nosied others from issue21987. ---------- nosy: +andrei.avk, ethan.furman, r.david.murray, vstinner _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47231> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- nosy: +jkloth nosy_count: 3.0 -> 4.0 pull_requests: +30394 pull_request: https://github.com/python/cpython/pull/32338 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46576> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com> added the comment: My PR-32338 further reduces the runtime of the test another ~25%. On my machine, before 85s, after 65s. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46576> _______________________________________ 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 <raymond.hettinger at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue28540> _______________________________________ 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 <raymond.hettinger at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue28540> _______________________________________ 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 <raymond.hettinger at gmail.com>: ---------- assignee: -> rhettinger _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue28540> _______________________________________ 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 <ethan at stoneleaf.us> 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 <report at bugs.python.org> <https://bugs.python.org/issue4833> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47027> _______________________________________ 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 <steve.dower at python.org> added the comment: Do we need to backport this? ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <brett at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47061> _______________________________________ 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 <sam.z.ezeh at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47184> _______________________________________ 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 <sam.z.ezeh at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47184> _______________________________________ 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 <dickinsm at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue28540> _______________________________________ 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 <roberthoodchatham at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <richard.purdie at linuxfoundation.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47139> _______________________________________ 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 <pmpp.pub at gmail.com>: ---------- nosy: +pmpp _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com> added the comment: It seems so, as the zlib update was also backported to 3.9 and 3.10. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <report at bugs.python.org> <https://bugs.python.org/issue47233> _______________________________________ 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 <puppy2655 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47203> _______________________________________ 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 <matthew.rahtz at gmail.com>: ---------- keywords: +patch pull_requests: +30396 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32341 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47006> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <matthew.rahtz at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47006> _______________________________________ 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 <tfish at google.com>: 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 "<stdin>", line 1, in <module> File "<stdin>", 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 <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <roberthoodchatham at gmail.com> added the comment: I take it back, I am still having this problem. ---------- status: closed -> open _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <lists at cheimes.de> added the comment: Please attach config.log and Makefile from the builddir. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <vstinner at python.org>: ---------- pull_requests: +30397 pull_request: https://github.com/python/cpython/pull/32343 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46850> _______________________________________ 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 <philipp at redfish-solutions.com>: ---------- keywords: +patch pull_requests: +30398 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32344 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47222> _______________________________________ 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 <raymond.hettinger at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <roberthoodchatham at gmail.com> added the comment: There is still a pretty good change I am making some dumb mistake. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <vstinner at python.org>: ---------- nosy: -vstinner _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47231> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46607> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue44090> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- pull_requests: +30399 pull_request: https://github.com/python/cpython/pull/32346 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- pull_requests: +30400 pull_request: https://github.com/python/cpython/pull/32347 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <roberthoodchatham at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47232> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <mariatta at python.org>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <brandtbucher at gmail.com>: ---------- nosy: +brandtbucher _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47233> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <brandtbucher at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47233> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <koobs.freebsd at gmail.com> 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 "<stdin>", line 1, in <module> 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 <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <koobs.freebsd at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47205> _______________________________________ 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 <vstinner at python.org>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47236> _______________________________________ 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 <vstinner at python.org> added the comment: Ok sure, I created bpo-47236 "Document types.CodeType.replace() changes about co_exceptiontable". ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47185> _______________________________________ 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 <vstinner at python.org> added the comment: I created bpo-47236 "Document types.CodeType.replace() changes about co_exceptiontable". ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40222> _______________________________________ 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 <guido at python.org>: ---------- nosy: +gvanrossum _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47236> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47230> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <greg at krypto.org>: ---------- keywords: +patch pull_requests: +30401 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32348 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue47229> _______________________________________ 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 <tjreedy at udel.edu>: ---------- title: IDLE / Thonny UI crashes on Chromebook Linux/Bullseye -> IDLE crashes on Chromebook Linux/Bullseye _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47229> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue27546> _______________________________________ 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 <Alex.Waygood at Gmail.com> added the comment: Closing due to lack of response from OP. ---------- resolution: -> not a bug stage: -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46134> _______________________________________ 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 <steve at pearwood.info> 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 <report at bugs.python.org> <https://bugs.python.org/issue47121> _______________________________________ 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 <yan12125+foss at gmail.com>: ---------- nosy: -yan12125 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue17004> _______________________________________ 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 <sweeney.dennis650 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47009> _______________________________________ 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 <brett at python.org>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47022> _______________________________________ 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 <brett at python.org>: ---------- pull_requests: +30402 pull_request: https://github.com/python/cpython/pull/32350 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47061> _______________________________________ 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 <raymond.hettinger at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47121> _______________________________________ 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 <tim at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47121> _______________________________________ 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 <ostanley.lee at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue30718> _______________________________________ 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 <malincns at 163.com>: ---------- nosy: +malin _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47211> _______________________________________ 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 <marxin.liska at gmail.com> added the comment: So the issue is ncurses, closing here. ---------- stage: -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47188> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30404 pull_request: https://github.com/python/cpython/pull/32352 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <hugovk+python at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue36795> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- pull_requests: +30405 pull_request: https://github.com/python/cpython/pull/32353 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47120> _______________________________________ 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 <Germandrummer92 at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47237> _______________________________________ 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 <Alex.Waygood at Gmail.com>: ---------- nosy: +AlexWaygood, JelleZijlstra, eric.smith, gvanrossum, kj _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47237> _______________________________________ 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 <hugovk+python at gmail.com>: ---------- nosy: +hugovk nosy_count: 4.0 -> 5.0 pull_requests: +30406 pull_request: https://github.com/python/cpython/pull/32354 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue36329> _______________________________________ 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 <adiboo67 at gmail.com> added the comment: Hi now it work on all my website https://www.matelesecretairemedicale.com/ ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue36207> _______________________________________ 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 <isidentical at gmail.com>: ---------- resolution: -> rejected stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue44501> _______________________________________ 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 <hugovk+python at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue36329> _______________________________________ 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 <vstinner at python.org>: ---------- pull_requests: +30407 pull_request: https://github.com/python/cpython/pull/32357 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45210> _______________________________________ 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 <vstinner at python.org> 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 <module> File "<frozen runpy>", line 88 in _run_code File "<frozen runpy>", line 198 in _run_module_as_main generate-posix-vars failed --- ---------- Added file: https://bugs.python.org/file50724/unicode_dealloc_bug.patch _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45210> _______________________________________ 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: <CAOo5w8qqj8rTqnLgd8FZ2Q1Z-+Sckq5SXVq0phvqFWfM+2wXtw@mail.gmail.com> Doug Bates <coloneldare at gmail.com> 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", 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 <report at bugs.python.org> wrote: > > Terry J. Reedy <tjreedy at udel.edu> 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 <report at bugs.python.org> > <https://bugs.python.org/issue47229> > _______________________________________ > ---------- title: IDLE crashes on Chromebook Linux/Bullseye -> IDLE / Thonny UI crashes on Chromebook Linux/Bullseye _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47229> _______________________________________ 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 <aleksandr.avferonok at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47238> _______________________________________ 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 <vstinner at python.org>: ---------- Removed message: https://bugs.python.org/msg416847 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue36207> _______________________________________ 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 <vstinner at python.org>: ---------- Removed message: https://bugs.python.org/msg416767 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue36207> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue36207> _______________________________________ 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 <eric at trueblade.com> 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 <module> 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 <module> 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 <report at bugs.python.org> <https://bugs.python.org/issue47237> _______________________________________ 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 <eric at trueblade.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47237> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47103> _______________________________________ 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 <dutcho at ziggo.nl>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <dutcho at ziggo.nl>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <dutcho at ziggo.nl> added the comment: That was the case in older versions (up to a6) ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <vital.had at gmail.com>: 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 <module> 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 <module> import glob, os, re, sys, subprocess File "/opt/local/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 78, in <module> 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 <report at bugs.python.org> <https://bugs.python.org/issue47240> _______________________________________ 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 <steve.dower at python.org> added the comment: Good catch, thanks! ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- pull_requests: +30408 pull_request: https://github.com/python/cpython/pull/32359 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47120> _______________________________________ 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 <kenjin4096 at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47189> _______________________________________ 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 <dutcho at ziggo.nl> 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 <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <julien+python at palard.fr> added the comment: One true positive today: https://github.com/python/cpython/pull/32355 ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue42238> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46850> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46850> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30409 pull_request: https://github.com/python/cpython/pull/32360 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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: <fb1b1e68-22db-abbe-f38a-b1f778c98869@python.org> Steve Dower <steve.dower at python.org> added the comment: It's fine here. It affects the same part of the code. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <vstinner at python.org>: ---------- pull_requests: +30410 pull_request: https://github.com/python/cpython/pull/32361 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40421> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <kenjin4096 at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47189> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue40421> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue40421> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue39947> _______________________________________ 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 <vstinner at python.org>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47241> _______________________________________ 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 <vstinner at python.org> added the comment: The PyFrameObject structure was made opaque by bpo-46836. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40421> _______________________________________ 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 <steve.dower at python.org>: ---------- keywords: +patch pull_requests: +30411 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32364 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <matelesecretaire67 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue39187> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <encukou at gmail.com>: ---------- pull_requests: +30412 pull_request: https://github.com/python/cpython/pull/32365 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47168> _______________________________________ 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 <steve.dower at python.org>: ---------- pull_requests: +30413 pull_request: https://github.com/python/cpython/pull/32366 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47103> _______________________________________ 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 <ronaldoussoren at mac.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47240> _______________________________________ 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 <steve at pearwood.info>: ---------- nosy: +steven.daprano _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <encukou at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47115> _______________________________________ 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 <encukou at gmail.com>: ---------- keywords: +patch pull_requests: +30414 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32365 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47169> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +30415 pull_request: https://github.com/python/cpython/pull/32367 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- pull_requests: +30416 pull_request: https://github.com/python/cpython/pull/32368 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <shadowranger+python at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue39812> _______________________________________ 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 <greg at krypto.org>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.8 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <shadowranger+python at gmail.com>: ---------- Removed message: https://bugs.python.org/msg416876 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue39812> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue24778> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47235> _______________________________________ 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 <guido at python.org> added the comment: So is the conclusion that this should be closed as "not a bug"? ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47237> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47237> _______________________________________ 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 <eric at trueblade.com> added the comment: What would dataclasses do that's different from a regular class? ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47237> _______________________________________ 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 <guido at python.org>: ---------- nosy: -gvanrossum _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <antudic at protonmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47242> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47211> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47227> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue43464> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46721> _______________________________________ 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 <storchaka+cpython at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue26579> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 -Python 3.7 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue26579> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.11 -Python 3.10 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue43464> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47227> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47211> _______________________________________ 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 <storchaka+cpython at gmail.com>: ---------- dependencies: -Use-after-free by mutating set during set operations resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46721> _______________________________________ 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 <kenjin4096 at gmail.com>: ---------- pull_requests: +30417 pull_request: https://github.com/python/cpython/pull/32374 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46769> _______________________________________ 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 <mail at liarprincess.me>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47243> _______________________________________ 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 <kenjin4096 at gmail.com>: ---------- pull_requests: +30418 pull_request: https://github.com/python/cpython/pull/32375 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46769> _______________________________________ 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 <mail at liarprincess.me>: ---------- keywords: +patch pull_requests: +30419 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32376 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47243> _______________________________________ 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 <kenjin4096 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47104> _______________________________________ 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 <alec at rosenbaum.io>: 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" <foo at example.com>' print(formataddr(parseaddr(identity))) # 'foo bar <foo at example.com>' print(formataddr(parseaddr(formataddr(parseaddr(identity))))) # 'foo bar <foo at example.com>' ``` 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 <report at bugs.python.org> <https://bugs.python.org/issue47244> _______________________________________ 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 <mail at liarprincess.me> 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 <report at bugs.python.org> <https://bugs.python.org/issue47243> _______________________________________ 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 <kenjin4096 at gmail.com> added the comment: I forgot to specify, that this is *only* on 3.10, not main. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47104> _______________________________________ 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 <kenjin4096 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46769> _______________________________________ 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 <kenjin4096 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46769> _______________________________________ 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 <kenjin4096 at gmail.com>: ---------- nosy: -kj _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <brett at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47061> _______________________________________ 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 ???? ????????? <socketpair at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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> ???? ????????? <socketpair at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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> ???? ????????? <socketpair at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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> ???? ????????? <socketpair at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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> ???? ????????? <socketpair at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue35823> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue46576> _______________________________________ 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 <jeremy.kloth+python-tracker at gmail.com>: ---------- pull_requests: +30420 pull_request: https://github.com/python/cpython/pull/32382 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46576> _______________________________________ 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 <vstinner at python.org>: ---------- pull_requests: +30421 pull_request: https://github.com/python/cpython/pull/32383 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue35134> _______________________________________ 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 <vstinner at python.org>: ---------- pull_requests: +30422 pull_request: https://github.com/python/cpython/pull/32384 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue35134> _______________________________________ 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 <tmke at posteo.net> 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 <report at bugs.python.org> <https://bugs.python.org/issue47166> _______________________________________ 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 <vstinner at python.org>: ---------- pull_requests: +30423 pull_request: https://github.com/python/cpython/pull/32385 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue35134> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <greg at krypto.org>: ---------- keywords: +3.10regression _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue35134> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <steve.dower at python.org>: ---------- assignee: -> steve.dower resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47239> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47103> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue35134> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue45116> _______________________________________ 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 <CAM.Gerlach at Gerlach.CAM>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue5901> _______________________________________ 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 <guido at python.org>: ---------- pull_requests: +30425 pull_request: https://github.com/python/cpython/pull/32387 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45116> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue35134> _______________________________________ 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 <brett at python.org>: ---------- pull_requests: +30426 pull_request: https://github.com/python/cpython/pull/32392 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47061> _______________________________________ 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 <guido at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47006> _______________________________________ 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 <motogeomtop at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47136> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue47229> _______________________________________ 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 <tjreedy at udel.edu>: ---------- components: +Tests -IDLE title: IDLE UI crashes on Chromebook Linux/Bullseye -> Python tests fail on Chromebook Linux/Bullseye type: crash -> behavior _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47229> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <izbyshev at ispras.ru> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <rahuladitya303 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue43588> _______________________________________ 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 <rahuladitya303 at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue43528> _______________________________________ 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 <dieter at handshake.de>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47246> _______________________________________ 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 <dieter at handshake.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47246> _______________________________________ 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 <awoolley10 at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47247> _______________________________________ 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 <dieter at handshake.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue47246> _______________________________________ 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 <mark at hotpy.org>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47248> _______________________________________ 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 <steve at pearwood.info> 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 <report at bugs.python.org> <https://bugs.python.org/issue47136> _______________________________________ 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 <E.M.terHoeven at student.tudelft.nl> 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 <report at bugs.python.org> <https://bugs.python.org/issue1666807> _______________________________________ 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 <shixuantong at huawei.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47249> _______________________________________ 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 <shixuantong at huawei.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47249> _______________________________________ 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 <malincns at 163.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47248> _______________________________________ 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 <eric at trueblade.com> added the comment: I think this is a duplicate of #46782. ---------- nosy: +eric.smith _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47247> _______________________________________ 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 <vstinner at python.org>: The following change introduced reference leaks: --- commit 884eba3c76916889fd6bff3b37b8552bfb4f9566 Author: Serhiy Storchaka <storchaka at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47250> _______________________________________ 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 <vstinner at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue26579> _______________________________________ 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 <vstinner at python.org>: ---------- title: Add object.__getstate__() introduced a refleak -> Add object.__getstate__() introduced refleaks _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47250> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- pull_requests: +30427 pull_request: https://github.com/python/cpython/pull/32400 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47120> _______________________________________ 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 <guido at python.org> added the comment: @Ewout, the current workaround (until pydevd is fixed) is to add -Xfrozen_modules=off to the Python command line. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue1666807> _______________________________________ 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 <tjreedy at udel.edu> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <lists at cheimes.de> 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 <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <brandtbucher at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47250> _______________________________________ 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 <donghee.na at python.org>: ---------- keywords: +patch pull_requests: +30428 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32403 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47250> _______________________________________ 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 <andre.burgaud at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue39187> _______________________________________ 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 <Alex.Waygood at Gmail.com>: ---------- title: Add object.__getstate__() introduced refleaks -> New object.__getstate__() method introduced refleaks _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47250> _______________________________________ 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 <brandtbucher at gmail.com>: ---------- nosy: +brandtbucher _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue45542> _______________________________________ 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 <pieter.eendebak at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47251> _______________________________________ 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 <pieter.eendebak at gmail.com>: ---------- keywords: +patch pull_requests: +30429 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32404 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47251> _______________________________________ 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 <brandtbucher at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47177> _______________________________________ 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 <brandtbucher at gmail.com>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47177> _______________________________________ 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 <ronaldoussoren at mac.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47179> _______________________________________ 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 <gobot1234yt at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46522> _______________________________________ 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 <PySimpleGUI at PySimpleGUI.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46180> _______________________________________ 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 <report at bugs.python.org> <https://bugs.python.org/issue47233> _______________________________________ 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 <alon.menczer at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47252> _______________________________________ 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 <report at bugs.python.org> <https://bugs.python.org/issue47233> _______________________________________ 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 <simeon+bpo at maryasin.name>: ---------- nosy: +MarSoft _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue20907> _______________________________________ 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 <report at bugs.python.org> <https://bugs.python.org/issue47253> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47103> _______________________________________ 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 <aivainjr141 at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47254> _______________________________________ 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 <steve.dower at python.org>: ---------- pull_requests: +30432 pull_request: https://github.com/python/cpython/pull/32407 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47103> _______________________________________ 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 <aivainjr141 at gmail.com>: ---------- keywords: +patch pull_requests: +30433 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32408 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47254> _______________________________________ 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 <donghee.na at python.org>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47250> _______________________________________ 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 <donghee.na at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47250> _______________________________________ 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 <nicesalmon at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue45116> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47254> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47103> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue34975> _______________________________________ 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 <aivainjr141 at gmail.com> added the comment: would adding an argument to dir be a possible solution, like, ``` l = [1, 2, 3] dir(l, categorize=True) ``` ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47254> _______________________________________ 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 <aivainjr141 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47254> _______________________________________ 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 <jelle.zijlstra at gmail.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47255> _______________________________________ 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 <jelle.zijlstra at gmail.com>: ---------- keywords: +patch pull_requests: +30435 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32409 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47255> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47255> _______________________________________ 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 <brett at python.org>: ---------- pull_requests: +30436 pull_request: https://github.com/python/cpython/pull/32410 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47061> _______________________________________ 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 <jelle.zijlstra at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue46981> _______________________________________ 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 <sweeney.dennis650 at gmail.com> added the comment: Possibly related to the new atomic grouping support from GH-31982? ---------- nosy: +Dennis Sweeney, serhiy.storchaka _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47248> _______________________________________ 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 <malincns at 163.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47256> _______________________________________ 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 <malincns at 163.com>: ---------- keywords: +patch pull_requests: +30437 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32411 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47256> _______________________________________ 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 <malincns at 163.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47248> _______________________________________ 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 <phr-pythonbugs at nightsong.com>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47257> _______________________________________ 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 <marco at barisione.org> 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"])) # <class 'int'> 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 <report at bugs.python.org> <https://bugs.python.org/issue39442> _______________________________________ 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 <izbyshev at ispras.ru> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <marco at barisione.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue39442> _______________________________________ 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 <tagrain at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue43944> _______________________________________ 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 <tfish at google.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <richard.purdie at linuxfoundation.org>: 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=<optimized out>, 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=<optimized out>) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Python/ceval.c:1185 #7 _PyEval_EvalFrameDefault (tstate=<optimized out>, f=<optimized out>, throwflag=<optimized out>) 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=<KeyedRef at remote 0x7f0f7a2f5fd0>, selfref=<weakref at remote 0x7f0f7a2bb880>, _atomic_removal=<built-in method _remove_dead_weakref of module object at remote 0x7f0f7b67aac0>), 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=<optimized out>, con=<optimized out>, locals=<optimized out>, args=<optimized out>, argcount=1, kwnames=<optimized out>) 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=<function at remote 0x7f0f7a2ab520>, tstate=0x558744ef7c10) at /usr/src/debug/python3.10-3.10.4-1.fc35.x86_64/Include/cpython/abstract.h:114 #11 PyObject_CallOneArg (func=<function at remote 0x7f0f7a2ab520>, arg=<optimized out>) 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=<optimized out>, filename=<optimized out>, 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=<optimized out>, argv=<optimized out>) 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 <main>, 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 <main>, argc=5, argv=0x7fff8b816168, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, 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 <report at bugs.python.org> <https://bugs.python.org/issue47258> _______________________________________ 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 <koobs.freebsd at gmail.com>: ---------- nosy: +koobs _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue46263> _______________________________________ 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 <tfish at google.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47121> _______________________________________ 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 <izbyshev at ispras.ru> 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 <report at bugs.python.org> <https://bugs.python.org/issue35823> _______________________________________ 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 <dickinsm at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47257> _______________________________________ 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 <lists at cheimes.de>: ---------- pull_requests: +30438 pull_request: https://github.com/python/cpython/pull/32412 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40280> _______________________________________ 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 <ossman at cendio.se>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47259> _______________________________________ 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 <phr-pythonbugs at nightsong.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47257> _______________________________________ 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 <steve at pearwood.info>: ---------- nosy: +steven.daprano _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47259> _______________________________________ 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 <mark at hotpy.org>: ---------- pull_requests: +30439 pull_request: https://github.com/python/cpython/pull/32413 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40421> _______________________________________ 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> ???? ????????? <socketpair at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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> ???? ????????? <socketpair at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue35823> _______________________________________ 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 <izbyshev at ispras.ru> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <steve.dower at python.org>: ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47103> _______________________________________ 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 <steve.dower at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue45116> _______________________________________ 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 <mark at hotpy.org> added the comment: Don't you need to know if a "call" event is a call or the resumption of a generator? ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47046> _______________________________________ 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: <CAOo5w8r3a5rVFt+zMveZX+krWMgo0skUcroJ4oQ-Nb3ni6+QvQ@mail.gmail.com> Doug Bates <coloneldare at gmail.com> 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 <report at bugs.python.org> wrote: > > Terry J. Reedy <tjreedy at udel.edu> 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 <report at bugs.python.org> > <https://bugs.python.org/issue47229> > _______________________________________ > ---------- title: Python tests fail on Chromebook Linux/Bullseye -> IDLE UI crashes on Chromebook Linux/Bullseye _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47229> _______________________________________ 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 <encukou at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue23312> _______________________________________ 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 <encukou at gmail.com>: ---------- resolution: -> fixed stage: needs patch -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue23312> _______________________________________ 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 <raymond.hettinger at gmail.com>: ---------- nosy: +rhettinger _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47259> _______________________________________ 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 <Alex.Waygood at Gmail.com> added the comment: Please try to make your messages more concise. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <encukou at gmail.com>: ---------- pull_requests: +30440 pull_request: https://github.com/python/cpython/pull/32414 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47169> _______________________________________ 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 <tfish at google.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47234> _______________________________________ 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 <lukasz at langa.pl> 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 <report at bugs.python.org> <https://bugs.python.org/issue47138> _______________________________________ 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 <encukou at gmail.com>: ---------- pull_requests: +30441 pull_request: https://github.com/python/cpython/pull/32415 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47168> _______________________________________ 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> ???? ????????? <socketpair at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47245> _______________________________________ 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 <encukou at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47168> _______________________________________ 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 <izbyshev at ispras.ru>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <matelesecretaire67 at gmail.com> added the comment: Thank you ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue39187> _______________________________________ 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 <vstinner at python.org>: ---------- pull_requests: +30442 pull_request: https://github.com/python/cpython/pull/32417 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue40421> _______________________________________ 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 <kevans at FreeBSD.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <izbyshev at ispras.ru>: ---------- keywords: +patch pull_requests: +30443 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32418 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <rog32 at hi.is>: 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 <report at bugs.python.org> <https://bugs.python.org/issue47261> _______________________________________ 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 <rog32 at hi.is>: ---------- assignee: -> docs at python components: +C API, Documentation nosy: +docs at python _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47261> _______________________________________ 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 <rog32 at hi.is> 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 <report at bugs.python.org> <https://bugs.python.org/issue47261> _______________________________________ 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 <rog32 at hi.is>: ---------- title: RFC: Clarify Limited API macros for PySequence_Fast -> RFC: Clarify usage of macros for PySequence_Fast within the Limited C API _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47261> _______________________________________ 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 <izbyshev at ispras.ru> 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 <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <izbyshev at ispras.ru>: ---------- keywords: +patch stage: -> patch review _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <kenjin4096 at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47255> _______________________________________ 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 <iritkatriel at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue44213> _______________________________________ 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 <iritkatriel at gmail.com>: ---------- 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 <report at bugs.python.org> <https://bugs.python.org/issue35962> _______________________________________ 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 <jelle.zijlstra at gmail.com>: ---------- keywords: +patch pull_requests: +30444 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32419 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47087> _______________________________________ 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 <nad at python.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue5901> _______________________________________ 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 <greg at krypto.org> 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 <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com>: ---------- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +30445 pull_request: https://github.com/python/cpython/pull/32420 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <greg at krypto.org> added the comment: Good catch. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <raymond.hettinger at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47259> _______________________________________ 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 <raymond.hettinger at gmail.com>: ---------- title: string sorting often incorrect -> Clarify SortingHOWTO regarding locale aware string sorting versions: +Python 3.10, Python 3.11 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue47259> _______________________________________ 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 <mariatta.wijaya+miss-islington at gmail.com> 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 <report at bugs.python.org> <https://bugs.python.org/issue47260> _______________________________________ 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 <ezio.melotti at gmail.com> added the comment: So long, and thanks for all the bugs. ---------- _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue2771> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32427 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400503> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32428 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400505> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32432 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400509> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32429 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400506> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32434 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400511> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32431 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400508> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32433 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400510> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32436 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400513> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32437 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400514> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32438 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400515> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32435 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400512> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32442 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400519> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32444 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400522> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32446 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400524> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32443 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400521> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32440 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400517> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32447 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400525> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32448 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400526> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32452 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue207608> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32439 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400516> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32445 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400523> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32449 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400527> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32450 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400533> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32451 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400545> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32454 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400613> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32456 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400622> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32455 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400620> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32457 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400637> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32458 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400638> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32460 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400641> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32461 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400642> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32462 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400643> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32463 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue208381> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32465 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400646> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32468 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400650> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32469 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400651> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32470 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400653> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32472 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400655> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32474 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400657> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32473 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400656> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32471 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400654> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32467 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400649> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32476 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400659> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32480 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400665> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32478 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400661> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32464 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400645> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32479 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400664> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32481 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400666> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32485 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400670> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32483 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400668> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32484 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400669> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32489 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32493 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400686> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32492 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400685> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32490 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32488 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400674> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32496 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400689> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32498 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32497 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400692> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32499 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400694> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32494 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400687> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32501 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400697> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32500 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400696> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32495 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400688> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32503 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400699> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32505 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400705> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32502 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400698> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32504 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400700> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32507 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400707> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32510 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400718> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32509 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400717> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32511 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400719> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32512 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400720> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32515 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400729> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32513 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400722> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32516 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400730> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32519 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400737> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32521 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400739> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32517 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400733> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32520 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400738> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32486 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400672> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32526 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400745> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32528 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400752> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32527 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400749> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32530 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400760> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32482 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400667> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32525 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400744> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32535 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400765> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32524 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400742> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32533 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400763> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32536 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400767> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32531 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400761> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32538 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400769> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32540 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400771> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32543 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400774> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32542 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400773> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32546 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400777> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32539 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400770> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32453 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400608> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32548 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32518 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400734> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32544 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32541 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400772> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32522 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400740> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32547 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400778> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32554 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32553 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400785> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32556 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400788> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32555 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400787> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32466 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400648> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32552 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400784> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32558 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400791> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32557 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400790> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32562 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400795> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32564 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400797> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32561 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400794> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32560 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400793> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32566 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400799> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32459 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400640> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32568 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400801> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32565 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400798> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32567 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400800> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32570 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400803> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32569 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32551 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400783> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32537 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400768> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32574 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400807> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32573 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400806> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32575 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400808> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32576 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400809> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32430 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400507> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32545 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400776> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32578 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400811> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32579 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400812> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32441 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400518> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32581 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400814> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32584 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400818> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32580 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400813> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32582 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400816> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32586 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400820> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32585 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400819> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32475 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400658> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32508 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32588 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400822> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32590 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400824> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32589 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400823> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32583 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400817> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32591 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400825> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32593 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400831> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32592 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400826> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32523 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400741> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32594 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400832> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32597 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400837> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32534 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400764> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32598 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400841> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32599 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400842> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32572 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400805> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32600 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400844> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32577 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400810> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32477 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400660> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32601 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400849> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32602 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400850> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32603 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32563 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400796> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32487 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400673> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32604 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400852> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32605 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400853> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32606 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32608 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400856> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32609 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400857> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32610 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400858> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32612 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400868> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32613 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400869> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32491 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32506 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400706> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32611 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400863> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32614 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400871> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32617 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400874> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32618 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400880> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32619 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400884> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32596 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400836> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32571 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400804> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32622 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400893> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32621 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400890> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32607 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400855> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32615 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400872> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32624 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400899> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32623 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400895> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32550 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400782> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32559 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400792> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32529 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400759> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32587 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32549 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400781> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32629 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400908> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32595 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400835> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32532 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400762> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32631 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400913> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32633 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400927> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32632 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400926> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32616 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400873> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32634 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400931> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32635 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400933> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32636 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400938> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32637 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400941> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32628 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400907> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32639 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400947> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32627 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400903> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32640 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400955> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32642 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400957> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32643 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400958> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32641 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400956> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32620 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400888> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32646 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400962> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32644 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400959> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32647 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400963> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32648 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400970> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32651 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400978> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32653 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400990> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32650 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400977> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32652 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400979> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32654 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400994> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32659 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401019> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32662 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401030> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32661 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401029> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32660 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401022> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32664 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210589> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32666 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210592> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32667 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210595> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32669 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210598> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32670 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210599> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32672 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210601> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32656 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210386> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32674 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210603> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32665 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210590> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32678 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210607> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32649 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400974> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32679 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210608> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32630 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400912> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32680 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210609> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32677 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210606> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32675 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210604> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32681 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210610> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32682 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210611> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32645 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400960> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32683 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210612> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32676 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210605> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32689 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210618> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32687 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210616> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32673 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210602> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32671 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210600> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32694 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210623> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32663 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210587> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32695 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210624> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32697 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210626> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32698 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210627> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32699 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210628> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32700 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210629> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32702 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210631> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32704 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210633> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32706 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210635> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32696 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210625> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32708 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210637> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32703 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210632> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32709 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210638> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32711 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210640> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32712 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210641> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32686 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210615> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32714 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210643> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32713 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210642> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32626 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400902> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32717 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210646> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32688 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210617> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32719 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210648> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32720 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210649> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32722 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210651> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32723 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210652> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32690 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210619> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32693 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210622> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32724 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210653> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32726 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210655> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32701 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210630> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32732 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210662> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32731 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210661> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32735 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210665> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32715 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210644> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32734 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210664> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32638 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400946> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32737 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210667> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32738 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210668> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32739 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210669> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32740 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210670> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32716 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210645> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32728 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210658> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32742 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210672> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32692 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210621> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32746 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210676> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32668 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210597> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32625 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400900> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32749 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210679> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32748 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210678> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32736 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210666> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32750 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32727 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210656> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32753 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32744 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210674> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32721 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210650> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32759 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210689> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32756 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210686> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32760 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210690> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32743 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210673> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32751 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210681> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32758 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210688> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32755 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210685> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32764 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210694> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32763 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32765 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210695> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32762 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210692> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32766 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210696> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32730 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210660> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32768 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210698> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32771 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210701> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32770 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210700> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32772 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210702> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32769 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210699> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32774 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210704> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32773 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210703> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32767 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210697> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32775 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210705> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32754 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32776 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210706> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32747 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210677> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32778 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210708> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32780 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210710> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32782 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32783 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210713> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32779 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210709> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32786 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210717> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32787 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401032> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32788 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401033> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32785 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210716> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32790 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210739> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32655 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400998> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32789 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210738> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32784 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210715> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32791 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210740> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32792 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210741> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32729 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210659> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32733 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210663> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32798 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210747> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32796 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210745> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32800 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210749> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32797 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210746> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32801 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210750> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32793 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210742> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32710 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210639> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32802 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210778> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32757 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210687> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32707 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210636> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32806 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210794> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32658 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401010> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32805 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210793> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32803 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210791> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32777 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210707> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32808 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210796> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32810 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210798> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32804 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210792> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32809 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210797> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32812 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210801> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32816 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210806> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32815 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210805> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32817 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210809> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32741 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210671> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32820 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210812> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32819 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210811> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32818 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210810> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32811 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210799> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32825 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210822> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32822 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210819> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32823 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210820> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32821 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210818> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32826 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210823> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32827 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210824> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32828 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210826> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32831 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210830> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32813 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32835 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210834> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32761 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210691> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32830 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210829> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32836 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210835> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32832 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210831> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32837 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210836> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32834 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210833> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32781 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210711> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32839 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210838> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32842 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210841> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32843 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210842> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32841 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210840> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32745 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210675> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32705 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210634> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32846 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210845> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32718 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210647> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32807 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210795> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32847 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210846> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32691 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210620> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32850 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210850> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32851 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210853> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32852 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32853 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210855> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32856 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210858> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32814 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210804> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32858 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210860> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32855 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210857> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32860 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210862> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32849 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210849> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32862 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210864> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32864 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210866> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32863 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210865> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32861 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210863> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32725 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210654> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32866 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210868> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32865 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210867> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32857 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210859> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32795 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210744> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32869 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210871> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32870 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210911> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32868 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210870> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32871 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401043> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32844 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210843> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32872 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210915> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32657 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401006> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32854 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210856> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32874 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210924> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32873 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401046> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32877 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401061> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32876 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401055> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32880 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401064> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32884 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401085> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32840 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210839> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32882 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401071> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32881 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401065> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32893 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401106> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32892 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401104> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32896 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401109> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32894 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401107> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32899 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211403> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32901 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401121> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32900 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401120> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32903 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401127> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32904 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401129> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32867 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210869> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32906 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211486> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32907 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401134> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32902 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401126> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32908 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211499> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32911 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401137> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32794 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210743> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32909 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401135> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32914 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211582> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32684 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210613> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32917 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401146> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32913 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401141> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32910 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211520> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32918 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401151> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32919 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401152> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32920 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211620> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32923 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211705> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32922 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211690> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32886 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211165> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32921 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211667> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32838 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210837> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32915 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211586> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32924 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211710> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32829 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210827> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32927 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401167> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32926 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211725> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32897 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401110> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32848 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210848> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32889 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211204> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32929 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401170> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32928 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401168> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32931 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401173> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32930 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401172> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32933 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401175> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32934 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401176> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32935 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211818> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32937 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211858> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32938 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211860> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32939 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211866> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32925 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401162> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32942 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401187> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32943 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211961> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32752 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210682> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32945 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401197> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32946 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212113> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32947 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212123> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32949 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401208> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32932 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32944 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401196> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32879 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401063> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32888 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211203> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32887 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401096> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32891 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401103> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32890 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401102> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32885 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401086> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32936 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401178> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32940 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211928> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32948 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401207> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32916 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401145> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32950 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401211> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32951 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401212> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32953 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401215> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32954 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212244> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32685 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210614> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32875 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210944> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32957 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212289> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32955 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212265> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32958 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401226> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32959 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401229> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32961 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212317> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32962 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401234> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32963 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401238> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32965 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401246> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32967 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401250> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32845 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210844> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32964 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401243> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32971 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401257> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32970 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212472> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32972 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212521> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32898 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211319> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32960 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401233> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32973 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401264> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32952 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401214> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32969 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212468> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32978 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212634> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32974 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212558> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32799 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210748> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32979 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401275> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32980 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401277> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32977 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212628> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32982 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401284> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32976 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401272> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32833 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210832> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32983 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32985 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401298> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32956 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212288> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32986 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401299> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32987 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212759> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32984 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401295> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32988 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212760> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32990 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401310> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32989 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401309> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32991 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32993 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401313> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32997 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212943> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32968 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212436> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32941 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401186> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32995 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401320> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32998 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212944> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32912 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401138> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32999 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401335> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33001 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401338> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32981 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401278> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33004 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401341> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33008 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401345> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33007 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213047> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33006 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213037> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33009 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401346> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33011 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213091> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33013 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401354> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32883 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211162> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33014 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213106> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33016 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213145> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33017 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401362> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33019 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401373> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33020 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401374> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33021 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401380> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33018 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401369> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32992 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401312> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33023 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213254> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33022 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213243> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33025 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401388> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33000 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401337> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33026 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401389> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33027 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401390> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33030 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401394> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33028 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401391> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33029 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213328> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33038 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213576> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33037 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401418> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33012 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401352> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33039 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213600> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33043 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401425> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33041 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401423> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33031 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213401> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33052 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401433> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33051 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213733> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33040 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401420> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33044 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401428> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32824 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33005 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401342> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33064 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401447> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33065 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213800> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33066 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213803> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32994 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401315> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33068 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213810> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33033 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401398> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33075 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213888> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33074 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213862> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33010 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401350> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33048 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213704> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33076 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213890> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33079 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401458> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33080 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213934> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33082 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214027> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33056 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401439> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33078 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401454> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33084 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214033> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33073 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213850> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33085 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401472> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33053 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401437> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33087 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214235> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33088 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401481> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33089 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214245> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33045 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33092 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214256> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33091 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401483> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33003 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401340> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33095 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401485> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33096 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214293> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32975 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212573> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33093 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214287> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33046 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213696> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33035 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401412> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33094 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214290> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33101 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401495> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33100 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214304> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33102 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214318> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33103 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214323> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33015 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213142> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33106 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214334> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33042 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401424> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33070 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213812> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33090 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401482> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33110 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214410> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33116 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401509> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33117 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401510> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33054 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213760> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33118 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401511> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33115 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214439> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33109 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214359> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33108 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214336> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33120 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401514> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33121 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401517> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33062 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213795> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33067 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213807> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33063 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213797> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33060 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213788> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33098 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214294> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33127 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401534> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33130 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401537> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33071 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213828> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33131 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214553> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33024 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401387> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33129 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401536> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33057 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213779> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33133 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214566> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33072 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213829> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33141 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214749> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33134 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214598> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33142 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214754> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33139 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214746> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32859 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210861> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33144 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214758> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33032 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401396> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33145 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33058 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213785> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33152 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401572> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33157 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214830> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33158 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214846> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33154 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401574> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33159 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214847> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33077 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213894> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33164 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215006> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33155 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401575> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33165 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215026> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33149 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401569> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33170 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215056> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33169 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215054> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32966 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401249> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33069 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213811> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33047 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213700> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33173 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215077> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33174 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401606> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33086 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401477> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33171 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215057> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33177 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215119> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33119 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401512> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33034 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213463> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33140 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214747> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33123 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401527> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33161 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214923> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33181 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215147> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33061 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213793> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33183 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401630> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33143 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214756> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33188 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401635> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33049 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213721> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33184 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401631> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33114 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401508> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33201 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215341> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33205 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215357> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33113 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401507> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33132 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214557> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33204 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401664> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33200 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215338> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33207 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215392> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33156 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33210 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401679> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33211 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215476> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33160 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214900> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33214 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215492> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33215 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401682> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33212 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215487> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33217 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215515> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33220 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215528> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33222 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215531> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33216 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215506> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33213 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215491> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33224 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215595> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33228 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215617> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33225 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215608> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33195 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401652> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33230 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215625> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33229 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215618> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33232 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215641> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33227 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215615> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33233 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215643> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33231 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401699> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33234 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401702> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33236 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401709> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33197 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215323> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33235 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215658> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33238 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215676> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33237 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215673> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33219 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215527> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33241 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215681> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33242 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215690> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33146 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33107 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401496> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33135 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401544> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33244 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33243 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215696> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33246 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401721> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33248 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215731> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33250 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401730> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33251 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215789> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33252 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215831> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33255 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215894> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33163 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215005> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33178 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215126> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33254 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215845> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33256 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401751> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33258 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215903> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33259 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215907> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33263 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215928> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33202 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401663> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33265 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215973> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33245 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215714> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33260 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215912> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33002 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401339> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33268 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216008> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33253 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215844> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33269 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216011> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33276 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401778> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33272 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401774> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33274 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401776> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33279 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401781> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33275 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401777> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33281 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216048> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33280 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401782> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33278 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33283 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216121> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33284 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216136> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33267 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215987> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33285 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216144> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33286 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216172> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33287 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216174> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33240 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401714> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33162 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401595> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33148 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214792> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33290 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401804> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33289 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33291 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216235> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33293 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216237> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33292 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216236> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33271 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401773> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33295 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216244> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33296 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216251> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33298 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216263> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33299 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401807> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33300 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216267> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33282 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216117> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33302 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216271> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33270 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401772> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33304 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216285> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33305 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216289> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33297 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216255> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33311 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401823> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33309 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216325> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33307 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216295> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33310 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216326> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33313 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216388> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33314 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401839> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33316 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401840> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33277 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401779> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33321 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401844> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33315 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216397> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33326 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401859> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33320 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401843> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33328 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216546> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33327 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401862> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33325 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216516> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33336 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216677> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33338 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216682> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33335 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401870> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33318 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401842> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33337 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216678> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33343 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401880> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33344 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401882> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33324 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401857> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33347 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401897> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33346 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401896> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33319 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216405> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33339 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216716> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33345 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216787> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33332 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216636> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33349 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401904> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33317 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401841> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33306 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401816> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33359 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217092> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33350 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216872> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33363 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217178> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33356 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217032> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33351 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216964> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33330 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216603> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33367 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217242> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33358 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217090> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33370 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217245> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33373 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217305> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33381 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402068> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33380 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217402> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33378 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217377> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33386 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217490> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33388 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217524> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33366 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217241> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32996 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212877> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33377 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401993> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33392 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217612> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33354 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401936> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33369 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401973> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33401 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219221> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33398 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402114> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33399 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217745> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33403 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219483> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33410 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219662> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33409 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219645> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33412 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219709> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33394 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33384 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217467> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33340 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216720> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33308 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33420 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33425 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219960> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33419 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219822> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33426 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220081> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33417 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402170> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33430 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220994> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33374 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217324> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33429 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220993> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33126 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401531> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33104 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214324> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33193 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215308> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33151 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401571> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33059 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32895 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401108> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33198 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215330> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33196 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401653> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32878 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401062> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33137 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214660> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33055 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213773> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33199 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401659> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33239 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401713> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33405 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219486> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33434 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221060> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33390 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217606> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33432 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221027> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33341 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401877> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33400 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219123> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33411 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219707> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33406 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219556> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33427 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220082> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33445 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221327> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33438 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221121> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33408 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219622> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33361 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217158> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33441 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402229> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33428 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220983> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33424 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219883> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33447 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221654> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33450 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402278> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33448 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221671> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33451 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221706> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33455 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221930> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33371 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217278> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33454 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402313> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33435 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402223> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33442 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402231> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33444 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221208> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33458 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221965> _______________________________________ 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 <stringobject>.join(<unicodestring>) Message-ID: <1649606553.72.0.0828763609756.issue221013@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33431 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221013> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33460 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222070> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33459 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402337> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33456 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221951> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33440 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221129> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33466 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402356> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33467 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402357> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33323 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216453> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33465 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402355> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33368 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401972> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33469 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222215> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33353 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217004> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33471 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402363> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33472 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402364> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33391 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217608> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33480 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222564> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33479 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222562> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33376 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217329> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33402 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219450> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33312 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401824> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33483 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222588> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33464 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402354> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33439 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402227> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33484 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402409> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33488 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33478 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222517> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33489 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222690> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33492 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222756> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33387 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217508> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33433 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402208> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33493 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33449 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221672> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33414 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402169> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33497 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222986> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33468 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222176> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33496 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222985> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33501 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402477> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33504 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223261> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33505 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402492> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33506 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402498> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33364 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217195> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33508 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223409> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33476 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222395> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33512 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223616> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33513 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223625> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33462 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222162> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33511 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402548> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33516 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223634> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33514 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402549> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33520 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223694> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33515 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402553> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33482 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222589> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33509 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223520> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33519 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223685> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33529 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402599> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33524 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223816> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33526 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402588> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33418 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219806> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33533 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224106> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33530 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224038> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33477 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222463> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33522 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223730> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33383 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217464> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33538 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402628> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33535 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402613> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33550 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402669> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33499 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402469> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33498 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223045> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33532 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224060> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33470 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402362> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33490 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222715> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33561 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402698> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33558 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224764> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33562 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402715> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33547 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224572> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33564 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224981> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33563 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224943> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33510 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223599> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33495 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402453> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33570 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225297> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33569 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225217> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33487 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33571 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33566 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402733> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33574 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402794> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33575 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225452> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33565 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225003> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33576 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225473> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33491 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222729> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33577 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225476> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33580 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225531> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33581 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402808> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33582 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402813> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33528 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224003> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33546 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402652> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33531 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224051> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33588 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402827> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33587 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225719> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33584 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225610> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33578 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225489> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33521 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223695> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33589 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225744> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33453 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221887> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33592 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402847> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33590 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33594 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225860> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33523 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223769> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33591 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225808> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33596 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225891> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33599 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225933> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33585 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402817> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33600 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402863> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33534 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224120> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33601 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402864> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33579 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33502 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223225> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33603 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402875> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33517 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223642> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33604 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225981> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33389 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217556> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33605 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225989> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33608 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402891> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33610 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226254> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33612 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402915> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33613 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402925> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33616 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402939> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33552 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402678> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33615 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226351> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33542 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402637> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33348 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216850> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33619 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402953> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33617 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402940> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33500 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223166> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33554 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402681> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33621 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226510> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33620 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402955> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400506> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400507> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33573 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225391> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400510> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33595 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225880> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400514> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33539 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402630> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33593 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402852> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33568 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402746> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400515> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33549 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224629> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400516> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400522> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400518> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400517> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400519> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400525> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400533> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue207608> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400545> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400527> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33527 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223924> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400622> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400637> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400641> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400643> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400640> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400646> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400642> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400648> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400650> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400649> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400651> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue208381> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33623 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226564> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400653> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400656> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400654> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400657> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400659> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400658> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400660> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400665> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400666> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400661> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400668> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400645> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400673> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400670> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400674> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400503> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400686> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400685> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400688> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400689> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400687> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400694> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400696> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400697> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400699> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400700> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400718> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400706> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400707> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400719> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400669> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33396 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217691> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400722> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400705> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400723> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400729> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400720> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400737> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400739> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400740> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400741> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400742> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400667> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400759> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400613> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400745> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400763> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400762> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400761> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400767> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400765> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400770> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400772> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400773> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400768> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400769> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400771> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400774> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400776> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400638> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400764> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400781> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400783> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400784> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400749> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400738> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400672> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400785> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400787> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400788> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400793> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400791> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400796> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400797> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400799> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400795> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400800> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400801> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400730> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400803> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400798> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400805> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400807> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400808> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400810> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400814> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400811> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400813> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400792> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400819> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400812> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400820> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400818> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400823> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400822> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400806> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400826> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400825> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400831> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400692> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400832> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400836> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400837> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400841> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400835> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400844> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400850> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400852> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400849> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400857> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400856> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400744> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400858> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400794> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400863> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400868> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400869> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400871> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400872> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400873> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400874> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400880> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400888> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400890> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400895> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400900> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400899> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400908> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400913> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400907> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400926> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400931> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400933> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400842> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400884> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400955> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400817> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400938> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400960> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400956> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400970> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400958> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400979> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400994> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400804> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210386> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210587> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401030> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401029> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400816> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400962> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210592> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401022> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210590> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210600> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210601> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210603> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210607> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33572 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225375> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210609> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400959> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210611> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400946> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210615> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210614> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210613> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210616> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210618> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210621> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210620> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210622> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210619> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210624> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210623> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401006> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210628> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210631> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210630> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33475 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222327> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210633> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210636> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400902> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210635> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210640> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210638> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210643> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210645> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210646> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400963> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210647> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210648> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210649> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210652> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210655> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210637> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210658> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210659> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210597> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210634> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210662> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400957> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210669> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210668> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210665> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210671> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210663> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210676> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210677> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401010> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210678> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210675> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210681> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210686> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210667> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210617> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210656> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210689> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210690> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210691> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210672> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400990> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210695> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210692> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210697> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210696> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210679> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210670> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210602> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210700> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210705> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210716> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401032> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210717> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210711> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400941> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210625> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210741> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210740> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210748> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210791> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210747> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210744> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210707> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210793> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210796> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210801> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210778> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210698> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210715> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210811> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210820> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210805> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210674> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210822> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210829> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210830> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210832> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210688> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210810> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401033> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210833> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210843> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210606> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210841> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400927> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210840> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33540 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224324> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210605> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210844> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210687> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210855> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210860> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210863> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400974> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210746> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210838> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210710> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210846> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210850> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210865> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210867> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210870> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400977> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210871> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210831> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210915> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401046> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210869> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210835> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401055> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401061> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210812> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401063> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401071> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210824> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210799> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210709> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401085> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211165> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401103> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211203> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401108> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401107> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210818> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210749> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401109> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210864> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210827> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211403> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211481> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211499> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401135> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210797> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211520> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210702> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210859> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210599> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211582> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401146> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210809> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401151> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211586> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211667> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210839> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211705> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211690> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211710> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210704> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401168> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401170> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401172> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210862> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401173> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401176> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211818> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401175> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401178> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211866> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211928> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401062> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212113> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401197> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401138> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401212> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210868> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212244> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401127> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401233> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401243> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401250> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401167> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212436> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401264> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212472> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401277> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401208> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401284> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401226> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401298> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212265> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212760> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212759> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401064> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401320> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401340> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401338> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213037> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211620> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210857> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212288> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213142> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212289> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211860> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401380> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401337> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401390> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401211> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401373> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213328> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401312> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401186> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401398> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213600> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401420> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213704> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401433> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401346> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213793> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213795> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213800> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213807> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213811> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213828> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213888> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214033> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401447> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213829> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214027> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213934> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214235> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401374> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401477> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214290> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214256> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214287> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401481> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401483> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401458> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401485> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214293> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401495> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214304> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213803> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214324> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401496> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214334> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214359> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214424> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214336> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214410> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401439> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214318> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401508> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401507> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401486> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214296> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214427> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401509> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401512> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214490> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214333> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401510> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401531> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401530> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401246> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401536> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401529> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214557> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214439> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213960> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214630> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401558> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214598> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401369> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214749> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214566> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214754> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214747> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214746> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401482> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401569> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401537> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401472> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214792> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401570> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401575> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214900> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401595> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401574> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214846> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401428> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215040> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215051> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215056> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215054> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215035> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215119> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215077> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214758> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215112> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401416> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215143> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401630> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401636> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401632> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215146> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215221> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215247> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401634> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401606> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214294> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215330> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215118> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214660> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215338> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215341> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401647> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215147> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215353> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215357> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215392> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401651> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401544> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215476> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215469> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215487> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401679> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215362> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215491> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401676> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401682> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215506> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215492> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215528> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215517> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215595> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401664> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215617> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215608> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215618> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215625> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401699> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215615> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215641> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401572> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214030> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401709> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215658> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215673> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215690> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401721> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215731> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401724> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215261> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215831> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215844> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401652> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215845> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215894> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215900> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215903> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210685> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215918> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401635> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215974> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401753> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215928> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215987> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215973> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216008> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401772> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401773> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215531> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216011> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215676> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401776> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401778> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401779> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401777> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215026> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401781> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401782> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216048> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216117> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216121> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215714> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216144> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216136> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216174> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401801> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401751> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401804> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216241> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216235> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216237> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216255> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401807> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216267> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216236> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216280> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401810> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216251> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216285> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216263> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401816> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216326> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215555> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401774> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401824> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216325> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216244> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216388> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216295> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216397> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214553> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401840> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401663> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401844> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216453> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401612> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401857> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401859> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216636> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216649> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216604> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216664> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401843> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216603> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216716> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401877> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216787> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401880> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401882> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216720> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216872> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215057> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217028> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401928> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401896> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216271> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217178> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217242> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217167> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401980> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216682> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217329> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217278> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217402> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217324> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402068> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401993> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217484> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217490> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217464> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217508> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213890> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216405> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217245> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402106> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217524> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217606> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217612> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217686> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217691> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402114> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219123> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219645> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219558> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216516> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219486> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402169> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219709> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219662> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219772> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219729> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216289> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219862> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402185> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219755> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33427 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220082> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402170> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33429 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220993> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33430 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220994> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219707> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219960> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216732> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33434 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221060> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33435 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402223> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33436 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402226> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33437 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221115> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33433 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402208> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33438 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221121> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33441 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402229> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33444 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221208> _______________________________________ 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 <stringobject>.join(<unicodestring>) Message-ID: <1649606608.15.0.56214298968.issue221013@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33431 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221013> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33445 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221327> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33450 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402278> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219450> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33446 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221479> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33442 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402231> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33452 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221791> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33432 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221027> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33454 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402313> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33457 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221963> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217706> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33459 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402337> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33460 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222070> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33463 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222168> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33462 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222162> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33447 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221654> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33461 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222113> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33466 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402356> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33468 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222176> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33470 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402362> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33469 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222215> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219622> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33467 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402357> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216547> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33475 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222327> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33476 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222395> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33473 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222236> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33479 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222562> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33482 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222589> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33480 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222564> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33471 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402363> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401850> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33481 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222587> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33486 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222625> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33488 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33496 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222985> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33494 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222977> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33495 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402453> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33492 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222756> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33498 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223045> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33491 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222729> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33500 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223166> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33502 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223225> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33487 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33483 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222588> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33506 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402498> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219221> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219883> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33499 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402469> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216546> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33449 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221672> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33509 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223520> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33511 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402548> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33443 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221207> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33515 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402553> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33519 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223685> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33497 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222986> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33510 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223599> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33521 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223695> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33523 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223769> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33512 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223616> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33428 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220983> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33524 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223816> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217241> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33465 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402355> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33529 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402599> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33474 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222273> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33513 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223625> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33537 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402627> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33528 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224003> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33536 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402626> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33539 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402630> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33533 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224106> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219485> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33516 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223634> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219483> _______________________________________ 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 <arhiv@freemail.org.mk> Message-ID: <1649606612.1.0.174043743309.issue402638@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33543 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402638> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33507 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223398> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33544 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224367> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33477 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222463> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33547 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224572> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33439 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402227> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33542 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402637> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33546 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402652> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33552 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402678> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33548 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402665> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33554 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402681> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33557 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224758> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33558 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224764> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33561 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402698> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33563 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224943> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33564 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224981> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33505 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402492> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33559 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224782> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33565 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225003> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33514 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402549> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33556 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402691> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212943> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401335> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33567 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402737> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219860> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33451 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221706> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33538 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402628> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33571 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402780> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33576 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225473> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33573 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225391> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33508 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223409> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33574 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402794> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33577 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225476> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33541 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224344> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33580 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225531> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33575 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225452> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33583 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225598> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33585 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402817> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33484 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402409> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33588 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402827> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33589 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225744> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33545 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224478> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33584 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225610> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33590 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33562 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402715> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33582 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402813> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33530 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224038> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219806> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33596 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225891> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33594 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225860> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33601 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402864> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33602 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402868> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33517 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223642> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33595 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225880> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33600 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402863> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33605 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225989> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33608 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402891> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33610 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226254> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33609 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226161> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33535 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402613> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33611 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226264> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33616 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402939> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33617 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402940> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33613 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402925> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33560 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224791> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33612 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402915> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33599 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225933> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33623 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226564> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33570 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225297> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33619 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402953> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33553 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402679> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33625 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226587> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33627 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226619> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33626 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402980> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33628 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402989> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33490 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222715> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33629 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226665> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33634 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226766> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33593 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402852> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33620 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402955> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33638 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33639 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226863> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33641 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403028> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33624 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226586> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33540 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224324> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33643 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227055> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33534 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224120> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33644 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403045> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33646 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227098> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33647 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403048> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33648 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403052> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33642 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403029> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33649 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403055> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33651 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227151> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33652 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403067> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33650 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403061> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33618 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226400> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33657 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227377> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33645 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227072> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33659 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403082> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33606 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402878> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33654 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227271> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33661 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227483> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33655 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227273> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33665 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227718> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33666 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227722> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33635 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226790> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33677 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228079> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33676 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228053> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33550 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402669> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33679 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228119> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33681 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403155> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33686 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228223> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33678 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403147> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33685 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228220> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33504 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223261> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33551 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402670> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33682 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403158> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33630 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403002> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33692 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228302> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33615 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226351> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33683 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228164> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33668 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403129> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33697 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228475> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33689 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403170> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33694 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403185> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33653 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227259> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33704 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403220> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33693 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403179> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33696 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403200> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33701 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403216> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33707 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228685> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33695 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403188> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33706 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403225> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33713 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403232> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33708 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403227> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33702 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403217> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33687 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228251> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33720 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403243> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33705 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403222> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33714 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228764> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33722 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228921> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33724 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403246> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33723 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228930> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33725 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403247> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33716 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403235> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33734 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403259> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33730 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403253> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33726 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403248> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33727 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403249> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33732 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228973> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33740 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403283> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33569 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225217> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33743 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229173> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33744 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229179> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33745 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403305> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33711 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228711> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33735 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229000> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33739 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403279> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33633 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403012> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33750 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403313> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33747 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229205> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33737 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403276> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33736 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403265> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33749 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229234> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33728 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403250> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33742 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403303> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33751 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403314> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33753 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229288> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33752 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229280> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33755 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403318> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33759 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403329> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33758 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229345> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33729 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403252> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33756 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403323> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33763 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403334> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33764 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403336> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33765 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229475> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33768 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403343> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33674 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228037> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33761 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229417> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33771 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403349> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33766 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229584> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33775 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33731 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228965> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33604 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225981> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33777 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229718> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33774 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229661> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33780 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229762> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33781 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229788> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33782 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229810> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33770 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403345> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33783 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403373> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33779 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229759> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33784 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229827> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33762 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403333> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33786 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229832> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33757 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229344> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33790 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229843> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33791 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33792 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403391> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33787 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229833> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33788 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229840> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33785 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229829> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33796 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403395> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33801 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229998> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33772 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229626> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33741 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403297> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33803 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230006> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33798 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229991> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33809 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230117> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33795 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403394> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33703 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228591> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33808 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230077> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33810 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230165> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33812 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403445> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33814 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403453> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33804 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230010> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33811 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403441> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33820 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230355> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33797 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403409> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33816 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403457> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33821 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230359> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33817 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230306> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33826 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403487> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33818 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403471> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33825 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403485> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33760 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229379> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33823 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403477> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33828 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403511> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33829 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403512> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33802 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403412> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33592 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402847> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33721 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228899> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33827 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403495> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33662 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403100> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33813 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230197> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33819 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403473> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33833 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403517> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33837 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403543> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33836 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230656> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33838 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403544> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33631 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226700> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33840 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33839 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403547> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33841 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230748> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33830 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403513> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33842 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403557> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33799 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229994> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33831 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403514> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33845 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403589> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33844 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403587> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33847 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231064> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33849 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231189> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33848 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231170> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33850 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231204> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33853 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231225> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33854 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231235> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33855 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231237> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33857 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403636> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33776 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229692> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33863 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231328> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33864 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231377> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33860 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231273> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33865 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231398> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33867 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403656> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33869 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231439> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33870 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231442> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33872 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403666> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33874 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403668> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33862 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231304> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33815 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230242> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33876 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403671> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33875 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403669> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33877 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231480> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33880 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33881 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403681> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33873 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403667> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33846 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403596> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33884 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231540> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33856 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231239> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33886 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403687> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33885 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231560> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33887 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33754 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229293> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33717 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403236> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33888 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403694> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33892 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231653> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33893 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403703> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33858 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231249> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33898 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403717> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33891 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231652> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33710 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228688> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33895 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231725> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33901 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231825> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33902 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403721> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33905 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231996> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33907 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403749> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33908 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232000> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33909 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403752> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33913 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232010> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33912 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232008> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33915 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232124> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33916 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232136> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33918 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403777> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33920 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232288> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33921 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403782> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33834 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230532> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33922 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232313> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33883 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403685> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33926 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232399> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33919 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232276> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33924 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232397> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33927 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403804> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33897 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231774> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33929 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232460> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33928 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232409> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33896 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231756> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33932 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232510> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33930 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403808> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33843 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403578> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33934 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232600> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33937 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232619> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33868 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403657> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33941 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232783> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33852 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231222> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33939 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232637> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33942 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33944 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33948 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232820> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33910 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403753> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33900 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231824> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33951 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403864> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33952 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403865> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33955 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232921> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33950 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232879> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33947 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232817> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33957 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403868> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33945 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232815> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33938 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232633> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33962 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233084> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33832 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403516> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33964 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233147> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33966 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403885> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33935 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232606> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33943 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232787> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33963 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233096> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33889 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403695> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33733 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403258> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33970 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233213> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33967 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403886> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33959 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403871> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33978 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403903> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33968 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403892> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33980 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233308> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33975 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233262> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33983 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403928> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33971 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233214> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33746 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229193> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33936 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232609> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33985 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233450> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33984 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403930> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33991 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403947> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33911 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232005> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33989 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403937> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33988 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233532> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33974 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233259> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33994 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233668> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33890 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231635> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33993 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233665> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33995 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233717> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33996 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403972> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33903 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403729> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33998 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403977> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33954 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232913> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34000 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403985> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34001 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404130> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33878 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403678> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34002 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404159> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34004 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404163> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33999 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403978> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34007 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404276> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34006 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404274> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34008 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404275> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34009 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404277> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34011 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404322> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34014 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404444> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33882 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34010 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404282> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34016 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404536> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34012 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404327> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34017 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404539> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34018 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404545> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34025 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404875> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34020 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34022 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404774> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34023 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404826> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34026 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404899> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34030 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404997> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34035 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405102> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34036 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405122> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34034 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405101> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34038 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405227> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34039 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405228> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34040 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405329> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34031 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405007> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34041 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405341> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33976 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403901> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33977 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233283> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34043 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405350> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34042 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405346> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34029 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404928> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34044 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405351> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34045 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405355> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34047 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405410> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33981 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233334> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34033 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405092> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34048 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405427> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33946 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232816> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33982 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403926> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34049 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405553> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34050 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405554> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34037 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405139> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33851 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231207> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33992 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403948> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34051 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405567> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34053 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405676> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34054 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405792> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34057 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405845> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34055 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405831> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34056 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405837> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34058 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405849> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34059 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34061 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405894> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34065 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405939> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33894 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403710> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34003 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404162> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34064 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405931> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33923 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403789> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34062 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405896> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34063 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405900> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34066 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405952> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34068 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406049> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34005 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404240> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34069 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406076> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34070 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406191> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34071 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406248> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34075 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406280> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34074 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406272> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34076 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406287> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34072 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406270> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34077 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406293> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34080 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406292> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34079 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406296> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34078 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406294> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34081 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406299> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34082 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406298> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34083 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406295> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34084 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406300> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34085 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406297> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34086 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406302> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34087 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406301> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34089 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406306> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34091 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406308> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34090 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406307> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34092 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406304> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34093 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406309> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34094 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406312> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34095 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406310> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34015 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404535> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34096 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406313> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34098 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406314> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34099 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406319> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34032 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405016> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34101 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406320> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34103 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406321> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34100 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406318> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34097 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406311> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34088 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406305> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34104 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406325> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34105 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406323> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34108 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406327> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34109 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406328> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34106 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406324> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34107 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406326> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34110 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406459> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34112 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406642> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34111 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406563> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34116 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406815> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34119 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407019> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34120 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407093> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34115 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406792> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34113 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34117 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406824> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34114 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406705> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34128 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407434> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34028 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404924> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34129 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407504> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34121 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407148> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34123 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407180> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34127 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407394> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34130 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407538> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34131 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407543> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34122 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407149> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34126 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407379> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34140 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407965> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34132 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407626> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34143 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408173> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34136 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407777> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34141 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408085> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34133 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407680> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34145 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408308> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34149 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408696> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34138 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407800> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34150 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408767> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34137 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407783> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34139 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407915> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34144 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408271> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34155 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408958> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34158 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409044> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34152 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408820> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34156 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408959> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34142 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408098> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34153 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408884> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34162 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409049> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34159 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409045> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34163 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409053> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34154 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408936> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34164 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409055> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34165 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409078> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34167 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409230> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34166 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409097> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34168 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409231> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34171 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409254> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34169 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409232> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34173 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409307> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34175 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409331> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34177 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409355> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34178 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409403> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34182 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409444> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34184 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409504> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34179 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409419> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34189 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409755> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34188 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409684> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34193 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409911> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34196 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410008> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34198 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410046> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32514 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400723> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34200 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410154> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34203 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410164> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34206 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410231> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34205 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410223> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34201 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410155> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34209 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410274> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34210 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410336> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34190 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409773> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34212 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410407> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34211 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410395> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34215 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410473> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34216 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410541> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34218 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410608> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34194 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409924> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34191 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409838> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34220 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410708> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34219 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410620> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34222 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410878> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34151 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408798> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34217 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410547> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34227 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411060> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34214 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410471> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34229 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411118> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34231 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411138> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34230 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411127> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34226 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411055> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34234 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411213> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34235 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411267> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34238 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411508> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34242 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411834> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34244 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411881> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34241 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411830> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34213 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410465> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34223 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410890> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34243 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411845> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34247 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412036> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34249 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412214> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34250 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412227> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34248 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412086> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34246 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411996> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34251 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412229> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34254 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412271> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34233 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411191> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34253 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412252> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34258 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412553> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34259 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412672> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34257 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412500> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34174 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409311> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34185 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409587> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34261 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412718> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34262 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413005> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34181 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409430> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34192 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409864> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34263 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413011> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34267 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413171> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34266 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413144> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34187 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34271 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413552> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34269 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413333> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34268 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413320> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34273 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413710> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34274 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413714> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34176 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409354> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34272 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413582> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34275 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413750> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34180 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409420> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34224 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410979> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34279 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413876> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34277 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413767> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34225 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410993> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34280 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413912> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34281 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413956> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34276 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413766> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34282 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413980> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34287 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414080> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34285 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414055> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34288 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414228> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34291 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414326> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34292 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414354> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34290 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414316> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34294 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414391> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34240 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411713> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34297 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414750> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34296 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414743> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34298 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34300 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414940> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34303 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415111> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34125 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407301> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34305 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415227> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34306 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415228> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34307 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415331> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34172 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409287> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34304 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415226> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34308 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415492> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34245 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411948> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34314 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415634> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34316 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415692> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34319 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415879> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34315 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415660> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34313 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415629> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34324 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416039> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34323 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416034> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34326 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416089> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34325 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416079> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34322 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416023> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34318 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415777> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34327 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416181> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34204 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410207> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34330 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416220> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34252 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412230> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34301 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414948> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34328 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416187> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34337 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416250> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34340 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416254> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34339 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416253> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34343 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416298> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34338 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416251> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34349 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416530> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34346 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416480> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34351 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416670> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34354 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416696> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34352 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416677> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34359 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416943> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34358 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416906> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34353 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416688> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34289 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414279> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34357 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416901> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34202 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410161> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34361 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416951> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34239 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411612> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34364 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417081> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34366 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417093> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34362 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416953> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34199 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410146> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34372 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417291> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34232 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411188> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34369 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417212> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34368 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417178> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34371 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417290> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34373 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417331> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34376 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417472> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34367 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417176> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34207 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410267> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34236 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411374> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34375 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417418> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34380 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417587> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34378 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417491> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34383 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417795> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34381 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417634> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34385 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417802> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34388 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417853> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34382 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417779> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34390 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417913> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34398 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418173> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34401 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418296> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34397 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418156> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34404 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418390> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34395 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418011> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34293 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414371> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34393 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417949> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34295 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414492> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34348 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416526> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34407 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418489> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34403 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418369> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34410 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418626> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34400 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418212> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34260 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412682> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34418 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419145> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34392 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417943> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34419 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419153> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34406 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418465> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34299 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414899> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34320 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415950> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34334 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416247> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34396 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418147> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34421 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419201> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34386 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417833> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34415 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419012> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34417 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419070> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34416 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419062> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34425 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419434> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34422 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419213> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34264 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413087> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34430 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419651> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34429 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419649> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34405 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418392> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34434 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420011> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34432 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419873> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34420 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419176> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34428 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419648> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34350 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416573> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34439 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420399> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34335 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416248> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34443 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420498> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34445 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420565> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34447 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420720> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34347 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416508> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34438 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420343> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34435 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420216> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34413 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418898> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34449 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420725> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34454 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421212> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34453 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34448 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420724> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34456 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421250> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34457 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421384> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34446 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420601> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34459 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421533> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34379 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417508> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34460 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421709> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34462 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421878> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34436 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420230> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34426 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419459> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34461 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421728> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34466 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421999> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34467 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422004> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34384 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417796> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34344 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416423> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34468 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422088> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34470 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422108> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34472 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422177> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34475 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422320> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34473 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422203> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34464 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421922> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34374 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417388> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34427 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419462> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34463 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421893> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34474 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422265> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34482 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422678> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34480 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422471> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34484 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422702> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34485 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34486 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423033> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34487 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423087> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34309 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415514> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34489 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423140> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34441 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420476> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34286 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414059> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34493 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423224> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34492 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423221> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34490 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423157> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34496 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423429> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34497 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423472> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34494 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423262> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34491 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423181> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34483 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422686> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34499 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423728> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34495 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423394> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34476 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422329> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34433 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419903> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34503 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423830> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34504 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34505 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424002> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34506 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424106> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34498 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423721> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34500 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423759> _______________________________________ 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 <br/> Message-ID: <1649606643.6.0.480401852502.issue423779@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34501 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423779> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34507 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424335> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34509 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424552> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34513 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424776> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34515 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424951> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34516 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424962> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34519 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425261> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34451 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420771> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34424 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419419> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34518 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425242> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34523 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425732> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34521 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425325> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34524 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425821> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34455 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421214> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34525 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425836> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34529 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426345> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34363 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417030> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34530 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426473> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34532 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426539> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34531 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426504> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34538 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426866> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34522 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425370> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34539 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426880> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34540 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426892> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34542 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427036> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34544 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427073> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34541 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426960> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34414 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418977> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34546 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427345> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34548 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427604> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34551 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427783> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34556 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428342> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34557 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428391> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34552 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427985> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34555 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428326> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34543 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427060> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34562 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428972> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34563 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429024> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34564 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429031> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34534 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426711> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34560 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428724> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34566 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429070> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34565 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429059> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34569 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429171> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34570 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429193> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34572 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429357> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34574 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429442> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34578 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429611> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34579 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429614> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34575 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429542> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34514 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424856> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34554 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428320> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34585 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430269> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34587 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430706> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34586 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430627> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34547 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427524> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34588 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430753> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34597 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431191> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34594 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430991> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34593 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430986> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34598 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431257> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34591 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430849> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34592 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430948> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34602 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431886> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34576 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429554> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34605 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432247> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34590 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430846> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34606 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431899> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34580 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429957> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34607 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432117> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34600 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431557> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34612 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432369> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34609 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432208> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34616 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432457> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34615 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432401> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34614 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432384> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34452 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420828> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34511 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424606> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34619 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432552> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34608 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432183> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34549 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427698> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34553 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428289> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34621 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432621> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34622 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34559 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428555> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34618 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432501> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34620 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432570> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34617 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432497> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34624 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433027> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34623 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433024> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34627 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433030> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34626 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433029> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34628 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433031> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34631 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433228> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34625 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433028> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34581 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430030> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34634 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433481> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34643 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434008> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34639 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34638 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34635 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433537> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34641 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433882> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34637 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433625> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34632 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433233> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34640 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433875> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34642 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433904> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34646 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434199> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34645 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434186> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34648 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434479> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34647 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434329> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34650 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434743> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34636 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433619> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34649 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434547> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34654 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434989> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34656 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue435026> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34633 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433234> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34658 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue435381> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34657 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue435066> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34550 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427749> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34660 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue435455> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34659 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue435446> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34653 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434988> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34568 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429136> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34662 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue435596> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34664 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436058> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34666 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436130> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34663 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue435971> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34667 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436131> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34567 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429084> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34668 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436173> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34603 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431597> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34675 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436525> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34674 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436496> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34678 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436732> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34676 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436596> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34604 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431772> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34684 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437395> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34682 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437152> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34679 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436757> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34595 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431000> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34651 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434944> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34672 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436259> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34696 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438164> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34669 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436193> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34583 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430181> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34689 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437733> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34687 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437487> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34694 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438050> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34699 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438347> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34527 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426072> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34611 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432325> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34697 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438295> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34698 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438331> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34700 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438424> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34670 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436207> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34710 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439364> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34709 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439104> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34691 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437984> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34702 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438735> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34545 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue427190> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34712 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439710> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34690 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437879> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34644 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434143> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34716 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439990> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34692 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438013> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34705 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438790> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34706 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438823> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34655 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434992> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34704 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438786> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34707 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438931> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34722 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440037> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34708 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439012> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34720 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439997> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34732 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440407> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34733 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440464> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34713 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439798> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34683 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437158> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34734 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440486> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34731 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440351> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34717 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439992> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34737 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440522> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34715 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439848> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34730 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440292> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34671 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436258> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34741 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440826> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34726 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440170> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34719 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439995> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34739 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440707> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34738 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440693> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34745 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441074> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34746 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441091> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34661 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue435492> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34744 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440961> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34748 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441175> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34747 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441172> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34750 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441279> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34727 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440178> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34736 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440497> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34752 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441348> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34755 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441400> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34728 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440290> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34753 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441350> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34688 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34703 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438773> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34754 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441357> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34686 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437475> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34757 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441429> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34759 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441528> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34758 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441527> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34756 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441409> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34760 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441580> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34685 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437472> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34761 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441600> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34673 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436376> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34764 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34763 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441691> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34765 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441781> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34766 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441791> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34767 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441793> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34768 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441833> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34681 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue437041> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34665 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436103> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34770 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442128> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34769 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441851> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34771 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442142> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34772 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442351> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34630 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433223> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34777 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442526> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34780 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442647> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34782 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442712> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34778 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442530> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34784 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442734> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34783 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442724> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34775 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442512> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34790 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442863> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34789 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442833> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34721 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440017> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34793 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442903> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34773 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442374> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34794 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442983> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34762 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441664> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34724 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440144> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34791 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442866> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34800 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443238> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34795 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442998> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34729 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440291> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34798 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443059> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34802 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443337> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34803 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443464> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34743 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440911> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34774 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442501> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34701 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438517> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34751 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441314> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34801 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443239> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34808 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443600> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34810 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443626> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34813 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443759> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34809 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443614> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34815 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443775> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34818 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443788> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34819 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443793> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34821 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443899> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34817 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443784> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34799 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443120> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34823 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444129> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34825 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444229> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34824 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444201> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34827 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444486> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34826 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444359> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34797 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443042> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34807 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443559> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34832 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444582> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34831 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444514> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34830 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444512> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34829 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444510> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34835 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444707> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34834 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444683> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34836 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444708> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34723 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440041> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34837 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444750> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34840 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444842> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34787 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442796> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34839 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444805> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34788 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442813> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34843 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444984> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34841 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34844 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445096> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34845 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445196> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34842 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444913> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34838 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444797> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34846 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445412> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34833 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444589> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34781 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442705> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34847 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445413> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34848 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445433> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34822 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444004> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34852 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445717> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34820 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443866> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34857 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445815> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34855 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445762> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34749 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue441229> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34849 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445474> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34858 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445862> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34861 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445960> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34856 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445770> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34862 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445980> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34680 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436948> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34850 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445484> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34860 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445928> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34871 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446502> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34867 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446049> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34864 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445986> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34869 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446219> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34872 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446525> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34865 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445987> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34875 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446602> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34876 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446645> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34877 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446671> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34776 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442520> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34859 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445902> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34878 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446754> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34880 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446899> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34882 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446912> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34884 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue447143> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34885 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue447152> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34888 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue447478> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34887 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue447476> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34883 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446971> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34891 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue447982> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34886 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue447370> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34890 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue447945> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34792 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442867> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34893 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448038> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34863 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445984> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34892 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448025> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34895 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448144> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34894 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448100> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34889 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue447918> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34897 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448171> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34898 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448194> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34740 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440725> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34896 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448153> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34906 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448481> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34907 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448482> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34904 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448403> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34908 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448488> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34910 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448679> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34909 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448546> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34901 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448305> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34905 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448474> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34866 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445991> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34912 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448835> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34911 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448736> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34913 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448841> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34915 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448918> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34916 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448951> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34917 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449000> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34918 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449009> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34920 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449054> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34921 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449083> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34923 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449093> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34925 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449157> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34924 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449151> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34927 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449227> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34870 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446375> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34922 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449085> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34931 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449444> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34930 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449383> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34933 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449572> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34928 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449258> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34868 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446136> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34936 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449757> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34939 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449854> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34942 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449973> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34934 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449613> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34943 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449989> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34946 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450013> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34937 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449761> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34851 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445538> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34941 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449964> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34940 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449880> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34879 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446874> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34949 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450265> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34947 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450225> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34945 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450012> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33125 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401530> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34952 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450350> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34955 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450568> _______________________________________ 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 <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34953 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450510> _______________________________________ 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 + <TextArea>.. + xml-data Message-ID: <1649606543.64.0.479117897069.issue214532@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33128 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214532> _______________________________________ 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: [issue450702] zlibmodule ALLOW_THREADS update Message-ID: <1649606659.37.0.969138425984.issue450702@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34959 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450702> _______________________________________ 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: [issue449367] HTTPS client authentication in httplib Message-ID: <1649606658.48.0.381834252872.issue449367@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34929 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449367> _______________________________________ 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: [issue450710] 2.2a1 Bug fixes and UnixWare 7 port Message-ID: <1649606659.4.0.552646565028.issue450710@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34960 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450710> _______________________________________ 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: [issue450862] distutils patch to find MacOSX dylibs Message-ID: <1649606659.48.0.233517821576.issue450862@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34962 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450862> _______________________________________ 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: [issue450909] __future__.division fails at prompt Message-ID: <1649606659.51.0.894449373257.issue450909@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34963 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450909> _______________________________________ 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: [issue450633] Had error trying to follow tutorial. Message-ID: <1649606659.36.0.0626435553221.issue450633@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34958 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450633> _______________________________________ 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: [issue450979] Add module docstring - imputil Message-ID: <1649606659.54.0.102205457836.issue450979@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34964 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450979> _______________________________________ 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: [issue214424] Tkinter/Canvas drawing causes interpreter to crash. Message-ID: <1649606543.03.0.707257893146.issue214424@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33111 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214424> _______________________________________ 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: [issue450980] Add module docstring - sre*, re Message-ID: <1649606659.56.0.922022935283.issue450980@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34965 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450980> _______________________________________ 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: [issue451107] re.sub does not replace slahes (2.2a1) Message-ID: <1649606659.6.0.480014890108.issue451107@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34967 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451107> _______________________________________ 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: [issue450621] Py_Initialize() in C API manual Message-ID: <1649606659.33.0.929968001896.issue450621@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34957 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450621> _______________________________________ 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: [issue451217] Missing big chunk of extend/embed manual Message-ID: <1649606659.62.0.971224484453.issue451217@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34968 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451217> _______________________________________ 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: [issue448911] Empty list as default argument problem Message-ID: <1649606657.82.0.645575041736.issue448911@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34914 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448911> _______________________________________ 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: [issue451538] L10n of pprint Message-ID: <1649606659.75.0.171850003163.issue451538@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34973 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451538> _______________________________________ 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: [issue213727] Tkinter: _substitute call of getint(D) fails Message-ID: <1649606541.35.0.399558432886.issue213727@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33050 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213727> _______________________________________ 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: [issue401566] Add fpectl functionality patch for FreeBSD Message-ID: <1649606544.32.0.307179388782.issue401566@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33147 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401566> _______________________________________ 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: [issue451309] don't store traceback objects Message-ID: <1649606659.73.0.996670873963.issue451309@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34972 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451309> _______________________________________ 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: [issue451285] distutils ignores environment variables Message-ID: <1649606659.65.0.425791521899.issue451285@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34969 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451285> _______________________________________ 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: [issue451605] socket module missing SSL docs Message-ID: <1649606659.91.0.472710463734.issue451605@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34978 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451605> _______________________________________ 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: [issue451597] Solaris2.6 core dump in test_struct.py Message-ID: <1649606659.86.0.585658122965.issue451597@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34976 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451597> _______________________________________ 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: [issue451556] bad tags in HTML documentation Message-ID: <1649606659.82.0.254492316562.issue451556@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34975 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451556> _______________________________________ 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: [issue401570] adds correct signatures to handler.py Message-ID: <1649606544.43.0.0730267867531.issue401570@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33150 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401570> _______________________________________ 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: [issue451607] SSL support in socket module needs tests Message-ID: <1649606659.94.0.538084391566.issue451607@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34979 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451607> _______________________________________ 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: [issue445744] PEP 250 Implementation Message-ID: <1649606655.42.0.466191916645.issue445744@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34853 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445744> _______________________________________ 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: [issue451547] pickle / cPickle can't load lambdas Message-ID: <1649606659.78.0.952619284583.issue451547@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34974 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451547> _______________________________________ 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: [issue451622] xdrlib Packer performance-bug Message-ID: <1649606659.99.0.500191469494.issue451622@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34980 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451622> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue451630] os.spawnv doc are slim Message-ID: <1649606660.02.0.968061346236.issue451630@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34981 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451630> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue451638] [2.2a] delitem undefined for dictionary Message-ID: <1649606660.09.0.843121479354.issue451638@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34983 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451638> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue451841] python-mode indentation bug Message-ID: <1649606660.15.0.485129262728.issue451841@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34985 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451841> _______________________________________ 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: [issue401573] a first start on updating expatreader.py Message-ID: <1649606544.53.0.0202629302475.issue401573@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33153 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401573> _______________________________________ 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: [issue451598] mimetypes.py needs a test Message-ID: <1649606659.89.0.00552919714019.issue451598@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34977 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451598> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue451636] linuxaudiodev caused machine hangup Message-ID: <1649606660.06.0.12627603678.issue451636@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34982 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451636> _______________________________________ 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: [issue450543] round() needs a special method name Message-ID: <1649606659.26.0.325544921468.issue450543@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34954 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450543> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue451773] new-style objects not weak-referencable Message-ID: <1649606660.12.0.155408867413.issue451773@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34984 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451773> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue451890] Building with Large File Support fails Message-ID: <1649606660.16.0.841857250478.issue451890@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34986 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451890> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452174] cgi: new methods: getfirst(), getlist() Message-ID: <1649606660.31.0.606446494341.issue452174@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34990 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452174> _______________________________________ 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: [issue214427] bug with urlencode method from urllib Message-ID: <1649606543.06.0.777227828569.issue214427@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33112 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214427> _______________________________________ 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: [issue215035] SunOS 4.1.4 with GCC 2.95.2 can't compile complete Message-ID: <1649606544.99.0.56951339573.issue215035@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33166 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215035> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452230] future division isn't propagated Message-ID: <1649606660.41.0.53066030537.issue452230@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34995 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452230> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452232] timestamp function for time module Message-ID: <1649606660.43.0.400942267227.issue452232@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34996 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452232> _______________________________________ 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: [issue449815] Set filesystemencoding based on CODESET Message-ID: <1649606658.77.0.325661794391.issue449815@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34938 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449815> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452110] socketmodule ssl: server & thread Message-ID: <1649606660.2.0.384927908982.issue452110@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34987 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452110> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452239] cPickle patch for bug 451547 Message-ID: <1649606660.46.0.285053454465.issue452239@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34997 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452239> _______________________________________ 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: [issue215051] Dodgy use of PyTuple_SET_ITEM in pyexpat.c Message-ID: <1649606545.07.0.897680884772.issue215051@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33168 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215051> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452222] New features need syntax Message-ID: <1649606660.39.0.367375584019.issue452222@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34994 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452222> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452219] timestamp function for time module Message-ID: <1649606660.33.0.243926983053.issue452219@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34991 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452219> _______________________________________ 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: [issue215040] sre behavior differes from pre Message-ID: <1649606545.03.0.787963150544.issue215040@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33167 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215040> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452832] object.__new__ too dangerous Message-ID: <1649606660.64.0.23877415045.issue452832@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35002 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452832> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452747] New-style class instances can't be copied Message-ID: <1649606660.58.0.277651303484.issue452747@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35000 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452747> _______________________________________ 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: [issue448351] coredump in selectmodule.c on Solaris 8 Message-ID: <1649606657.36.0.627074529706.issue448351@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34902 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448351> _______________________________________ 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: [issue214296] distutils documentation out of date Message-ID: <1649606542.69.0.940996262699.issue214296@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33099 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214296> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452973] Tcl event loop callback woes Message-ID: <1649606660.71.0.486538134563.issue452973@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35004 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452973> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452767] enhancements for cgitb Message-ID: <1649606660.62.0.824298920842.issue452767@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35001 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452767> _______________________________________ 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: [issue215076] threads of __del__ Message-ID: <1649606545.19.0.259127843454.issue215076@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33172 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215076> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue453111] C API Reference bugs Message-ID: <1649606660.85.0.583308793049.issue453111@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35008 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453111> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue453204] GetArgv and ProgressBars (libmacui.tex) Message-ID: <1649606660.9.0.692823952707.issue453204@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35010 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453204> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue453199] Cosmetic changes to libframework.tex Message-ID: <1649606660.88.0.0173857203389.issue453199@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35009 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453199> _______________________________________ 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: [issue449187] if x in 1,2,3: should work Message-ID: <1649606658.31.0.858487229029.issue449187@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34926 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449187> _______________________________________ 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: [issue449493] <module>.__dict__ goes into 'help>' Message-ID: <1649606658.59.0.790681976863.issue449493@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34932 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449493> _______________________________________ 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: [issue450267] OS/2+EMX port - changes to Python core Message-ID: <1649606659.18.0.740584637754.issue450267@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34951 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450267> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue453208] 64-bit zip problems Message-ID: <1649606660.95.0.714219252596.issue453208@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35011 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453208> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue453459] Allow linefeed as eol in Pythonwin IDE Message-ID: <1649606660.98.0.0477433925916.issue453459@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35012 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453459> _______________________________________ 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: [issue215143] Python sometimes complains about continue in an except Message-ID: <1649606545.44.0.478625205915.issue215143@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33179 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215143> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453489] Using deiconify() hangs on exit Message-ID: <1649606661.02.0.907472187389.issue453489@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35013 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453489> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453506] lists should have a copy method Message-ID: <1649606661.09.0.9389711213.issue453506@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35014 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453506> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453515] filecmp.dircmp case sensitivity bug Message-ID: <1649606661.15.0.852568346241.issue453515@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35015 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453515> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453627] UnixWare 7.x port for Python 2.2 Message-ID: <1649606661.26.0.260648957352.issue453627@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35017 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453627> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453684] In 2.2, types are inheritable, &c Message-ID: <1649606661.36.0.073860343522.issue453684@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35020 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453684> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453706] sgmllib exception behaviour: policy? Message-ID: <1649606661.42.0.239796017634.issue453706@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35022 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453706> _______________________________________ 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: [issue215112] can you post release files on sourceforge? Message-ID: <1649606545.32.0.110977936703.issue215112@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33175 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215112> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453691] CGI: NEW: methods getfirst(), getlist() Message-ID: <1649606661.39.0.291174835213.issue453691@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35021 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453691> _______________________________________ 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: [issue401416] coax _sre.c into using Py_GetRecursionLimit() Message-ID: <1649606541.04.0.210285348577.issue401416@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33036 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401416> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453728] Tutorial: string lits & cont. lines Message-ID: <1649606661.46.0.782487682749.issue453728@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35023 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453728> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue454041] Setup and distutils changes. Message-ID: <1649606661.71.0.75090918159.issue454041@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35026 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454041> _______________________________________ 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: [issue214333] minidom fails to parse PI Message-ID: <1649606542.85.0.628044564785.issue214333@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33105 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214333> _______________________________________ 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: [issue401636] pulldom: Use updated SAX2 *NS functions Message-ID: <1649606545.79.0.362751739105.issue401636@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33189 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401636> _______________________________________ 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: [issue215261] ambiguous else Message-ID: <1649606545.83.0.609966879579.issue215261@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33191 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215261> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue454086] distutils/mingw32 links to dbg libs Message-ID: <1649606661.74.0.0166912665401.issue454086@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35027 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454086> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue454307] select.select locks up IDE Message-ID: <1649606661.78.0.879454223056.issue454307@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35028 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454307> _______________________________________ 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: [issue215118] float errors in Python 1.6 Message-ID: <1649606545.34.0.359317121886.issue215118@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33176 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215118> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue454383] make test failed in solaris_2.7 with gcc Message-ID: <1649606661.82.0.344177148983.issue454383@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35029 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454383> _______________________________________ 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: [issue401634] SAX: Fix parse and parseString, support parsing of open file Message-ID: <1649606545.76.0.851343118571.issue401634@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33187 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401634> _______________________________________ 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: [issue401632] extends 101573 with attribute support Message-ID: <1649606545.62.0.991164318684.issue401632@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33185 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401632> _______________________________________ 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: [issue401651] Gracefully detect usage of old extension module Message-ID: <1649606545.95.0.218075739385.issue401651@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33194 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401651> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454553] Content-Type header for ftp url Message-ID: <1649606662.03.0.490807524998.issue454553@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35033 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454553> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue454493] building _socket failed Message-ID: <1649606661.98.0.483338237465.issue454493@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35032 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454493> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454743] PyString_FromFormat() Message-ID: <1649606662.09.0.483528675333.issue454743@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35035 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454743> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue454446] new int overflow handling needs docs Message-ID: <1649606661.89.0.573275036348.issue454446@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35030 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454446> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454843] Python2.x sre and threaded import lockin Message-ID: <1649606662.17.0.1256535645.issue454843@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35037 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454843> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454685] exec() and globals weirdness Message-ID: <1649606662.07.0.845452277619.issue454685@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35034 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454685> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454887] static/classmethods and tp_slots Message-ID: <1649606662.24.0.44110092951.issue454887@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35038 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454887> _______________________________________ 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: [issue401486] Unexpected Evaluation of Expressions from Pickle Patch Message-ID: <1649606542.65.0.775393063169.issue401486@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33097 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401486> _______________________________________ 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: [issue215247] 2.0b1 Gives error on Install. Message-ID: <1649606545.81.0.724468711805.issue215247@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33190 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215247> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454891] loss of precision in float marshaling Message-ID: <1649606662.27.0.728680629615.issue454891@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35039 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454891> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454896] Add unsigneds to ParseTuple/BuildValue Message-ID: <1649606662.29.0.845074715488.issue454896@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35040 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454896> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455020] identify data objects defined in classes Message-ID: <1649606662.38.0.0214714674878.issue455020@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35043 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455020> _______________________________________ 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: [issue215221] test_poll hangs on Debian Linux 2.2 Message-ID: <1649606545.68.0.164117089392.issue215221@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33186 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215221> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455183] Cygwin build fails for 2.2a2 Message-ID: <1649606662.54.0.959326306955.issue455183@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35047 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455183> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455076] %b format support for string/unicode Message-ID: <1649606662.41.0.834717937798.issue455076@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35044 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455076> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455438] C API version mismatch for strop Message-ID: <1649606662.72.0.23988849496.issue455438@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35050 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455438> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455537] module search in import.c Message-ID: <1649606662.76.0.116195181187.issue455537@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35051 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455537> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452220] __class__ assignment Message-ID: <1649606660.35.0.806950573271.issue452220@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34992 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452220> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455666] PyString_FromFormat() Message-ID: <1649606662.83.0.892640519691.issue455666@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35053 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455666> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455694] bug in list append, or list multiply? Message-ID: <1649606662.89.0.813269798485.issue455694@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35055 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455694> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455675] PyConsole raw_input improvements Message-ID: <1649606662.86.0.383392901817.issue455675@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35054 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455675> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455137] Makes popen work with COMMAND.COM on WNT Message-ID: <1649606662.45.0.374592253876.issue455137@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35045 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455137> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455966] Allow leading 0 in float/imag literals Message-ID: <1649606662.98.0.573455959665.issue455966@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35058 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455966> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455775] float parsing discrepancy Message-ID: <1649606662.95.0.736751045906.issue455775@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35057 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455775> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455769] small fixes for Tools/bgen Message-ID: <1649606662.93.0.458923418077.issue455769@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35056 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455769> _______________________________________ 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: [issue215362] ConfigParser chokes on capitalization Message-ID: <1649606546.43.0.609277139196.issue215362@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33206 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215362> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue456005] PyArg_ParseTuple failure in Python 2.2s2 Message-ID: <1649606663.0.0.530440763675.issue456005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35059 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456005> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456024] event synchronization Message-ID: <1649606663.06.0.0217642852054.issue456024@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35060 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456024> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456176] add dictionary "tokens" to token.py Message-ID: <1649606663.21.0.801190805645.issue456176@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35063 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456176> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456252] Python should never stomp on [u]intptr_t Message-ID: <1649606663.3.0.0939870635332.issue456252@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35065 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456252> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456086] virtual IO for embedding Py in server Message-ID: <1649606663.08.0.00436993016367.issue456086@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35061 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456086> _______________________________________ 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: [issue450266] OS/2 + EMX port - library changes Message-ID: <1649606659.16.0.754372677132.issue450266@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34950 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450266> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456386] test_commands regression failure Message-ID: <1649606663.34.0.253209908751.issue456386@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35066 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456386> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456390] test_fpformat fails on IRIX Message-ID: <1649606663.38.0.772633832296.issue456390@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35067 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456390> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456391] unexpected test_largefile output Message-ID: <1649606663.39.0.131166717804.issue456391@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35068 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456391> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456398] strange IRIX test_re/test_sre failure Message-ID: <1649606663.46.0.470047282864.issue456398@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35071 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456398> _______________________________________ 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: [issue215469] test_socket hangs on Debian Linux 2.2 Message-ID: <1649606546.59.0.22680822521.issue215469@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33209 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215469> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456504] Memory leak in PyString_FromString Message-ID: <1649606663.52.0.467223330968.issue456504@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35073 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456504> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456612] SRE fix 133283 (minimizing repeats) bug Message-ID: <1649606663.56.0.956670296175.issue456612@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35074 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456612> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456621] normpath on Win32 not collapsing c:\\.. Message-ID: <1649606663.62.0.809654978586.issue456621@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35075 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456621> _______________________________________ 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: [issue450803] smtpd.py needs documentation Message-ID: <1649606659.43.0.699925068549.issue450803@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34961 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450803> _______________________________________ 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: [issue214630] Add fpectl functionality patch for FreeBSD Message-ID: <1649606543.91.0.827102910135.issue214630@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33136 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214630> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456742] Failing test case for .*? Message-ID: <1649606663.78.0.92022172956.issue456742@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35078 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456742> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456756] Unary minus vs ** Message-ID: <1649606663.8.0.629933690987.issue456756@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35079 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456756> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue453035] shrink frame objects Message-ID: <1649606660.76.0.407114117958.issue453035@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35005 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453035> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456949] clear() method for lists Message-ID: <1649606663.86.0.931704573039.issue456949@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35081 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456949> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue457066] pow(a,b,c) should accept b<0 Message-ID: <1649606663.89.0.646413950882.issue457066@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35082 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457066> _______________________________________ 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: [issue215517] no option of using { } for nested blocks Message-ID: <1649606546.95.0.930089376759.issue215517@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33218 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215517> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue457114] Incorporate timeoutsocket.py into core Message-ID: <1649606663.94.0.437781945455.issue457114@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35084 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457114> _______________________________________ 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: [issue449043] supporting __future__ in simulated shells Message-ID: <1649606657.97.0.749242866296.issue449043@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34919 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449043> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457399] bisect module broken in 2.1.1 ? Message-ID: <1649606664.0.0.127143902888.issue457399@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35086 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457399> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457431] '-' character breaks exception handling Message-ID: <1649606664.03.0.702487001799.issue457431@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35087 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457431> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457487] Itemconfigure for Listbox Message-ID: <1649606664.11.0.0522575314873.issue457487@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35090 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457487> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457486] downloaded Lib. Ref. shows 'in' for Dict Message-ID: <1649606664.09.0.358956159122.issue457486@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35089 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457486> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue457360] Nested scopes crash when tracing (v2.1) Message-ID: <1649606663.97.0.474086735964.issue457360@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35085 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457360> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457493] include SQL interface module Message-ID: <1649606664.16.0.770491020832.issue457493@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35091 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457493> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457541] zlib homepage has changed Message-ID: <1649606664.2.0.41696070385.issue457541@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35092 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457541> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457713] Allow "itemconfigure" for Listboxes. Message-ID: <1649606664.27.0.676543882076.issue457713@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35095 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457713> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457466] popenx() argument mangling hangs python Message-ID: <1649606664.06.0.0787571442277.issue457466@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35088 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457466> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457892] sys module feature patch - modify_argv() Message-ID: <1649606664.29.0.569958679402.issue457892@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35096 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457892> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456738] Support for smoother debugging of C exts Message-ID: <1649606663.75.0.226610884786.issue456738@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35077 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456738> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458343] distutils should zap .o as well as .so Message-ID: <1649606664.42.0.896972510001.issue458343@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35100 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458343> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457633] _cursesmodules.c does not build on MacOSX Message-ID: <1649606664.22.0.256493341921.issue457633@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35093 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457633> _______________________________________ 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: [issue214490] crash on empty module registry key Message-ID: <1649606543.38.0.86408605073.issue214490@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33122 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214490> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458383] Start of a bgen tutorial Message-ID: <1649606664.48.0.757582558023.issue458383@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35102 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458383> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458430] convert library to use inplace ops Message-ID: <1649606664.51.0.552784708633.issue458430@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35103 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458430> _______________________________________ 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: [issue401676] Detect conflicting Python DLL on module import under Windows Message-ID: <1649606546.54.0.1946323682.issue401676@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33208 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401676> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458447] New httplib lacks documentation Message-ID: <1649606664.53.0.655587658021.issue458447@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35104 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458447> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455405] operator TypeErrors Message-ID: <1649606662.67.0.850760663405.issue455405@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35049 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455405> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458459] fix profiling of generators Message-ID: <1649606664.58.0.721631467288.issue458459@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35105 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458459> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458350] module sys - variables missing Message-ID: <1649606664.46.0.695074805853.issue458350@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35101 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458350> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458463] HTTPSConnect.__init__ too tricky Message-ID: <1649606664.61.0.421709416251.issue458463@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35106 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458463> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue457100] httplib GET example should use host head Message-ID: <1649606663.92.0.0505952764963.issue457100@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35083 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457100> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458701] Patch to zipfile.py for Java Message-ID: <1649606664.73.0.256014290628.issue458701@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35110 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458701> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458654] Code Bug Message-ID: <1649606664.71.0.0722522347392.issue458654@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35109 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458654> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458608] python functions called from c Message-ID: <1649606664.68.0.157718493323.issue458608@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35108 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458608> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458745] PyInt_Check doc amiss in API manual Message-ID: <1649606664.75.0.658238245328.issue458745@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35111 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458745> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458814] MHammond non-responsive Message-ID: <1649606664.82.0.941656273829.issue458814@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35115 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458814> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458785] Link in module-sha docs Message-ID: <1649606664.81.0.849843294186.issue458785@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35114 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458785> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458860] delitem not supported by Weak*Dicts Message-ID: <1649606664.89.0.515445877329.issue458860@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35118 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458860> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458768] Python.h conventions. Message-ID: <1649606664.77.0.841052355029.issue458768@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35112 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458768> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455176] sys module feature patch - modify_argv() Message-ID: <1649606662.49.0.733078112145.issue455176@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35046 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455176> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458835] SSL support in httplib causes exception Message-ID: <1649606664.85.0.458883172603.issue458835@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35116 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458835> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue458885] rfc822.Message.unixfrom is not documented Message-ID: <1649606665.0.0.856467160354.issue458885@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35122 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458885> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458771] unittest things to be doc'd Message-ID: <1649606664.79.0.311532226423.issue458771@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35113 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458771> _______________________________________ 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: [issue215530] cStringIO.StringIO() doesn't raise ValueError when closed Message-ID: <1649606547.04.0.839574652336.issue215530@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33221 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215530> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue458941] Looks like a unary minus bug Message-ID: <1649606665.06.0.958686671866.issue458941@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35124 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458941> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue458898] --python-build for install Message-ID: <1649606665.03.0.674269253846.issue458898@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35123 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458898> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458534] ncurses form module Message-ID: <1649606664.64.0.858854187259.issue458534@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35107 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458534> _______________________________________ 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: [issue215732] Linking fails with old versions of readline Message-ID: <1649606547.87.0.776431600361.issue215732@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33249 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215732> _______________________________________ 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: [issue215555] Parser crashes for deeply nested list displays Message-ID: <1649606547.13.0.102680766084.issue215555@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33223 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215555> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459188] unicode.__imul__ etc. missing Message-ID: <1649606665.21.0.159275085302.issue459188@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35127 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459188> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue454030] distutils cannot link C++ code with GCC Message-ID: <1649606661.61.0.129053015186.issue454030@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35025 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454030> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459235] tuple __getitem__ limited Message-ID: <1649606665.23.0.108642570413.issue459235@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35128 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459235> _______________________________________ 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: [issue215609] Please include regexdemo.py in main distribution Message-ID: <1649606547.24.0.719428408718.issue215609@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33226 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215609> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459256] Link to PyOpenGL obsolete Message-ID: <1649606665.26.0.15915208038.issue459256@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35129 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459256> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459270] System-wide distutils cfg file misnamed Message-ID: <1649606665.3.0.600191224466.issue459270@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35131 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459270> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454917] Wrong URL for SHA standard Message-ID: <1649606662.31.0.885674834757.issue454917@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35041 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454917> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456876] __getitem__ issues Message-ID: <1649606663.83.0.497480851649.issue456876@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35080 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456876> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459334] urllib2 __getitem__ problem Message-ID: <1649606665.35.0.130914450423.issue459334@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35133 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459334> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459267] CHROOT system call Message-ID: <1649606665.28.0.807837488212.issue459267@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35130 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459267> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459272] "getpwnam" and similar Message-ID: <1649606665.32.0.501991506059.issue459272@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35132 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459272> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459381] Unambiguous import for encodings Message-ID: <1649606665.37.0.591227306881.issue459381@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35134 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459381> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459441] URL correction in distutils docu Message-ID: <1649606665.45.0.183257078836.issue459441@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35137 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459441> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459385] 2.1.1 time.timezone fix for Cygwin Message-ID: <1649606665.39.0.30477276314.issue459385@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35135 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459385> _______________________________________ 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: [issue215900] difference between pre and sre for buggy expressions Message-ID: <1649606548.1.0.571100292973.issue215900@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33257 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215900> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460151] math module - sin and cos ERROR Message-ID: <1649606665.67.0.853840112135.issue460151@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35144 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460151> _______________________________________ 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: [issue215918] 2.0b2: print a_module.__dict__ also prints the license text Message-ID: <1649606548.2.0.71817373936.issue215918@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33261 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215918> _______________________________________ 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: [issue401724] Fix for 115714: Don't rename Tkinter to Tk Message-ID: <1649606547.83.0.247851405354.issue401724@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33247 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401724> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue460737] Some mac modules should go Message-ID: <1649606666.03.0.279802142712.issue460737@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35157 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460737> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458880] gcc -Wall and getaddrinfo.c Message-ID: <1649606664.97.0.730219361359.issue458880@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35121 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458880> _______________________________________ 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: [issue215974] utf-16 codec problems with multiple file write Message-ID: <1649606548.33.0.250221708735.issue215974@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33266 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215974> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461280] commands.getstatus does an ls? Message-ID: <1649606666.23.0.626449576298.issue461280@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35163 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461280> _______________________________________ 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: [issue401753] exception bugfix for gcmodule.c Message-ID: <1649606548.28.0.0186900309562.issue401753@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33264 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401753> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461001] inspect & pydoc vs new-style classes Message-ID: <1649606666.18.0.77377334362.issue461001@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35161 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461001> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461353] SSL write doesn't check return codes Message-ID: <1649606666.32.0.462565244355.issue461353@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35167 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461353> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461073] mailbox __iter__ bug Message-ID: <1649606666.2.0.0666957212135.issue461073@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35162 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461073> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460467] file objects should be subclassable Message-ID: <1649606665.83.0.948478919146.issue460467@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35149 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460467> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461753] Opaque context not handled when NULL Message-ID: <1649606666.54.0.195327613548.issue461753@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35175 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461753> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461337] Docs for SSL methods and objects Message-ID: <1649606666.28.0.393113530662.issue461337@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35165 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461337> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461321] Fix timeout=None in asyncore.py Message-ID: <1649606666.26.0.943140787491.issue461321@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35164 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461321> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461546] bug in long_mul Message-ID: <1649606666.42.0.465226113926.issue461546@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35171 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461546> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459160] Py closes COM instances not loaded by Py Message-ID: <1649606665.18.0.713614492158.issue459160@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35126 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459160> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461966] Adds an XML-RPC server module Message-ID: <1649606666.72.0.405703112813.issue461966@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35179 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461966> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue460751] --with-shared: python with shared lib Message-ID: <1649606666.08.0.201387246201.issue460751@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35158 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460751> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461413] Add STARTTLS feature to smtplib Message-ID: <1649606666.39.0.672636089103.issue461413@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35170 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461413> _______________________________________ 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: [issue401775] revise BeOS build Message-ID: <1649606548.52.0.577065767449.issue401775@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33273 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401775> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue462258] tkinter without X11 patch Message-ID: <1649606666.98.0.842491980083.issue462258@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35186 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462258> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461781] os.path.realpath - Resolve symlinks Message-ID: <1649606666.63.0.271758689803.issue461781@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35177 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461781> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461890] xdrlib allow subclass for file access Message-ID: <1649606666.68.0.977611147953.issue461890@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35178 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461890> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462274] Add "l2h-arg" to mkhowto Message-ID: <1649606667.05.0.524852356844.issue462274@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35188 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462274> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461350] SSL support crashes python Message-ID: <1649606666.31.0.584172263205.issue461350@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35166 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461350> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459705] always return 0 command status Message-ID: <1649606665.55.0.780296817084.issue459705@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35140 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459705> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461980] __contains__() underdocumented Message-ID: <1649606666.77.0.266431052376.issue461980@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35180 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461980> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462296] Add attributes to os.stat results Message-ID: <1649606667.07.0.221703001411.issue462296@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35189 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462296> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462628] NNTPLib supports saving BODY to a file Message-ID: <1649606667.19.0.164217361622.issue462628@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35193 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462628> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue462122] add readline startup and pre_event hooks Message-ID: <1649606666.83.0.353758153213.issue462122@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35182 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462122> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461674] struct 'p' format doesn't work (maybe) Message-ID: <1649606666.48.0.793616422078.issue461674@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35174 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461674> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462596] StringIO Enhancement Message-ID: <1649606667.16.0.390653582238.issue462596@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35192 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462596> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue462064] Python 2.2 ignores execptions from cmp() Message-ID: <1649606666.8.0.0852055984882.issue462064@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35181 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462064> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462639] HTTP/1.1 support undocumented Message-ID: <1649606667.25.0.122778287733.issue462639@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35195 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462639> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462658] PyLong_{As,From}VoidPtr not documented Message-ID: <1649606667.28.0.000952592678537.issue462658@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35196 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462658> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue462195] URL change in distutils doc/inst.tex Message-ID: <1649606666.91.0.0814739265142.issue462195@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35184 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462195> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462461] Some install scripts ignore ENV VARS Message-ID: <1649606667.11.0.616725844732.issue462461@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35190 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462461> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462635] Fix bugs in new encodings Message-ID: <1649606667.22.0.340341519781.issue462635@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35194 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462635> _______________________________________ 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: [issue401801] Prevent possible buffer exploits under Windows Message-ID: <1649606548.92.0.146511700573.issue401801@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33288 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401801> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue457654] bkgd() does not set attribute Message-ID: <1649606664.25.0.0163689566299.issue457654@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35094 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue457654> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue462190] New C module for quopri assist Message-ID: <1649606666.87.0.489509052388.issue462190@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35183 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462190> _______________________________________ 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: [issue216241] Possible leak in pythonrun.c Message-ID: <1649606549.05.0.425150614369.issue216241@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33294 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216241> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458223] shutil doesn't copy special files Message-ID: <1649606664.33.0.213755798154.issue458223@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35097 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458223> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462754] no '_d' ending for mingw32 Message-ID: <1649606667.4.0.287236457392.issue462754@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35200 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462754> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459007] Document sys.path on Windows Message-ID: <1649606665.08.0.761057826423.issue459007@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35125 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459007> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463359] Interpreter generates infinite loop Message-ID: <1649606667.73.0.737302374871.issue463359@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35211 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463359> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463330] binascii.b2a_base64() trailing newline Message-ID: <1649606667.69.0.209397006358.issue463330@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35210 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463330> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462783] mmap bus error on linux Message-ID: <1649606667.45.0.492401695816.issue462783@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35202 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462783> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463381] pydoc should identify bases Message-ID: <1649606667.8.0.0480318286896.issue463381@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35213 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463381> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463383] pydoc vs class data attributes Message-ID: <1649606667.83.0.0587009662607.issue463383@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35214 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463383> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462936] Improved modulefinder Message-ID: <1649606667.56.0.11541854305.issue462936@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35205 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462936> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462937] continue inside try confuses while loop Message-ID: <1649606667.59.0.084413876907.issue462937@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35206 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462937> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460512] Unclear how to get popen2 exit statii Message-ID: <1649606665.88.0.456710961837.issue460512@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35151 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460512> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463093] File methods need doc strings Message-ID: <1649606667.62.0.858616516048.issue463093@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35207 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463093> _______________________________________ 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: [issue401810] Fix MemoryError when decompressing empty string Message-ID: <1649606549.23.0.043209794386.issue401810@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33301 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401810> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463384] pydoc vs data docstrings Message-ID: <1649606667.85.0.612508220497.issue463384@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35215 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463384> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452252] __iadd__ sets object to None Message-ID: <1649606660.49.0.113214924146.issue452252@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34998 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452252> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462716] sys.settrace inheritance Message-ID: <1649606667.34.0.332866259341.issue462716@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35198 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462716> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue463737] Add types.CallableIterType Message-ID: <1649606668.09.0.887057089523.issue463737@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35223 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463737> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue463739] test_sundry bogosity Message-ID: <1649606668.21.0.979382389715.issue463739@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35225 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463739> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463506] reload(os) fails for os.environ Message-ID: <1649606667.89.0.828413874377.issue463506@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35217 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463506> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463572] Misleading documentation for gettext Message-ID: <1649606667.93.0.745874192475.issue463572@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35218 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463572> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462710] Python 2.2a3/XML leaks memory Message-ID: <1649606667.31.0.442397397648.issue462710@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35197 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462710> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463286] Problem in urllib. No strip attribute Message-ID: <1649606667.67.0.390100995185.issue463286@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35209 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463286> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue464423] _socket problem on solaris Message-ID: <1649606668.37.0.648638868581.issue464423@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35230 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue464423> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue463738] file object iterators Message-ID: <1649606668.18.0.299405239413.issue463738@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35224 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463738> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue464872] PyDict_Check() fails if object not dict Message-ID: <1649606668.42.0.695129649724.issue464872@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35232 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue464872> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue464992] Fix abstract isinstance Message-ID: <1649606668.47.0.911428031102.issue464992@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35234 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue464992> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461754] CDATA should not undergo entity subst. Message-ID: <1649606666.59.0.0352930247415.issue461754@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35176 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461754> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465342] PyUnicode_GetSize/PyUnicode_GET_SIZE Message-ID: <1649606668.65.0.0495579526297.issue465342@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35238 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465342> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461409] testing file upload Message-ID: <1649606666.37.0.498535917344.issue461409@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35169 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461409> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465299] xmlrpclib broken Message-ID: <1649606668.61.0.668971286114.issue465299@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35237 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465299> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462522] code.py softspace attribute fix Message-ID: <1649606667.13.0.219204101232.issue462522@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35191 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462522> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465467] os.unsetenv not implemented Message-ID: <1649606668.72.0.741932310688.issue465467@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35240 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465467> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue464605] moving the Mac/ src dir to a diff packag Message-ID: <1649606668.39.0.508630109274.issue464605@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35231 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue464605> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465673] pthreads need signal protection Message-ID: <1649606668.86.0.971658706606.issue465673@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35243 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465673> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue463996] quopri RFC 2047 and hex 20 encodings Message-ID: <1649606668.28.0.878960763692.issue463996@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35227 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463996> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue466125] PyLong_AsLongLong works for any integer Message-ID: <1649606668.92.0.141001298363.issue466125@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35245 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466125> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461358] SSL constructor/destructor bugs Message-ID: <1649606666.34.0.661804274364.issue461358@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35168 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461358> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465759] segmentation fault Message-ID: <1649606668.89.0.627800127573.issue465759@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35244 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465759> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue463656] setup.py, --with-includepath, and LD_LIB Message-ID: <1649606668.01.0.950798612339.issue463656@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35221 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463656> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466175] cPickle core dump Message-ID: <1649606669.0.0.337204534758.issue466175@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35247 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466175> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue464900] Include TKInter Docs Message-ID: <1649606668.45.0.922030362745.issue464900@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35233 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue464900> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue460686] iter() over non-sequence message Message-ID: <1649606666.01.0.145807671781.issue460686@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35156 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460686> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue466173] unpack TypeError unclear Message-ID: <1649606668.97.0.252060829104.issue466173@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35246 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466173> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466451] popen fix for multiple quoted arguments Message-ID: <1649606669.18.0.887458658549.issue466451@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35251 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466451> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466628] Doc changes for doctest patch (#466616) Message-ID: <1649606669.27.0.0592315828979.issue466628@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35253 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466628> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466752] "deref" error in _PyBuffer_FromObject Message-ID: <1649606669.32.0.258536489292.issue466752@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35254 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466752> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466352] let mailbox.Maildir tag messages as read Message-ID: <1649606669.07.0.586552306082.issue466352@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35249 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466352> _______________________________________ 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: [issue216664] Crash starting "idle" (2.0c1) Message-ID: <1649606550.26.0.104739251612.issue216664@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33334 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216664> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467021] socket.inet_aton() incorrect results. Message-ID: <1649606669.46.0.88015007751.issue467021@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35260 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467021> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466981] item_cget() missing parm. in Tix/HList Message-ID: <1649606669.44.0.469075212278.issue466981@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35259 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466981> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue463840] Missing initialization code in weakref Message-ID: <1649606668.25.0.152335879795.issue463840@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35226 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463840> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461637] marshal module won't use gzip module Message-ID: <1649606666.46.0.0556050046025.issue461637@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35173 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461637> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467381] print statement and exception Message-ID: <1649606669.94.0.456865402748.issue467381@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35269 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467381> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467265] Compile errors on SuSe Linux on IBM/s390 Message-ID: <1649606669.8.0.25592073749.issue467265@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35265 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467265> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467253] license points to the wrong file Message-ID: <1649606669.73.0.763996051308.issue467253@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35264 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467253> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466616] Exclude imported items from doctest Message-ID: <1649606669.22.0.607531512437.issue466616@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35252 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466616> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467580] ConfigParser.getboolean(): FALSE, TRUE. Message-ID: <1649606670.1.0.328375208233.issue467580@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35274 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467580> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467455] Enhanced environment variables Message-ID: <1649606670.03.0.356301143684.issue467455@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35272 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467455> _______________________________________ 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: [issue401928] gettext fails to find .mo file (Bug #116964) Message-ID: <1649606550.86.0.498724706411.issue401928@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33352 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401928> _______________________________________ 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: [issue216604] Files missing in Tools/perfecthash Message-ID: <1649606550.18.0.449159590527.issue216604@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33331 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216604> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462759] socketmodule.c: SSL bugfixes Message-ID: <1649606667.43.0.742200587304.issue462759@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35201 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462759> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467267] isinstance depends on import form Message-ID: <1649606669.86.0.964430155085.issue467267@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35266 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467267> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466353] Py_HUGE_VAL on BeOS for Intel Message-ID: <1649606669.14.0.755419313603.issue466353@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35250 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466353> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467924] Improve the ZipFile Interface Message-ID: <1649606670.28.0.599035127227.issue467924@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35279 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467924> _______________________________________ 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: [issue217028] Installation fails if prefix directory does not exist. Message-ID: <1649606550.97.0.74192475739.issue217028@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33355 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217028> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475657] Platform support for 2.2b: RISC OS Message-ID: <1649606674.97.0.859232772854.issue475657@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35418 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475657> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475327] type() produces incorrect error msg Message-ID: <1649606674.91.0.0771146304775.issue475327@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35416 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475327> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475538] os.system() and cgi Message-ID: <1649606674.95.0.312336728764.issue475538@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35417 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475538> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue475877] Mutable subtype instances are hashable Message-ID: <1649606675.01.0.159021776187.issue475877@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35419 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475877> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470582] sre bug with nested groups Message-ID: <1649606671.33.0.441038321795.issue470582@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35316 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470582> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue475951] HP-UX: Problem building socket Message-ID: <1649606675.05.0.355293965316.issue475951@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35420 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475951> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474590] Platform support for 2.2: RISC OS Message-ID: <1649606674.35.0.30840198321.issue474590@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35400 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474590> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476054] small improvement to random Message-ID: <1649606675.16.0.383832154694.issue476054@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35422 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476054> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476435] inconsistant behavior with float and str Message-ID: <1649606675.34.0.883158486376.issue476435@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35428 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476435> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476138] tempfile behavior across platforms Message-ID: <1649606675.2.0.150420516201.issue476138@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35424 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476138> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476047] Zip importing; do NOT install Message-ID: <1649606675.09.0.75656944158.issue476047@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35421 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476047> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476194] dir(Ellipsis) Message-ID: <1649606675.24.0.867344019641.issue476194@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35425 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476194> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476612] Make md5/sha/hmac match PEP 247 Message-ID: <1649606675.41.0.85843247326.issue476612@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35431 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476612> _______________________________________ 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: [issue222273] sunau readframes() docs should mention ULAW conversion Message-ID: <1649606554.94.0.0708649237642.issue222273@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33474 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222273> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476814] foreign-platform newline support Message-ID: <1649606675.56.0.206366178482.issue476814@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35434 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476814> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476616] UserDict.copy() error Message-ID: <1649606675.46.0.485692007461.issue476616@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35432 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476616> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476593] Bad mode for opening file gives bad msg. Message-ID: <1649606675.39.0.230399155371.issue476593@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35430 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476593> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476419] Turtle documentation not included. Message-ID: <1649606675.31.0.0392595996993.issue476419@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35427 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476419> _______________________________________ 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: [issue402412] support for curses.setupterm Message-ID: <1649606555.26.0.630978676769.issue402412@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33485 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402412> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476852] Some bad macros in abstract.h Message-ID: <1649606675.64.0.784148316416.issue476852@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35435 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476852> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472798] SSL in non-blocking mode Message-ID: <1649606672.62.0.207307391292.issue472798@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35357 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472798> _______________________________________ 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?=5Bissue222587=5D_xmllib_unable_to_parse_=22german_scharfes_?= =?utf-8?q?=C3=9F=22_in_UTF8_format?= Message-ID: <1649606555.13.0.984495375419.issue222587@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33481 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222587> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476648] socket.getnameinfo crashes interpreter Message-ID: <1649606675.49.0.648564650073.issue476648@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35433 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476648> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476884] Configparser line continuations fail Message-ID: <1649606675.73.0.192289229026.issue476884@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35438 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476884> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476904] Unquittable applets Message-ID: <1649606675.8.0.105444590782.issue476904@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35440 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476904> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476858] Assignment to () should be legal Message-ID: <1649606675.66.0.629898600118.issue476858@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35436 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476858> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476866] new improved trace.py Message-ID: <1649606675.71.0.662480605731.issue476866@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35437 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476866> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467145] Python 2.2a4 build problem on HPUX 11.0 Message-ID: <1649606669.58.0.302630659389.issue467145@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35263 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467145> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue477161] New "access" keyword for mmap Message-ID: <1649606675.95.0.153386428305.issue477161@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35444 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477161> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476912] regex annoyance Message-ID: <1649606675.83.0.543793808355.issue476912@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35441 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476912> _______________________________________ 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: [issue219755] sys.getdefaultencoding undocumented Message-ID: <1649606553.17.0.304133146847.issue219755@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33415 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219755> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477215] 'in' and 'not in' won't work for dict Message-ID: <1649606676.03.0.821397555194.issue477215@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35446 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477215> _______________________________________ 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: [issue222977] ConfigParser.get needs a default arg Message-ID: <1649606555.53.0.24704596063.issue222977@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33494 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222977> _______________________________________ 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: [issue222113] Mathematic operations fail on maximum negative integer Message-ID: <1649606554.62.0.184683209125.issue222113@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33461 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222113> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477221] abs and divmod act oddly with -0.0 Message-ID: <1649606676.05.0.509228732095.issue477221@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35447 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477221> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue477059] __del__ on new classes vs. GC Message-ID: <1649606675.9.0.186270999201.issue477059@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35443 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477059> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477371] build_scripts can use wrong #! line Message-ID: <1649606676.12.0.0268116829331.issue477371@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35450 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477371> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467331] ClassType.__doc__ always None Message-ID: <1649606669.89.0.515285267867.issue467331@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35267 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467331> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476557] Wrong error message for file.write(a, b) Message-ID: <1649606675.36.0.284778226427.issue476557@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35429 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476557> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue477162] New "access" keyword for mmap Message-ID: <1649606675.98.0.375660512455.issue477162@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35445 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477162> _______________________________________ 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: [issue222625] Using os.system() does not execute some programs Message-ID: <1649606555.28.0.279269782524.issue222625@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33486 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222625> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477752] Drop old-style getargs from curses Message-ID: <1649606676.37.0.418297820347.issue477752@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35457 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477752> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477700] memory leaks in gdbm & curses Message-ID: <1649606676.3.0.67729361667.issue477700@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35454 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477700> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477557] email package needs examples Message-ID: <1649606676.25.0.381956728042.issue477557@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35453 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477557> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477999] win32ui.FullPath() fails in PythonWin Message-ID: <1649606676.5.0.175607401798.issue477999@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35460 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477999> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478001] uninit mem read w/signals Message-ID: <1649606676.54.0.535186137832.issue478001@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35461 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478001> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477750] Use METH_ constants in Modules Message-ID: <1649606676.35.0.286010315062.issue477750@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35456 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477750> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477728] .*? matches newlines without DOTALL Message-ID: <1649606676.32.0.268090861134.issue477728@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35455 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477728> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478038] urlparse.urlparse semicolon bug Message-ID: <1649606676.71.0.923081641727.issue478038@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35466 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478038> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478006] memory leaks in Modules & threads Message-ID: <1649606676.67.0.329698221593.issue478006@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35465 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478006> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478374] __class_init__ method for classes Message-ID: <1649606676.81.0.00689372837069.issue478374@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35470 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478374> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473515] check socket send method completes Message-ID: <1649606673.28.0.092768474916.issue473515@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35376 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473515> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478407] Need Windows os.link() support Message-ID: <1649606676.83.0.103155245703.issue478407@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35471 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478407> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478425] Change in os.path.join (ntpath.py) Message-ID: <1649606676.89.0.0909657402156.issue478425@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35473 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478425> _______________________________________ 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: [issue223398] "Python/C API Reference Manual" erroneous Python/C exception Message-ID: <1649606555.94.0.531218922602.issue223398@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33507 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223398> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473584] Ctrl-C works always in IDLE Message-ID: <1649606673.36.0.299767977881.issue473584@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35378 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473584> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue478654] Add Choose_Directory -> tkFileDialog Message-ID: <1649606677.02.0.00141701236898.issue478654@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35478 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478654> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue478764] does not install on Windows XP Message-ID: <1649606677.04.0.645721011931.issue478764@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35479 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478764> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478534] SystemError with WeakKeyDictionary Message-ID: <1649606676.96.0.990905382677.issue478534@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35476 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478534> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470634] readlines() on linux requires 2 ^D's Message-ID: <1649606671.46.0.439351191822.issue470634@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35320 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470634> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472004] socket.makefile() missing link to open() Message-ID: <1649606672.2.0.193932058393.issue472004@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35344 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472004> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478536] TypeError from WeakKeyDictionary.has_key Message-ID: <1649606677.0.0.45623306744.issue478536@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35477 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478536> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476898] Word "separate" spelled incorrectly Message-ID: <1649606675.76.0.928371722483.issue476898@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35439 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476898> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479186] compiler generates bad code for "del" Message-ID: <1649606677.18.0.210949405315.issue479186@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35485 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479186> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue478949] Windows installer start menu registry Message-ID: <1649606677.14.0.2546841231.issue478949@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35483 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478949> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479137] unset PYTHON* shell vars Message-ID: <1649606677.16.0.340486168558.issue479137@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35484 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479137> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479195] Put Demo/rpc/rpc.py into standard lib Message-ID: <1649606677.2.0.360720595205.issue479195@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35486 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479195> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468898] allow programmer to initialize random.py Message-ID: <1649606670.77.0.83819753426.issue468898@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35296 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468898> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479551] fix complex() with 2 string args Message-ID: <1649606677.27.0.877680602271.issue479551@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35488 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479551> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479571] --disable-unicode not working Message-ID: <1649606677.34.0.444326783337.issue479571@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35490 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479571> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479615] Fast-path for interned string compares Message-ID: <1649606677.37.0.508879062402.issue479615@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35491 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479615> _______________________________________ 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: [issue217484] Float operations/assignments in Python 2.0 Message-ID: <1649606552.02.0.288044344061.issue217484@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33385 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217484> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479698] __coerce__ not working with new classes Message-ID: <1649606677.41.0.536581673737.issue479698@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35492 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479698> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479967] Python/C API manual has no index section Message-ID: <1649606677.51.0.149396378571.issue479967@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35495 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479967> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479898] Multibyte string on string::string_print Message-ID: <1649606677.48.0.171912971892.issue479898@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35494 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479898> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479796] Patch for Bug #411612 Message-ID: <1649606677.44.0.16995874641.issue479796@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35493 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479796> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue469517] Info about rpcgen compilers in Demo/rpc. Message-ID: <1649606670.88.0.758120118314.issue469517@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35300 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469517> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479568] xxsubtype builtin Message-ID: <1649606677.32.0.716199696348.issue479568@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35489 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479568> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480096] Assign to __debug__ still allowed Message-ID: <1649606677.59.0.0208870284985.issue480096@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35497 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480096> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479981] test_socket fails when compiled with threads (HP-UX) Message-ID: <1649606677.56.0.035935728738.issue479981@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35496 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479981> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477441] Mutable PyCObject Message-ID: <1649606676.16.0.628454369986.issue477441@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35451 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477441> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480215] softspace confused in nested print Message-ID: <1649606677.64.0.975072054593.issue480215@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35499 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480215> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480188] printing unicode objects Message-ID: <1649606677.61.0.548540427374.issue480188@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35498 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480188> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480337] Tut: Dict used before dicts explained Message-ID: <1649606677.7.0.369758940577.issue480337@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35501 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480337> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480716] Support for super subclasses Message-ID: <1649606677.82.0.16953315594.issue480716@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35505 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480716> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480769] Cygwin _cursesmodule patch Message-ID: <1649606677.85.0.739743238465.issue480769@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35506 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480769> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480902] allow dumbdbm to reuse space Message-ID: <1649606677.91.0.715468049053.issue480902@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35508 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480902> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480480] pydoc #!/build-directory/python Message-ID: <1649606677.76.0.757351907937.issue480480@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35503 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480480> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480962] Implement "setgroups" Message-ID: <1649606677.94.0.349445437978.issue480962@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35509 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480962> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481075] Makefile patches for Mac OS X for Python 2.1.2... Message-ID: <1649606678.04.0.873060499272.issue481075@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35512 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481075> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481080] Read Me file Patch for Python 2.1.2 Message-ID: <1649606678.06.0.85678494028.issue481080@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35513 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481080> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475166] Confusing code (typos?) in CGIHTTPServer Message-ID: <1649606674.82.0.662439772042.issue475166@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35413 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475166> _______________________________________ 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: [issue224344] smtplib quoteaddr() has problems with RFC821 source routing Message-ID: <1649606557.08.0.61902535249.issue224344@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33541 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224344> _______________________________________ 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: [issue402563] test for string.join([unicode]) Message-ID: <1649606556.39.0.0985624177787.issue402563@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33518 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402563> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481118] 'switch'/'case'/'else' statement Message-ID: <1649606678.09.0.319548692439.issue481118@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35514 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481118> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481221] rfc822.Addrlist class fails on long addr Message-ID: <1649606678.2.0.3199569971.issue481221@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35517 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481221> _______________________________________ 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: [issue402627] A Set class which *can* use the .firstkey() patch Message-ID: <1649606556.97.0.169012068693.issue402627@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33537 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402627> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481284] GetFileSecurity returns wrong SID Message-ID: <1649606678.26.0.980632789824.issue481284@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35519 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481284> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481520] System V IPC bindings for python Message-ID: <1649606678.32.0.143832341316.issue481520@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35520 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481520> _______________________________________ 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: [issue402670] self of some string methods is incorrect type Message-ID: <1649606557.47.0.418492887742.issue402670@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33551 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402670> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481896] popen3 file objects hanging Message-ID: <1649606678.47.0.000944464740474.issue481896@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35525 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481896> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481718] Time module doc string changes. Message-ID: <1649606678.34.0.892003130341.issue481718@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35521 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481718> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481882] pickle/cPickle can raise SystemError Message-ID: <1649606678.45.0.565153153588.issue481882@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35524 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481882> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481962] Make modules callable Message-ID: <1649606678.54.0.876541117412.issue481962@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35527 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481962> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue477023] pdb: unexpected path confuses Emacs Message-ID: <1649606675.87.0.523390176395.issue477023@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35442 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477023> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481961] Add atoi/atof to string class Message-ID: <1649606678.51.0.923119805157.issue481961@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35526 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481961> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481969] Doesn't build with OOTB Cygwin Message-ID: <1649606678.59.0.866598671372.issue481969@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35528 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481969> _______________________________________ 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: [issue224758] Bogus error message from os.getlogin() Message-ID: <1649606557.7.0.330980153116.issue224758@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33557 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224758> _______________________________________ 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: [issue402679] linuxaudiodev: better format names (and error messages) Message-ID: <1649606557.56.0.700496000612.issue402679@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33553 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402679> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481761] test_format fails Message-ID: <1649606678.4.0.276323113877.issue481761@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35523 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481761> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481726] literal fp pound errors pass silently Message-ID: <1649606678.36.0.0555247487424.issue481726@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35522 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481726> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474538] Memory (reference) leak in poller.regis Message-ID: <1649606674.27.0.454081340666.issue474538@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35397 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474538> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482424] Add system() lookalike for MPW tools Message-ID: <1649606678.74.0.903747331701.issue482424@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35533 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482424> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482460] dumbdbm fails to overwrite existing key Message-ID: <1649606678.76.0.906207713036.issue482460@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35534 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482460> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482531] python directory not added to PATH Message-ID: <1649606678.82.0.465651089189.issue482531@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35536 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482531> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482574] audioop.ratecv crashes Message-ID: <1649606678.84.0.955272784689.issue482574@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35537 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482574> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482932] test_email makes assumptions about epoch Message-ID: <1649606678.97.0.900766446004.issue482932@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35541 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482932> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue478768] type attribute hides member of same name Message-ID: <1649606677.07.0.953415406724.issue478768@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35480 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478768> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483059] Avoid use of eval() in random.py Message-ID: <1649606679.05.0.360502216046.issue483059@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35543 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483059> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue482943] CGIHTTPServer mod docs need updating Message-ID: <1649606679.0.0.76971342798.issue482943@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35542 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482943> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483085] Include windows default temp dir Message-ID: <1649606679.1.0.623952098418.issue483085@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35544 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483085> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480325] Tkinter crash on Win2000, OK on UNIX Message-ID: <1649606677.68.0.856337085159.issue480325@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35500 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480325> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483469] crash on unbounded recursion in __del__ . Message-ID: <1649606679.3.0.385142719582.issue483469@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35549 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483469> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483653] bsddb is not built on RedHat 7.2 Message-ID: <1649606679.34.0.654992230532.issue483653@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35550 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483653> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483789] another *? greedy bug Message-ID: <1649606679.38.0.149529651001.issue483789@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35551 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483789> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483802] How to Crash Python In 3 Easy Steps :) Message-ID: <1649606679.41.0.306575934926.issue483802@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35552 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483802> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483805] mmap docs: Minor description problem Message-ID: <1649606679.45.0.0247767045877.issue483805@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35553 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483805> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483864] Pure python version of calendar.weekday Message-ID: <1649606679.51.0.791430467088.issue483864@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35555 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483864> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483815] "get_referents" is a bad name Message-ID: <1649606679.47.0.963662881487.issue483815@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35554 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483815> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483865] bsddb on RedHat 7.2 Message-ID: <1649606679.56.0.280538143639.issue483865@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35556 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483865> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483925] _hotshot sloppy in error handling Message-ID: <1649606679.61.0.0361901340462.issue483925@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35557 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483925> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484208] configure, aix (lovely python) Message-ID: <1649606679.71.0.23348567579.issue484208@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35560 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484208> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480882] oot builds don't build _curses_panel Message-ID: <1649606677.89.0.848041265299.issue480882@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35507 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480882> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484545] win32.odbc failure - description not set Message-ID: <1649606679.75.0.560721617761.issue484545@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35561 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484545> _______________________________________ 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: [issue224367] problem with shelve not handling some db entries. Message-ID: <1649606557.19.0.134064110673.issue224367@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33544 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224367> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484642] hotshot not being installed Message-ID: <1649606679.83.0.749871664756.issue484642@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35564 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484642> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484603] SAX Attribute/AttributesNS class missing Message-ID: <1649606679.78.0.257980082725.issue484603@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35562 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484603> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484715] Upgrade TCL for windows installer Message-ID: <1649606679.91.0.135637277189.issue484715@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35566 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484715> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484847] Support for OS/2 in webbrowser.open(url) Message-ID: <1649606679.95.0.224481195081.issue484847@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35567 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484847> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484857] print with comma ended Message-ID: <1649606679.98.0.601409224544.issue484857@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35568 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484857> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue484967] bad links at Ref Guide Message-ID: <1649606680.09.0.102678451619.issue484967@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35571 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484967> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477863] Print warning at shutdown if gc.garbage not empty Message-ID: <1649606676.41.0.0374585674236.issue477863@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35458 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477863> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478115] rfc822.Message.getdate('Date') exception Message-ID: <1649606676.73.0.533081225001.issue478115@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35467 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478115> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478339] Linking/compiling with DEBUG Message-ID: <1649606676.78.0.554873119244.issue478339@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35469 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478339> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue484986] Add PanedWindow to Demos/tix Message-ID: <1649606680.16.0.0624191869149.issue484986@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35573 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484986> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490098] dumbdbm docs: flag,mode ignored Message-ID: <1649606684.3.0.452211419252.issue490098@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35684 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490098> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489989] linuxaudiodev.c - fix initialization Message-ID: <1649606684.24.0.647279194235.issue489989@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35682 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489989> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489670] memory leak in test_re Message-ID: <1649606684.01.0.301707386952.issue489670@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35674 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489670> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489671] memory leak in test_richcmp Message-ID: <1649606684.03.0.389849614215.issue489671@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35675 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489671> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489709] Building Fails under Cygwin Message-ID: <1649606684.15.0.70046067225.issue489709@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35679 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489709> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486079] poplib contains unuseable code Message-ID: <1649606681.39.0.28880204451.issue486079@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35603 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486079> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489872] PyString_FromString(NULL) seg faults Message-ID: <1649606684.17.0.356861429735.issue489872@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35680 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489872> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489899] bzip2 Message-ID: <1649606684.21.0.394448794227.issue489899@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35681 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489899> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489680] h2py uses nonexistent method Message-ID: <1649606684.12.0.174989424423.issue489680@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35678 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489680> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490399] ConfigParser and nonexistent file Message-ID: <1649606684.53.0.0491015425661.issue490399@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35691 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490399> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490402] Improper PyMethodObject->im_class fix Message-ID: <1649606684.55.0.208244013743.issue490402@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35692 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490402> _______________________________________ 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: [issue400717] Don't link with the libieee library if it's not necessary Message-ID: <1649606579.46.0.867458208895.issue400717@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400717> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490414] Jython and test_socket Message-ID: <1649606684.61.0.113407715208.issue490414@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35694 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490414> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490393] test___all__ and Jython Message-ID: <1649606684.5.0.817505569527.issue490393@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35690 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490393> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489106] commands.mkarg function should be public Message-ID: <1649606683.7.0.944096953292.issue489106@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35664 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489106> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490453] OpenUNIX 8: No Compile/Run Message-ID: <1649606684.66.0.205697555272.issue490453@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35696 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490453> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490417] Jython and test_exceptions Message-ID: <1649606684.63.0.687053104646.issue490417@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35695 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490417> _______________________________________ 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: [issue400734] more helpful SyntaxError messages Message-ID: <1649606579.8.0.655899221668.issue400734@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400734> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487297] Copy from stdout after crash Message-ID: <1649606682.25.0.484928943697.issue487297@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35627 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487297> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490850] Jython and test_StringIO Message-ID: <1649606684.87.0.138275397069.issue490850@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35703 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490850> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488482] xrange() * large integer Message-ID: <1649606683.47.0.911693221656.issue488482@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35656 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488482> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490920] Jython and test_unicode Message-ID: <1649606684.89.0.521910802338.issue490920@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35704 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490920> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490456] Unicode support in email.Utils.encode Message-ID: <1649606684.69.0.811681398313.issue490456@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35697 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490456> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490515] urllib.open_https() protocol issue Message-ID: <1649606684.73.0.795620290299.issue490515@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35698 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490515> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue491049] Small PyString_FromString optimization Message-ID: <1649606684.99.0.772760222237.issue491049@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35707 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491049> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491107] Cygwin setup.py import workaround patch Message-ID: <1649606685.02.0.818793562724.issue491107@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35708 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491107> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491183] ScrolledText.grid() doesn't work Message-ID: <1649606685.09.0.707037167941.issue491183@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35710 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491183> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491331] request sys.required_version Message-ID: <1649606685.17.0.00444713919141.issue491331@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35713 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491331> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490939] <string>.join(generator) crash bug Message-ID: <1649606684.92.0.243513196593.issue490939@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35705 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490939> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490411] Jython and test_grammar.py Message-ID: <1649606684.58.0.531257171141.issue490411@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35693 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490411> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487331] time mod's timezone doesn't honor TZ var Message-ID: <1649606682.44.0.724994229152.issue487331@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35632 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487331> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487310] smtplib mishandles SMTP disconnects Message-ID: <1649606682.31.0.163089569631.issue487310@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35629 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487310> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487152] Framework reports wrong sys.executable Message-ID: <1649606682.08.0.514569512063.issue487152@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35622 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487152> _______________________________________ 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: [issue400752] Make atoi work for negative bases, a useful generalization Message-ID: <1649606580.11.0.900848130587.issue400752@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400752> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491401] Changes strncpy to memcpy for opt Message-ID: <1649606685.25.0.877514016787.issue491401@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35716 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491401> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491418] upgrade test to improve coverage test_b1 Message-ID: <1649606685.34.0.900724531943.issue491418@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35718 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491418> _______________________________________ 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: [issue400505] printf("%lx") -> printf("%p") for pointers : win64 cares Message-ID: <1649606576.98.0.514011898527.issue400505@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400505> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491398] Sliced list subclass has wrong type Message-ID: <1649606685.23.0.446053602937.issue491398@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35715 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491398> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491421] upgrade test to improve coverage types Message-ID: <1649606685.38.0.539655821958.issue491421@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35720 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491421> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491415] PyDict_UpdateFromSeq2() unused Message-ID: <1649606685.3.0.334159676243.issue491415@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35717 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491415> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491888] whichdb lies about db type Message-ID: <1649606685.48.0.179544042567.issue491888@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35724 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491888> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491820] asynchat.async_chat missing methods Message-ID: <1649606685.46.0.725723357718.issue491820@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35723 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491820> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491936] Opt for tok_nextc Message-ID: <1649606685.51.0.421271810606.issue491936@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35725 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491936> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488184] import with undefineds can crash python Message-ID: <1649606683.18.0.135849499556.issue488184@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35649 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488184> _______________________________________ 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: [issue400760] _src.c: indentation, ParseTuple method names Message-ID: <1649606580.17.0.311424845428.issue400760@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400760> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492301] Fink Patch for Python 2.2 Message-ID: <1649606685.64.0.719329418043.issue492301@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35728 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492301> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490168] shutil.copy(path, path) deletes contents Message-ID: <1649606684.35.0.383865789652.issue490168@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35686 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490168> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493837] Distutils not finding Python on Win2K Message-ID: <1649606686.65.0.131086957034.issue493837@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35755 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493837> _______________________________________ 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: [issue400777] cdmodule: ANSI-fication (UNTESTED!) Message-ID: <1649606580.49.0.00887664592755.issue400777@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400777> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493951] string.{starts,ends}with vs slices Message-ID: <1649606686.74.0.947918871998.issue493951@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35757 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493951> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493959] 2.2c1 configure bug Message-ID: <1649606686.78.0.390792345206.issue493959@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35758 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493959> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493936] _PyEval_SliceIndex vs NULL Message-ID: <1649606686.68.0.0759148619251.issue493936@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35756 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493936> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue494045] patches errno and stat to cope on plan9 Message-ID: <1649606686.93.0.439576816577.issue494045@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35761 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494045> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493514] test_hotshot hangs under cygwin Message-ID: <1649606686.32.0.447125494803.issue493514@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35746 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493514> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491953] ScrolledText.py has TabError Message-ID: <1649606685.55.0.818116120197.issue491953@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35726 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491953> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue494007] Py_INCREF(Py_None) in documentation Message-ID: <1649606686.85.0.335446295373.issue494007@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35759 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494007> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494048] removes def of HAVE_WCHAR_H in header Message-ID: <1649606687.03.0.658774459931.issue494048@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35763 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494048> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494066] Access to readline history elements Message-ID: <1649606687.09.0.291853136652.issue494066@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35765 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494066> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494240] str.reverse Message-ID: <1649606687.26.0.686748005574.issue494240@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35769 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494240> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490558] Missing Snd functions Message-ID: <1649606684.75.0.366590883113.issue490558@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35699 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490558> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494098] trivial typo in Lib/site.py Message-ID: <1649606687.16.0.871516491593.issue494098@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35766 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494098> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494572] plugin project generation has problems Message-ID: <1649606687.42.0.381618362075.issue494572@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35773 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494572> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494582] cgitb docs and consistency fix Message-ID: <1649606687.46.0.447910702966.issue494582@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35774 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494582> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494320] Memory leaks in 2.2c1? Message-ID: <1649606687.3.0.380481702942.issue494320@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35770 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494320> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494589] os.path.expandvars deletes things on w32 Message-ID: <1649606687.5.0.65798611433.issue494589@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35775 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494589> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493252] maximum recursion limit exceeded in match Message-ID: <1649606686.1.0.545367813829.issue493252@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35740 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493252> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494384] Missing --disable-unicode patch Message-ID: <1649606687.35.0.0717014130627.issue494384@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35771 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494384> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494762] urllib2 on python2.2 ssl bug Message-ID: <1649606687.73.0.587962634385.issue494762@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35780 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494762> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494738] binascii_b2a_base64 overwrites memory Message-ID: <1649606687.69.0.0729621662462.issue494738@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35779 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494738> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494622] pydoc library documentation Message-ID: <1649606687.61.0.0357824437215.issue494622@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35777 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494622> _______________________________________ 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: [issue400853] merging my*.h into pyport.h Message-ID: <1649606581.83.0.915202800461.issue400853@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400853> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490264] Portable compiler option specification Message-ID: <1649606684.39.0.576231457624.issue490264@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35687 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490264> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494845] Improvements for pygettext Message-ID: <1649606687.83.0.704738426185.issue494845@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35782 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494845> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494863] file.xreadlines() should raise exception Message-ID: <1649606687.93.0.57348793838.issue494863@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35784 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494863> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494867] updated test_file.py Message-ID: <1649606687.96.0.568219406946.issue494867@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35785 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494867> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494871] test exceptions in various types/methods Message-ID: <1649606687.99.0.481908230965.issue494871@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35786 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494871> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494065] access to st_rdev,st_blocks,st_blksize Message-ID: <1649606687.06.0.770102942485.issue494065@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35764 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494065> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue494874] add tests for int()/long() Message-ID: <1649606688.1.0.287704179875.issue494874@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35789 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494874> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue494876] test invalid params to pow() Message-ID: <1649606688.13.0.376865647999.issue494876@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35790 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494876> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492403] exec() segfaults on closure's func_code Message-ID: <1649606685.79.0.165620436511.issue492403@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35732 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492403> _______________________________________ 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: [issue400855] Rename PyXXX_Length methods to PyXXX_Size Message-ID: <1649606581.88.0.74865095203.issue400855@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400855> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495021] Crash calling os.stat with a trailing \ Message-ID: <1649606688.18.0.603863955088.issue495021@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35792 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495021> _______________________________________ 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: [issue400947] increase control and default size of pdb traceback display Message-ID: <1649606583.03.0.63965652296.issue400947@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400947> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue494872] test repr() of a built-in module Message-ID: <1649606688.02.0.0534748401671.issue494872@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35787 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494872> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495221] httplib example typo Message-ID: <1649606688.34.0.715877329575.issue495221@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35796 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495221> _______________________________________ 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: [issue400824] tkappinit: ANSI-fication Message-ID: <1649606581.42.0.727474369763.issue400824@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400824> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495401] Build troubles: --with-pymalloc Message-ID: <1649606688.52.0.972156584254.issue495401@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35799 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495401> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495598] add an -q (quiet) option to pycompile Message-ID: <1649606688.66.0.0816627592067.issue495598@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35801 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495598> _______________________________________ 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: [issue400978] Minor updates for BeOS R5 Message-ID: <1649606583.4.0.109150324632.issue400978@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400978> _______________________________________ 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: [issue400782] dbmmodule: ANSI-fication Message-ID: <1649606580.57.0.909684718134.issue400782@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400782> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494203] Interpreter won't always exit with daemonic thread Message-ID: <1649606687.22.0.386416992103.issue494203@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35768 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494203> _______________________________________ 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: [issue400998] experimental support for extended slicing on lists Message-ID: <1649606583.59.0.754362845652.issue400998@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400998> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495603] CDROM module woefully out of date Message-ID: <1649606688.74.0.0235728208727.issue495603@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35803 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495603> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495624] Error building info docs Message-ID: <1649606688.82.0.802196486236.issue495624@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35805 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495624> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495672] xml.AttributesImpl: __setitem__ undef. Message-ID: <1649606688.84.0.567415449231.issue495672@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35806 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495672> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495682] cannot handle http_proxy with user:pass@ Message-ID: <1649606688.91.0.434221323734.issue495682@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35808 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495682> _______________________________________ 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: [issue210595] test_fork1 hangs with 1.6a2 on Linux (PR#296) Message-ID: <1649606583.94.0.143378719712.issue210595@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210595> _______________________________________ 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: [issue401019] Opcode reordering Message-ID: <1649606583.7.0.704330547175.issue401019@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401019> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495688] Make site.py more friendly to PDAs Message-ID: <1649606688.98.0.388636426949.issue495688@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35809 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495688> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459442] Fix small Tools/bgen problems Message-ID: <1649606665.5.0.0665682574094.issue459442@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35138 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459442> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460474] codecs.StreamWriter: reset() on close() Message-ID: <1649606665.85.0.11675974037.issue460474@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35150 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460474> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460315] call_trace() arg for 'call' Message-ID: <1649606665.72.0.0921780391253.issue460315@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35146 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460315> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460357] test_time fails on Sparc64 Message-ID: <1649606665.76.0.0275816039381.issue460357@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35147 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460357> _______________________________________ 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: [issue215919] Integer multiplication overflow Message-ID: <1649606548.22.0.90003130325.issue215919@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33262 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215919> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460020] bug or feature: unicode() and subclasses Message-ID: <1649606665.6.0.149474649885.issue460020@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35142 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460020> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460402] PEP 270: uniq() method for list objects Message-ID: <1649606665.8.0.0701794770874.issue460402@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35148 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460402> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458878] strict-protypes and signalmodule.c Message-ID: <1649606664.94.0.0743942366919.issue458878@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35120 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458878> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455648] getpass.getpass() freezes windows client Message-ID: <1649606662.81.0.439183737407.issue455648@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35052 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455648> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue460805] Support for unsetenv() Message-ID: <1649606666.12.0.623085603159.issue460805@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35159 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460805> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460615] test_fpformat fails on SGI Message-ID: <1649606665.97.0.158221334869.issue460615@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35155 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460615> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460269] Improve threading on Solaris platform. Message-ID: <1649606665.69.0.48622642807.issue460269@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35145 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460269> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue460838] compilation warning from missing cast Message-ID: <1649606666.16.0.260643382934.issue460838@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35160 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460838> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468116] Implement "setgroups" Message-ID: <1649606670.37.0.487047000383.issue468116@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35281 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468116> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468120] setup.py assumes existence of /usr/local Message-ID: <1649606670.42.0.395452402148.issue468120@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35283 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468120> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465527] sqrt on a long int returns invalid resul Message-ID: <1649606668.82.0.893175712361.issue465527@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35242 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465527> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466200] ability to specify a 'verify' script Message-ID: <1649606669.02.0.91440002665.issue466200@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35248 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466200> _______________________________________ 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: [issue217109] Compilation Fails if LONG_BIT != 8*SIZEOF_LONG Message-ID: <1649606551.13.0.489778765404.issue217109@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33360 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217109> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463640] weird namespace phenomenon Message-ID: <1649606667.98.0.913308536274.issue463640@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35220 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463640> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468061] __str__ ignored in str subclass Message-ID: <1649606670.35.0.690091904784.issue468061@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35280 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468061> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468347] mask signals for non-main pthreads Message-ID: <1649606670.51.0.762230888535.issue468347@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35286 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468347> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468443] Python download/install process Message-ID: <1649606670.64.0.37537016833.issue468443@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35290 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468443> _______________________________________ 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: [issue217167] _tkinter module segfaults on "syntax error" Message-ID: <1649606551.25.0.2205765134.issue217167@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33362 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217167> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468384] os.P_* constants poorly documented Message-ID: <1649606670.54.0.228008739765.issue468384@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35287 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468384> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468432] add more object sizes to struct Message-ID: <1649606670.6.0.727257682325.issue468432@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35289 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468432> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468805] Embed invisibly Message-ID: <1649606670.73.0.886917359766.issue468805@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35294 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468805> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467055] -flat_namespace not in Makefile.pre.in for Darwin/MacOS Message-ID: <1649606669.48.0.931137069848.issue467055@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35261 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467055> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468647] Fix exception propagation in asyncore Message-ID: <1649606670.68.0.013655240905.issue468647@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35292 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468647> _______________________________________ 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: [issue401980] Fix for #117278: Do not release unallocated Tcl objects Message-ID: <1649606551.64.0.53864013426.issue401980@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33372 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401980> _______________________________________ 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: [issue217328] .py and .pyc icons confusing. Message-ID: <1649606551.72.0.153625039818.issue217328@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33375 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217328> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue469250] xxmodule.c needs to be updated Message-ID: <1649606670.83.0.867842005879.issue469250@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35298 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469250> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue469681] Replace a whole string with empty string Message-ID: <1649606670.9.0.967078651708.issue469681@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35301 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469681> _______________________________________ 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: [issue402075] More DOM documentation Message-ID: <1649606551.91.0.256564735153.issue402075@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33382 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402075> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue469772] support additional LINK elements. Message-ID: <1649606670.95.0.845563728829.issue469772@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35303 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469772> _______________________________________ 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: [issue217386] Compile fails on RH7 Message-ID: <1649606551.83.0.505876774858.issue217386@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33379 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217386> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468457] Minor changes to sre.Scanner Message-ID: <1649606670.66.0.885461733487.issue468457@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35291 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468457> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue469859] range function problem Message-ID: <1649606671.02.0.249267679943.issue469859@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35305 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469859> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue469411] Better exception message: wrong instance Message-ID: <1649606670.85.0.939679554268.issue469411@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35299 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469411> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468948] urllib2, basic authentication, & 302 Message-ID: <1649606670.8.0.971207517575.issue468948@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35297 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468948> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue469972] xmlrpclib won't marshal new types Message-ID: <1649606671.08.0.0705658239183.issue469972@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35307 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469972> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue469910] Bugfix for imaplib for macintosh Message-ID: <1649606671.04.0.940969387188.issue469910@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35306 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469910> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470040] ParseTuple t# vs subclasses Message-ID: <1649606671.11.0.291590454586.issue470040@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35308 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470040> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue469773] Write 'Using Python on Platform X' documents Message-ID: <1649606670.98.0.928142907792.issue469773@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35304 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469773> _______________________________________ 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: [issue217706] Typo in the tutorial: shorted -> shorter Message-ID: <1649606552.41.0.292771960013.issue217706@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33397 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217706> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470393] Add missing marshal function Message-ID: <1649606671.19.0.745909289444.issue470393@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35311 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470393> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue464070] Decode underscore in quopri.decode Message-ID: <1649606668.31.0.179937086937.issue464070@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35228 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue464070> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465045] base n integer to string conversion Message-ID: <1649606668.52.0.474755360267.issue465045@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35235 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465045> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470781] Build broken in Mac OS X Message-ID: <1649606671.58.0.931105398818.issue470781@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35324 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470781> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470635] simple script causes segfault Message-ID: <1649606671.5.0.027348559702.issue470635@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35321 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470635> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470744] More cleanup of __repr__ in asyncore Message-ID: <1649606671.55.0.306483985784.issue470744@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35323 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470744> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462270] sub-tle difference between pre and sre Message-ID: <1649606667.01.0.855630790604.issue462270@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35187 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462270> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470680] Clean output of __repr__ in asyncore Message-ID: <1649606671.53.0.0760394780896.issue470680@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35322 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470680> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471120] Upgraded Tix.py Message-ID: <1649606671.64.0.250109201562.issue471120@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35326 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471120> _______________________________________ 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: [issue219772] Interactive InterPreter+ Thread -> core dump at exit Message-ID: <1649606553.21.0.782572013722.issue219772@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33416 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219772> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471400] quopri.py fix: escape single-dot lines Message-ID: <1649606671.72.0.0755597481744.issue471400@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35329 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471400> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471421] conditional expression (if-then-else) Message-ID: <1649606671.74.0.697850532628.issue471421@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35330 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471421> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue469732] os.path.walk docstring inconsistent Message-ID: <1649606670.93.0.0196074014013.issue469732@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35302 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue469732> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471432] __cdecl / __stdcall unspecified in *.h Message-ID: <1649606671.77.0.605981277058.issue471432@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35331 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471432> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471720] ThreadingMixIn/TCPServer forgets close Message-ID: <1649606671.83.0.956161820427.issue471720@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35333 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471720> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462849] Printing arbitrary Unicode strings Message-ID: <1649606667.52.0.767979024807.issue462849@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35204 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462849> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471834] Nomenclature in os module, exec*() Message-ID: <1649606671.91.0.603294581856.issue471834@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35336 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471834> _______________________________________ 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: [issue219860] Exception "TypeError: not enough arguments" without details Message-ID: <1649606553.36.0.415857683316.issue219860@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33421 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219860> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471725] sys.settrace is thread-local state Message-ID: <1649606671.86.0.728759692478.issue471725@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35334 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471725> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470578] Fixes to synchronize unicode() and str() Message-ID: <1649606671.31.0.943784981729.issue470578@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35315 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470578> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue463698] add iterator IF to StringIO/cStringIO Message-ID: <1649606668.07.0.0400362313955.issue463698@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35222 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463698> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue462255] Cygwin resource module patch Message-ID: <1649606666.95.0.591288959067.issue462255@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35185 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462255> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471852] getattr with default catches too much Message-ID: <1649606671.96.0.854931791575.issue471852@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35338 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471852> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471839] Bug when extensions import extensions Message-ID: <1649606671.94.0.209069021434.issue471839@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35337 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471839> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471893] Security review of pickle/marshal docs Message-ID: <1649606671.99.0.705102643026.issue471893@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35339 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471893> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue471894] Makefile installs pydoc incorrectly Message-ID: <1649606672.05.0.696441686394.issue471894@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35340 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471894> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue471942] python2.1.1 SEGV in GC on Solaris 2.7 Message-ID: <1649606672.13.0.64004273176.issue471942@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35342 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471942> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471270] SystemError: unknown opcode Message-ID: <1649606671.69.0.548149133492.issue471270@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35328 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471270> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue471975] xmlrpclib failure Message-ID: <1649606672.17.0.380162679518.issue471975@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35343 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471975> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472202] dlerror()-messages bogus on netbsd Message-ID: <1649606672.26.0.569326890826.issue472202@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35346 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472202> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472007] Linker problem on HP-UX 11.00 Message-ID: <1649606672.22.0.450581247144.issue472007@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35345 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472007> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467811] Inability to "see" some module content Message-ID: <1649606670.25.0.468925546794.issue467811@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35278 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467811> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472347] pydoc and properties Message-ID: <1649606672.31.0.50291800348.issue472347@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35348 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472347> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472568] PyBuffer_New() memory not aligned Message-ID: <1649606672.41.0.474373616347.issue472568@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35351 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472568> _______________________________________ 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: [issue401970] Generate more modern file:///C:/foo/bar syntax Message-ID: <1649606551.4.0.576165973385.issue401970@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33365 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401970> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472555] Remove trailing common in enumeration Message-ID: <1649606672.39.0.0311959762414.issue472555@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35350 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472555> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472234] type(obj) calls type->tp_init Message-ID: <1649606672.29.0.475346009335.issue472234@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35347 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472234> _______________________________________ 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: [issue402226] freeze/modulefinder.py should use _winreg, not win32api Message-ID: <1649606553.9.0.124947864673.issue402226@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33436 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402226> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472646] Cookie.py and : in key Message-ID: <1649606672.5.0.0534106466215.issue472646@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35354 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472646> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466907] OSX Python cannot run in console Message-ID: <1649606669.42.0.636695520647.issue466907@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35258 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466907> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472801] Python Advocacy HOWTO R0.03 URLs broken Message-ID: <1649606672.65.0.332246187502.issue472801@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35358 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472801> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472825] re examples Message-ID: <1649606672.67.0.699041921482.issue472825@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35359 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472825> _______________________________________ 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: [issue221115] Kill threads from main thread Message-ID: <1649606553.93.0.0671419541595.issue221115@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33437 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221115> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468394] Allow xmlrpclib to handle long ints Message-ID: <1649606670.57.0.358157390664.issue468394@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35288 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468394> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue473187] Test script for curses module Message-ID: <1649606672.92.0.219786512627.issue473187@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35367 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473187> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue473240] printf-like function warnings Message-ID: <1649606672.99.0.0423975087213.issue473240@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35369 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473240> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468153] os.fork() in win32 port Message-ID: <1649606670.45.0.162367970901.issue468153@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35284 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468153> _______________________________________ 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: [issue219558] bsddb module doesn't check return value of malloc() Message-ID: <1649606552.81.0.100921762025.issue219558@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33407 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219558> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467430] CGIHTTPServer - 2 issues and/or bugs Message-ID: <1649606670.0.0.690583992436.issue467430@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35271 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467430> _______________________________________ 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: [issue402106] sys._getframe() for getting the current stack frame Message-ID: <1649606552.28.0.0377802529537.issue402106@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33393 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402106> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue473223] Fix infinite getattr loop in asyncore Message-ID: <1649606672.96.0.0899065875884.issue473223@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35368 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473223> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472593] Changing the preferences mechanism Message-ID: <1649606672.44.0.901394001342.issue472593@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35352 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472593> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473586] SimpleXMLRPCServer - fixes and CGI Message-ID: <1649606673.38.0.415851801786.issue473586@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35379 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473586> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473753] Plug sys.exc_info() leaks Message-ID: <1649606673.53.0.195078101741.issue473753@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35382 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473753> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468887] type(self) not preserved on some methods Message-ID: <1649606670.75.0.523701389751.issue468887@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35295 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468887> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470254] check for xmlrpc ints/longs > 32 bits Message-ID: <1649606671.16.0.356263154561.issue470254@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35310 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470254> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473986] __all__ undocumented for modules Message-ID: <1649606673.71.0.421532004478.issue473986@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35386 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473986> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473864] doctest expects spurios space Message-ID: <1649606673.62.0.479133478516.issue473864@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35384 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473864> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471111] inspect.getframeinfo() needs docs Message-ID: <1649606671.6.0.31885769381.issue471111@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35325 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471111> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue474238] 2.2b1 src rpm doesn't include Lib/email/ Message-ID: <1649606673.86.0.0286283587844.issue474238@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35390 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474238> _______________________________________ 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: [issue221963] IDLE hangs on Threads Message-ID: <1649606554.49.0.281676020064.issue221963@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33457 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221963> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474485] pydoc generates some bad html Message-ID: <1649606674.09.0.507593213293.issue474485@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35393 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474485> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474532] avoid resizes in _PyString_Resize() Message-ID: <1649606674.23.0.176502411673.issue474532@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35396 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474532> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470394] Fix keyword arguments with wrapper funcs Message-ID: <1649606671.21.0.881765191614.issue470394@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35312 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470394> _______________________________________ 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: [issue221479] Compiler warnings on Solaris Message-ID: <1649606554.19.0.181584654747.issue221479@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33446 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221479> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474737] Problem overriding int.__init__() Message-ID: <1649606674.38.0.0817588532594.issue474737@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35401 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474737> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474585] Deprecate modules Message-ID: <1649606674.32.0.222867216553.issue474585@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35399 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474585> _______________________________________ 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: [issue402185] reclaim fds in smtplib.py on connect failures Message-ID: <1649606553.41.0.520753639638.issue402185@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33423 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402185> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474831] Command history doesn't work on Mandrake Message-ID: <1649606674.4.0.917113847312.issue474831@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35402 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474831> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474986] minidom doesn't implement importNode() Message-ID: <1649606674.59.0.326333507944.issue474986@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35406 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474986> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474836] Tix not included in windows distribution Message-ID: <1649606674.43.0.186256681426.issue474836@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35403 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474836> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475033] Fix for defect #474538 Message-ID: <1649606674.69.0.74915286907.issue475033@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35409 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475033> _______________________________________ 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: [issue401850] Documentation for SAX2 Message-ID: <1649606549.96.0.637053817314.issue401850@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33322 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401850> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463378] pydoc vs staticmethod & classmethod Message-ID: <1649606667.78.0.651633944945.issue463378@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35212 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463378> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474913] 2.2b1 won't start in remote shell Message-ID: <1649606674.54.0.601477454259.issue474913@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35404 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474913> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474583] non-standard types in mimetypes.py Message-ID: <1649606674.3.0.384653662955.issue474583@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35398 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474583> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474919] 2.2b1 cannot start remotely (ssh) Message-ID: <1649606674.56.0.859838409652.issue474919@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35405 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474919> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475049] Slight documentation error in XML DOM Message-ID: <1649606674.78.0.938299186207.issue475049@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35412 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475049> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467571] profile.py mishandles exceptions Message-ID: <1649606670.06.0.440459277811.issue467571@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35273 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467571> _______________________________________ 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: [issue222236] 11.4.2 Example 2 contains typos and one bug Message-ID: <1649606554.91.0.0135078323577.issue222236@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33473 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222236> _______________________________________ 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: [issue222168] Does not compile on RH 7.0 Message-ID: <1649606554.68.0.221342223822.issue222168@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33463 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222168> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475253] [OSX]ConfigPython fails 4 non-admin user Message-ID: <1649606674.84.0.0791105375584.issue475253@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35414 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475253> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475325] Frozen packages broken on the Mac Message-ID: <1649606674.87.0.748267188696.issue475325@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35415 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475325> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485133] memory leak in test_parser Message-ID: <1649606680.28.0.0810353170278.issue485133@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35576 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485133> _______________________________________ 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: [issue402860] Add PyDict_Update() function to C API. Message-ID: <1649606559.15.0.0419139741422.issue402860@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33597 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402860> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485080] lib/test/data not installed Message-ID: <1649606680.25.0.0734547009653.issue485080@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35575 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485080> _______________________________________ 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: [issue225919] docs for random, whrandom too complex Message-ID: <1649606559.18.0.410920077553.issue225919@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33598 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225919> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485145] memory leak in test_unicode Message-ID: <1649606680.59.0.850202585991.issue485145@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35579 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485145> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485342] fcntl.lockf clarification Message-ID: <1649606681.0.0.139601872651.issue485342@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35587 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485342> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485165] PyEval_CallObject not in the index Message-ID: <1649606680.89.0.531312888655.issue485165@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35583 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485165> _______________________________________ 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: [issue225673] PyThreadState_Delete: invalid tstate Message-ID: <1649606558.89.0.397321253845.issue225673@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33586 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225673> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485252] weird HTML; typo Message-ID: <1649606680.97.0.137519874667.issue485252@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35586 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485252> _______________________________________ 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: [issue402878] More tests for coercion and comparison Message-ID: <1649606559.36.0.415204794437.issue402878@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33606 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402878> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485240] extra arg 'name' for __get|set|del__ Message-ID: <1649606680.95.0.11530223888.issue485240@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35585 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485240> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485446] tutorial: backticks, repr(), str() Message-ID: <1649606681.02.0.298158684649.issue485446@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35588 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485446> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue484866] print '\b', '\a', etc. Message-ID: <1649606680.02.0.595894637331.issue484866@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35569 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484866> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485153] Erroneous Fail of PyEval_CallObject Message-ID: <1649606680.82.0.0550364061676.issue485153@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35582 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485153> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485557] MacPython doesnt run on 8.1 Message-ID: <1649606681.06.0.490203860983.issue485557@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35590 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485557> _______________________________________ 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: [issue226161] pickling the string u'\\u' is impossible in Python 2.0 Message-ID: <1649606559.45.0.504963915098.issue226161@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33609 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226161> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485679] 2.2b2 Won't build on Solaris 2.8 Message-ID: <1649606681.15.0.0214198451974.issue485679@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35594 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485679> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484156] no thread support on HP-UX 10.20 Message-ID: <1649606679.68.0.0879571270733.issue484156@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35559 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484156> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484645] little bug in pycodegen.py Message-ID: <1649606679.85.0.472163970617.issue484645@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35565 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484645> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485781] get_refer{ent,rer}s() doesn't use `is' Message-ID: <1649606681.21.0.116817091213.issue485781@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35597 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485781> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467583] Restricted Execution docs broken ref Message-ID: <1649606670.16.0.343452304171.issue467583@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35275 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467583> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485794] calendar.isleap should return 1 not true Message-ID: <1649606681.25.0.0175289911026.issue485794@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35599 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485794> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue484994] bugs in Tix.py ListNoteBook PanedWindow Message-ID: <1649606680.18.0.66766714775.issue484994@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35574 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484994> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482003] dict display broken in pprint Message-ID: <1649606678.68.0.65148039337.issue482003@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35531 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482003> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485951] repr diff between string and unicode. Message-ID: <1649606681.29.0.607312123466.issue485951@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35601 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485951> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482171] webchecker dies on file: URLs w/o robots Message-ID: <1649606678.7.0.0202677635709.issue482171@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35532 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482171> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486099] socketmodule won't compile on BSDI 4.0 Message-ID: <1649606681.44.0.410621957644.issue486099@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35604 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486099> _______________________________________ 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: [issue226400] test_format broken Message-ID: <1649606559.74.0.0483627600955.issue226400@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33618 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226400> _______________________________________ 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: [issue402971] build_ext -L typo fix Message-ID: <1649606559.86.0.323628267056.issue402971@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33622 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402971> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486247] ftplib/URLLib time outs on transfers Message-ID: <1649606681.53.0.301499503305.issue486247@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35606 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486247> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486278] SystemError: Python/getargs.c:1086: bad Message-ID: <1649606681.58.0.131882858011.issue486278@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35607 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486278> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483126] cgitb does not recover Message-ID: <1649606679.14.0.108315828425.issue483126@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35545 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483126> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486480] zipfile __del__ is broken Message-ID: <1649606681.75.0.499748134457.issue486480@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35612 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486480> _______________________________________ 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: [issue402737] Add DOM exception classes Message-ID: <1649606558.2.0.671242116326.issue402737@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33567 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402737> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485723] time.localtime() unsliceable!! Message-ID: <1649606681.18.0.705379009325.issue485723@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35595 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485723> _______________________________________ 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: [issue402665] Different credit text for jython Message-ID: <1649606557.35.0.357889081041.issue402665@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33548 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402665> _______________________________________ 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: [issue400509] overflow checking for modification time (64-bit, import.c) Message-ID: <1649606577.1.0.883063438141.issue400509@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400509> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue486743] remove bad INCREF, propagate exception Message-ID: <1649606682.01.0.742310709115.issue486743@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35619 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486743> _______________________________________ 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: [issue400511] test largefile support (test_largefile.py) Message-ID: <1649606577.2.0.758365969193.issue400511@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400511> _______________________________________ 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: [issue400513] fix posixmodule for 64-bit systems (mainly Win64) Message-ID: <1649606577.29.0.804443260499.issue400513@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400513> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483236] subclass of int Message-ID: <1649606679.24.0.172005537243.issue483236@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35547 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483236> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487147] Differ Object doc typo Message-ID: <1649606682.06.0.579418058546.issue487147@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35621 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487147> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue486826] bogus error message on bad parameters Message-ID: <1649606682.04.0.14425173549.issue486826@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35620 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486826> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487165] difficult to find string interpolation Message-ID: <1649606682.1.0.247732817988.issue487165@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35623 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487165> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487277] Different behavior of readline() Message-ID: <1649606682.2.0.098032564425.issue487277@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35626 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487277> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487275] windows-1251 charset alias Message-ID: <1649606682.16.0.828196724458.issue487275@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35625 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487275> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486657] small edit in ext/ownershipRules.html Message-ID: <1649606681.93.0.305709409201.issue486657@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35617 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486657> _______________________________________ 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: [issue400523] simple 64-bit fixes in Parser/ dir Message-ID: <1649606577.56.0.378300478763.issue400523@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400523> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487321] Installation fails on module-xmllib.html Message-ID: <1649606682.4.0.123628773115.issue487321@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35631 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487321> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487390] Modifying type.__module__ behavior Message-ID: <1649606682.48.0.920055655095.issue487390@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35633 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487390> _______________________________________ 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: [issue400526] fix cPickle.c for 64-bit platforms (mainly Win64) Message-ID: <1649606577.63.0.227328843558.issue400526@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400526> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485554] Copy menu not enabled Message-ID: <1649606681.04.0.160895135795.issue485554@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35589 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485554> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487458] bugfix and extension to Lib/asyncore.py Message-ID: <1649606682.61.0.591551027205.issue487458@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35635 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487458> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487471] urllib2 proxyhandle won't work. Message-ID: <1649606682.65.0.277355060574.issue487471@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35636 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487471> _______________________________________ 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: [issue400508] changes to autoconf files and PC/config.h for 64-bit systems Message-ID: <1649606577.07.0.323203280077.issue400508@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400508> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487566] smart module import Message-ID: <1649606682.73.0.962406695167.issue487566@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35637 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487566> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487634] Fix for NDEBUG problem and extensions Message-ID: <1649606682.79.0.721576882459.issue487634@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35638 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487634> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487703] Replace strcat, strcpy Message-ID: <1649606682.82.0.616920084361.issue487703@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35639 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487703> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485602] new module broken with new classes Message-ID: <1649606681.11.0.252197735391.issue485602@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35592 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485602> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487308] Tkinter class links broken/missing Message-ID: <1649606682.28.0.728482613969.issue487308@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35628 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487308> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487738] weaklist Message-ID: <1649606682.92.0.2637197566.issue487738@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35642 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487738> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486713] 2.2b2 IDLE on W2k does not load Message-ID: <1649606681.98.0.951212423182.issue486713@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35618 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486713> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue487929] minidom.appendChild buggy Message-ID: <1649606683.13.0.968787937343.issue487929@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35647 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487929> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485789] webbrowser.py: os.pathsep instead of : Message-ID: <1649606681.23.0.794146308558.issue485789@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35598 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485789> _______________________________________ 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: [issue226034] xml.sax.handler.ErrorHandler not documented Message-ID: <1649606559.39.0.927279239656.issue226034@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33607 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226034> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488387] PyErr_Format result type Message-ID: <1649606683.23.0.296158313414.issue488387@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35651 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488387> _______________________________________ 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: [issue400521] simple 64-bit fixes in Modules/ dir Message-ID: <1649606577.48.0.285274869107.issue400521@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400521> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488477] Reference counting bugs Message-ID: <1649606683.32.0.281826541542.issue488477@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35654 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488477> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue484977] memory leaks with new style classes Message-ID: <1649606680.13.0.245419783516.issue484977@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35572 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484977> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488264] Generators should be in the document Message-ID: <1649606683.21.0.925318218402.issue488264@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35650 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488264> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488452] Webbrowser should use IC on Mac OS X Message-ID: <1649606683.29.0.447147928233.issue488452@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35653 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488452> _______________________________________ 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: [issue400620] atexit module (code, tests and docs) Message-ID: <1649606577.87.0.853210497649.issue400620@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400620> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488514] -Qnew needs work Message-ID: <1649606683.49.0.772468334898.issue488514@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35657 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488514> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488894] bad message for non-string getattr Message-ID: <1649606683.63.0.02946321117.issue488894@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35661 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488894> _______________________________________ 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: [issue400664] Fix for bug no. 48 (Annoyance in ftpmirror.py script) Message-ID: <1649606578.57.0.618211327374.issue400664@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400664> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489052] define NDEBUG for release builds Message-ID: <1649606683.64.0.0525474079418.issue489052@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35662 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489052> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488749] MacOS 8.1 support in IDE, W Message-ID: <1649606683.59.0.330578897399.issue488749@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35660 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488749> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489158] Parser fails with TypeError Message-ID: <1649606683.72.0.658990644143.issue489158@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35665 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489158> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489673] memory leak in test_symtable Message-ID: <1649606684.1.0.777399174238.issue489673@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35677 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489673> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488687] UMR when assign to __debug__ Message-ID: <1649606683.52.0.294209516115.issue488687@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35658 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488687> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489472] pprint produces unreadable dict output Message-ID: <1649606683.87.0.309462139443.issue489472@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35669 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489472> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487736] test_weaklist Message-ID: <1649606682.9.0.645795827988.issue487736@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35641 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487736> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489388] configure.in patch for OSX Message-ID: <1649606683.85.0.299639298473.issue489388@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35668 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489388> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485139] mem leak in interpreter from syntax err Message-ID: <1649606680.34.0.508019493403.issue485139@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35577 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485139> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue489672] memory leak in test_sre Message-ID: <1649606684.06.0.42637962026.issue489672@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35676 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489672> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485175] buffer overflow in traceback.c Message-ID: <1649606680.92.0.309626718731.issue485175@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35584 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485175> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492345] New-style class with only classic bases Message-ID: <1649606685.69.0.97264906063.issue492345@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35729 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492345> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487735] WeakList Message-ID: <1649606682.87.0.529468131498.issue487735@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35640 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487735> _______________________________________ 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: [issue400778] cgensupport: ANSI-fication (compiles fine, but UNTESTED) Message-ID: <1649606580.5.0.702266048774.issue400778@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400778> _______________________________________ 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: [issue400733] Typos Message-ID: <1649606579.74.0.289783669736.issue400733@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400733> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492465] mkcwproject: custom __initialize routine Message-ID: <1649606685.84.0.759635506133.issue492465@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35733 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492465> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491108] 2.2b2 build fail under Cygwin Message-ID: <1649606685.06.0.606089402841.issue491108@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35709 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491108> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492496] distutils, shared libraries and Mac OS X Message-ID: <1649606685.88.0.866367553405.issue492496@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35734 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492496> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492619] __del__ docs need update Message-ID: <1649606685.93.0.318807973547.issue492619@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35735 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492619> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491246] problem with imports in an if-statement Message-ID: <1649606685.11.0.877919296847.issue491246@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35711 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491246> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486434] Compiler complaints in posixmodule.c Message-ID: <1649606681.67.0.457218689428.issue486434@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35610 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486434> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492743] time() returns a negative value Message-ID: <1649606685.99.0.647111878032.issue492743@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35737 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492743> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492665] mac support broken? Message-ID: <1649606685.96.0.364322704446.issue492665@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35736 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492665> _______________________________________ 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: [issue400775] binascii: ANSI-fication Message-ID: <1649606580.43.0.770193745506.issue400775@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400775> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486360] Support for page & shortcut icons Message-ID: <1649606681.62.0.695151492473.issue486360@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35608 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486360> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493243] ext call doco warts Message-ID: <1649606686.07.0.138571979973.issue493243@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35739 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493243> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493415] "Type Methods" section cut off Message-ID: <1649606686.15.0.237957559793.issue493415@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35741 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493415> _______________________________________ 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: [issue400698] small fixes for GC Message-ID: <1649606579.21.0.196985469228.issue400698@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400698> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493452] docstrings for staticmethod/classmethod Message-ID: <1649606686.2.0.693465859298.issue493452@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35742 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493452> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493462] Attribute Search in MRO w/o tp_getattr Message-ID: <1649606686.22.0.161996442106.issue493462@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35743 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493462> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493496] https error Message-ID: <1649606686.29.0.222799402043.issue493496@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35745 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493496> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493493] https error Message-ID: <1649606686.26.0.345194222885.issue493493@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35744 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493493> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493548] delbitset() unused Message-ID: <1649606686.35.0.917627571759.issue493548@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35747 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493548> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490026] Namespace selection for rlcompleter Message-ID: <1649606684.27.0.866555568826.issue490026@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35683 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490026> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493561] incorrect format string descrobject.c Message-ID: <1649606686.37.0.937602576507.issue493561@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35748 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493561> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490823] str.decode() missing. Message-ID: <1649606684.84.0.281198956997.issue490823@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35702 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490823> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493700] Installing Python2.2b2 compileall hangs Message-ID: <1649606686.5.0.255990891388.issue493700@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35751 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493700> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493739] 2 Bugfixes for 2.2c1 (RISC OS specific) Message-ID: <1649606686.54.0.458852370974.issue493739@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35752 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493739> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493815] IRIX 6.5 bus error Message-ID: <1649606686.59.0.411626950431.issue493815@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35753 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493815> _______________________________________ 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: [issue210589] build on NeXTStep Message-ID: <1649606583.86.0.735419063513.issue210589@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210589> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue495693] urllib doesn't support passive FTP Message-ID: <1649606689.03.0.886243000255.issue495693@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35810 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495693> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue494904] Cannot pickle a class with a metaclass Message-ID: <1649606688.15.0.941894650143.issue494904@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35791 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494904> _______________________________________ 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: [issue400912] modified \x behaviour for unicode strings Message-ID: <1649606582.66.0.642635261961.issue400912@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400912> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue495695] webbrowser.py: selection of browser Message-ID: <1649606689.08.0.446623383433.issue495695@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35811 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495695> _______________________________________ 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: [issue210608] TCP_NODELAY not found in socketmodule (PR#182) Message-ID: <1649606584.29.0.45209861983.issue210608@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210608> _______________________________________ 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: [issue400809] Modules/resource.c: ANSI-fication Message-ID: <1649606581.2.0.307189937573.issue400809@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400809> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue495896] socket.fromfd not available in Windows Message-ID: <1649606689.19.0.650839582584.issue495896@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35813 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495896> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue494047] removes 64-bit ?: to cope on plan9 Message-ID: <1649606686.97.0.459145181705.issue494047@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35762 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494047> _______________________________________ 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: [issue210612] anydbm can't handle dumbdbm (PR#200) Message-ID: <1649606584.42.0.996924424597.issue210612@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210612> _______________________________________ 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: [issue210610] .pyc writing/reading race condition (PR#189) Message-ID: <1649606584.37.0.379133103895.issue210610@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210610> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496084] unicode, tkfiledialog.py Message-ID: <1649606689.3.0.233365728654.issue496084@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35815 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496084> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493826] Finder Tool Move not working on MOSX Message-ID: <1649606686.63.0.395828807162.issue493826@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35754 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493826> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496096] Mach-O MacPython IDE! Message-ID: <1649606689.34.0.359333838404.issue496096@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35816 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496096> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue494034] a smarter rfc822.dump_address_pair() Message-ID: <1649606686.89.0.937810069615.issue494034@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35760 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494034> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496104] FP behaviour changed from 2.1.1 Message-ID: <1649606689.38.0.862797822139.issue496104@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35817 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496104> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491420] upgrade test to improve coverage descr Message-ID: <1649606685.36.0.893563696437.issue491420@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35719 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491420> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496154] Typos in dynload_beos.c Message-ID: <1649606689.42.0.508429706284.issue496154@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35818 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496154> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496215] Unclosed verbatim environment Message-ID: <1649606689.49.0.831472346253.issue496215@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35820 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496215> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496549] -Qnew and in-place division "/=" Message-ID: <1649606689.53.0.534929632505.issue496549@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35822 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496549> _______________________________________ 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: [issue210604] Ranlib is obsolete - more a FYI than a bug (PR#160) Message-ID: <1649606584.17.0.0963342440815.issue210604@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210604> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496796] update modulator to use re, gen ansi c Message-ID: <1649606689.58.0.138049074153.issue496796@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35824 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496796> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494668] PUSH() should assert-fail on overflow Message-ID: <1649606687.65.0.133407187551.issue494668@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35778 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494668> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496240] __slots__ does not iterate over a string Message-ID: <1649606689.51.0.062012649483.issue496240@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35821 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496240> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495358] rfc822.AddressList and "<>" address Message-ID: <1649606688.4.0.378550404091.issue495358@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35797 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495358> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496873] structseqs unpicklable Message-ID: <1649606689.6.0.3932440408.issue496873@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35825 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496873> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496922] Integrate "What's new in Python x.y" Message-ID: <1649606689.72.0.68206688025.issue496922@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35828 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496922> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497097] location of mbox Message-ID: <1649606689.83.0.538540381292.issue497097@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35832 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497097> _______________________________________ 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: [issue210642] freeze with "-s service" and "-m" (PR#315) Message-ID: <1649606585.4.0.753864909557.issue210642@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210642> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497005] __cmp__ method returns unexpected result Message-ID: <1649606689.76.0.847668179098.issue497005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35829 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497005> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491351] Changes static strcpy to memcpy Message-ID: <1649606685.2.0.304722336147.issue491351@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35714 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491351> _______________________________________ 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: [issue210629] Tkinter Image names may be reused (PR#28) Message-ID: <1649606584.94.0.397979888592.issue210629@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210629> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497042] 2.2 is missing Misc/Makefile.pre.in? Message-ID: <1649606689.78.0.668544017076.issue497042@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35830 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497042> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495609] python doesn't define SIG* Message-ID: <1649606688.77.0.776070950143.issue495609@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35804 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495609> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493183] FreeBSD/Python 2.1.1 Segmentation fault Message-ID: <1649606686.03.0.807773094791.issue493183@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35738 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493183> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497098] build support for GNU/Hurd Message-ID: <1649606689.86.0.428807909855.issue497098@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35833 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497098> _______________________________________ 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: [issue210598] Fwd: Debian Bug#46993: py_compile.compile() won't compile files with CR+LF line endings (PR#101) Message-ID: <1649606583.98.0.889058903481.issue210598@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210598> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497109] 'lambda' documentation in strange place Message-ID: <1649606689.94.0.135316914847.issue497109@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35836 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497109> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497102] building a shared python library Message-ID: <1649606689.91.0.404218104943.issue497102@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35835 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497102> _______________________________________ 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: [issue210651] Python SIGSEGV with re.compile (PR#343) Message-ID: <1649606585.72.0.261783783096.issue210651@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210651> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497099] GNU/Hurd doesn't have large file support Message-ID: <1649606689.89.0.888732460968.issue497099@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35834 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497099> _______________________________________ 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: [issue210661] cgi parsing of query strings (PR#356) Message-ID: <1649606585.97.0.89992154009.issue210661@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210661> _______________________________________ 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: [issue210660] IDLE-0.5 ctrl-F5 (PR#355) Message-ID: <1649606585.92.0.0774469210686.issue210660@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210660> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493628] import not pythonic in 2.1.1 Message-ID: <1649606686.41.0.132572681024.issue493628@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35749 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493628> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496882] Echo readline() reply to stdout Message-ID: <1649606689.65.0.268859594832.issue496882@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35826 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496882> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497487] support comparison of complex #s in fcmp Message-ID: <1649606690.19.0.58325362749.issue497487@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35844 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497487> _______________________________________ 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: [issue210673] os.abspatth() error due to win32api.GetFullPathName (PR#380) Message-ID: <1649606586.4.0.556730040027.issue210673@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210673> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497697] building shared modules Message-ID: <1649606690.24.0.0237038349696.issue497697@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35846 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497697> _______________________________________ 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: [issue210664] PRIVATE: Bug in re module (PR#36) Message-ID: <1649606586.05.0.930108625988.issue210664@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210664> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497736] smtplib.py SMTP EHLO/HELO correct Message-ID: <1649606690.27.0.53580407705.issue497736@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35847 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497736> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue495978] It's the future for generators Message-ID: <1649606689.22.0.0244742759929.issue495978@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35814 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495978> _______________________________________ 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: [issue210639] test_fork1 hangs with 1.6a2 on Linux (PR#296) Message-ID: <1649606585.31.0.423432294452.issue210639@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210639> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497854] Short-cuts missing for All Users Message-ID: <1649606690.34.0.151307847442.issue497854@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35849 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497854> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497951] Typo in rfc822 library docs. Message-ID: <1649606690.37.0.850514748125.issue497951@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35850 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497951> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498109] fileobject truncate support for win32 Message-ID: <1649606690.4.0.663772488228.issue498109@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35851 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498109> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497426] can't deepcopy recursive new objects Message-ID: <1649606690.17.0.021697077197.issue497426@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35843 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497426> _______________________________________ 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: [issue210641] KeyboardInterrupt while waiting for sys.ps2 input kills interpreter (PR#309) Message-ID: <1649606585.36.0.778543738423.issue210641@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210641> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497695] ext.doc uses deprecated(?) build proc. Message-ID: <1649606690.21.0.726300137718.issue497695@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35845 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497695> _______________________________________ 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: [issue210682] pdb can only step when at botframe (PR#4) Message-ID: <1649606586.75.0.445370119101.issue210682@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210682> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498572] smtplib.py AUTH mechanism Message-ID: <1649606690.53.0.261319862277.issue498572@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35854 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498572> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498124] base64 mishandles binary on Win32 Message-ID: <1649606690.45.0.833857315842.issue498124@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35852 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498124> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498607] PyObject_GetIter not documented Message-ID: <1649606690.56.0.701253913868.issue498607@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35855 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498607> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498823] Misc/Makefile.pre.in missing Message-ID: <1649606690.59.0.659140359699.issue498823@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35856 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498823> _______________________________________ 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: [issue210693] 3 failed tests after install (PR#119) Message-ID: <1649606587.15.0.130453923368.issue210693@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210693> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498149] httplib.py screws up on 100 response Message-ID: <1649606690.5.0.185202509591.issue498149@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35853 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498149> _______________________________________ 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: [issue210701] undefined symbol in custom interpeter (PR#191) Message-ID: <1649606587.42.0.0735546646426.issue210701@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210701> _______________________________________ 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: [issue210703] select with dec-threads core dumps (PR#35) Message-ID: <1649606587.49.0.199317578883.issue210703@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210703> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499169] imaplib.Time2Internaldate is broken Message-ID: <1649606690.75.0.617289615194.issue499169@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35861 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499169> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499062] Minor typo in test_generators.py Message-ID: <1649606690.72.0.722473254307.issue499062@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35860 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499062> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499529] email.Utils.msgid() Message-ID: <1649606690.83.0.142387846403.issue499529@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35864 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499529> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499656] OPT envar not propagated to Makefile Message-ID: <1649606690.85.0.491075594442.issue499656@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35865 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499656> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499708] Int(long) causes Integer Overflow Message-ID: <1649606690.88.0.511791741497.issue499708@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35866 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499708> _______________________________________ 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: [issue210683] can't compile with SSL support on WinNT (PR#403) Message-ID: <1649606586.82.0.630013775061.issue210683@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210683> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499505] Tiny bug in lib doc 16.1.2.2 Message-ID: <1649606690.77.0.791880843211.issue499505@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35862 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499505> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498855] add POST support to webbrowser module Message-ID: <1649606690.66.0.722217417261.issue498855@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35858 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498855> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499939] Fix for buggy https servers. Message-ID: <1649606690.98.0.391565580133.issue499939@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35868 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499939> _______________________________________ 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: [issue210699] redirected stdout under Windows NT (PR#165) Message-ID: <1649606587.36.0.551984916794.issue210699@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210699> _______________________________________ 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: [issue210745] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.03.0.961066586826.issue210745@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210745> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500115] "Extending" uses Makefile.pre.in Message-ID: <1649606691.12.0.0421521445444.issue500115@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35873 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500115> _______________________________________ 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: [issue210706] gcc error msg, 1.5.2, Slackware + threads (PR#44) Message-ID: <1649606587.57.0.746359959924.issue210706@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210706> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500401] Security fix: webbrowser.py Message-ID: <1649606691.24.0.153847216007.issue500401@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35876 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500401> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500447] native win32 threading primitives Message-ID: <1649606691.29.0.801929759155.issue500447@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35878 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500447> _______________________________________ 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: [issue210708] bug in time.sleep (PR#64) Message-ID: <1649606587.62.0.562457268157.issue210708@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210708> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500508] problems printing multipart MIME msg Message-ID: <1649606691.33.0.0349425791979.issue500508@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35879 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500508> _______________________________________ 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: [issue210806] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.37.0.832997104808.issue210806@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210806> _______________________________________ 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: [issue210792] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.16.0.263187479137.issue210792@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210792> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495086] dict.popitem(key=None) Message-ID: <1649606688.23.0.0314481728848.issue495086@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35793 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495086> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500441] PyObject_DelItemString missing Message-ID: <1649606691.27.0.497141291831.issue500441@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35877 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500441> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500078] Add built-in generator factory function Message-ID: <1649606691.1.0.255077535829.issue500078@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35872 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500078> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500626] round (,) errors? Message-ID: <1649606691.42.0.669670680181.issue500626@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35882 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500626> _______________________________________ 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: [issue210823] Tkinter missing button state symbols (PR#132) Message-ID: <1649606588.63.0.263509311444.issue210823@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210823> _______________________________________ 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: [issue210826] WebBugRptBroken & " Python mymalloc.h; not C++ compatible" (PR#136) Message-ID: <1649606588.68.0.160150793223.issue210826@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210826> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500704] Tutorial does not describe nested scope Message-ID: <1649606691.52.0.776003425619.issue500704@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35884 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500704> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500705] os.listdir("") bug on Windows Message-ID: <1649606691.55.0.825350692593.issue500705@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35885 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500705> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500981] thread_nt.h weird prototype Message-ID: <1649606691.62.0.289659543233.issue500981@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35887 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500981> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501022] Python/Tkinter crashes Message-ID: <1649606691.65.0.90764318997.issue501022@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35888 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501022> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501164] 2.2 on linux SEGV sometimes Message-ID: <1649606691.67.0.868183841376.issue501164@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35889 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501164> _______________________________________ 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: [issue210834] urlparse and HTTP parameters (PR#205) Message-ID: <1649606588.88.0.601650295823.issue210834@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210834> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501288] problems with divising Message-ID: <1649606691.73.0.159685209584.issue501288@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35891 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501288> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495601] Documentation strings should end with a Message-ID: <1649606688.7.0.272861164204.issue495601@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35802 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495601> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500595] gettext.install behaves strange Message-ID: <1649606691.4.0.874344226086.issue500595@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35881 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500595> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495680] include TCP_CORK in socket module Message-ID: <1649606688.89.0.468356249333.issue495680@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35807 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495680> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501591] dir() doc is old Message-ID: <1649606691.76.0.481053382336.issue501591@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35892 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501591> _______________________________________ 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: [issue210842] dl.RTLD_GLOBAL missing (PR#313) Message-ID: <1649606589.09.0.357506202602.issue210842@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210842> _______________________________________ 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: [issue210804] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.33.0.831804870527.issue210804@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210804> _______________________________________ 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: [issue210837] Tkinter Optionmenu doesn't accept 'font' resource (PR#229) Message-ID: <1649606588.95.0.633009491779.issue210837@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210837> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501264] Metaproperties Message-ID: <1649606691.7.0.30399278373.issue501264@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35890 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501264> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501716] "es#" parser marker leaks memory Message-ID: <1649606691.94.0.865077483768.issue501716@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35896 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501716> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501622] Missing trailing newline should not raise SyntaxError Message-ID: <1649606691.8.0.730830546066.issue501622@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35893 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501622> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501795] pickle/cPickle EOL incompatibility Message-ID: <1649606691.98.0.0489077677522.issue501795@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35897 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501795> _______________________________________ 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: [issue210743] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606587.99.0.532450475502.issue210743@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210743> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501623] traceback problem Message-ID: <1649606691.86.0.428994242046.issue501623@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35894 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501623> _______________________________________ 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: [issue210856] Page fault in module KERNEL32.DLL (PR#186) Message-ID: <1649606589.39.0.489065508051.issue210856@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210856> _______________________________________ 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: [issue210849] Fwd: Debian Bug#42318: urllib.py has problems with malformed proxy env. variables (PR#59) Message-ID: <1649606589.24.0.862305431447.issue210849@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210849> _______________________________________ 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: [issue210836] configure script fails with cross-compiler (PR#228) Message-ID: <1649606588.93.0.980437457874.issue210836@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210836> _______________________________________ 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: [issue210858] libreadline problems (PR#272) Message-ID: <1649606589.46.0.0864428305041.issue210858@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210858> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502085] pickle problems (with Boost.Python) Message-ID: <1649606692.19.0.332808976179.issue502085@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35903 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502085> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue501830] cPickle cannot pickle time.localtime tup Message-ID: <1649606692.03.0.242666169486.issue501830@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35898 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501830> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502023] Correct LFS compilation documentation Message-ID: <1649606692.1.0.58655901164.issue502023@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35900 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502023> _______________________________________ 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: [issue210798] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.26.0.1291041348.issue210798@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210798> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502080] BaseHTTPServer send_error bug fix Message-ID: <1649606692.16.0.861179298776.issue502080@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35902 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502080> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502205] Fix webbrowser running on MachoPython Message-ID: <1649606692.24.0.18561842738.issue502205@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35904 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502205> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502503] pickle interns strings Message-ID: <1649606692.44.0.675499935564.issue502503@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35908 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502503> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498915] PyMapping_DelItemString doesn't exists Message-ID: <1649606690.68.0.6358491739.issue498915@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35859 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498915> _______________________________________ 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: [issue210739] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606587.9.0.179623482482.issue210739@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210739> _______________________________________ 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: [issue210911] parser module Message-ID: <1649606589.91.0.315089142797.issue210911@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210911> _______________________________________ 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: [issue210861] time.sleep() and threading (PR#307) Message-ID: <1649606589.54.0.711047061085.issue210861@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210861> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502236] Asynchronous exceptions between threads Message-ID: <1649606692.3.0.796503814003.issue502236@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35905 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502236> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502981] should be able to use "else:" with "for" Message-ID: <1649606692.62.0.967148029589.issue502981@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35911 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502981> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue503031] urllib.py: open_http() host problem Message-ID: <1649606692.64.0.283890728149.issue503031@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35912 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue503031> _______________________________________ 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: [issue401043] Description of what can go wrong in ioctl Message-ID: <1649606589.96.0.705505253699.issue401043@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401043> _______________________________________ 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: [issue210644] bug in PyLong_FromLongLong (PR#324) Message-ID: <1649606585.43.0.339297438255.issue210644@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210644> _______________________________________ 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: [issue210924] support Unicode for Python source code Message-ID: <1649606590.07.0.790297115116.issue210924@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210924> _______________________________________ 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: [issue210944] smtplib doesn't use FQDN Message-ID: <1649606590.12.0.309465440433.issue210944@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210944> _______________________________________ 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: [issue401065] bogus counter for recursive PyObject_Compare() Message-ID: <1649606590.28.0.700158721576.issue401065@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401065> _______________________________________ 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: [issue211162] 1.6b1 test_math.py unconditionally tests math.rint Message-ID: <1649606590.33.0.331793210462.issue211162@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211162> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502255] leading '\xff\xfe' w/ s.encode('utf-16') Message-ID: <1649606692.36.0.609305744958.issue502255@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35906 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502255> _______________________________________ 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: [issue401086] libcalendar.tex extensions (untested; don't have TeX) Message-ID: <1649606590.4.0.432804191935.issue401086@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401086> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue503837] type.__module__ problems (again?) Message-ID: <1649606692.82.0.0647668697838.issue503837@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35917 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue503837> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue503570] Python 2.1.2c1 missing a bugfix Message-ID: <1649606692.75.0.124879514382.issue503570@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35915 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue503570> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue503592] Add method readfile() to class ZipFile Message-ID: <1649606692.78.0.658160954695.issue503592@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35916 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue503592> _______________________________________ 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: [issue211204] 1.6b1 test_winreg tries importing wrong module Message-ID: <1649606590.55.0.56350995988.issue211204@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211204> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502557] hmac module: default to sha, not md5 Message-ID: <1649606692.58.0.149103293018.issue502557@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35910 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502557> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue504152] rfc822 long header continuation broken Message-ID: <1649606692.86.0.749279293005.issue504152@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35918 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504152> _______________________________________ 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: [issue401104] Optional object mem allocator Message-ID: <1649606590.62.0.522795673707.issue401104@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401104> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue504215] Remove PyThread_*_sema() APIs Message-ID: <1649606692.92.0.228931968186.issue504215@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35919 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504215> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500924] _POSIX_THREADS not set in pyconfig.h Message-ID: <1649606691.57.0.480037709551.issue500924@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35886 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500924> _______________________________________ 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: [issue400903] put back _Length functions for binary compatibility Message-ID: <1649606582.58.0.973184030411.issue400903@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400903> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502544] __slots__ undocumented Message-ID: <1649606692.52.0.41068671194.issue502544@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35909 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502544> _______________________________________ 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: [issue401102] dict.setdefault() Message-ID: <1649606590.58.0.985255168393.issue401102@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401102> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504252] More build problems on AIX 4.3 Message-ID: <1649606693.13.0.437763676902.issue504252@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35923 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504252> _______________________________________ 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: [issue401120] add .get() to cgi.FieldStorage and cgi.FormContentDict Message-ID: <1649606590.83.0.0421254418242.issue401120@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401120> _______________________________________ 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: [issue401106] getopt.py extensions (REJECT version) Message-ID: <1649606590.67.0.552298131899.issue401106@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401106> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500002] Fix for #221791 (bad \x escape) Message-ID: <1649606691.02.0.330217685752.issue500002@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35870 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500002> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504259] More build problems on AIX 4.3 Message-ID: <1649606693.17.0.79421251294.issue504259@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35924 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504259> _______________________________________ 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: [issue401121] cosmetic cleanup of cgi.py, using Guido's style conventions Message-ID: <1649606590.88.0.34871380316.issue401121@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401121> _______________________________________ 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: [issue401110] test_getopt.py: new test module Message-ID: <1649606590.77.0.0247662393352.issue401110@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401110> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504291] python 2.2 shelve Message-ID: <1649606693.29.0.962431423035.issue504291@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35927 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504291> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504282] python 2.2 shelve Message-ID: <1649606693.19.0.7593349303.issue504282@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35925 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504282> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504300] python 2.2 shelve Message-ID: <1649606693.32.0.18272722527.issue504300@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35928 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504300> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504343] Unicode docstrings and new style classes Message-ID: <1649606693.39.0.534599836617.issue504343@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35930 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504343> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500136] Update ext build documentation Message-ID: <1649606691.17.0.589786972931.issue500136@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35874 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500136> _______________________________________ 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: [issue401129] add indices() and irange() to built-ins Message-ID: <1649606591.01.0.373062678806.issue401129@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401129> _______________________________________ 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: [issue211486] sys.argv in 1.6b1 Message-ID: <1649606591.1.0.574509429291.issue211486@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211486> _______________________________________ 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: [issue401141] Make 'Grammar' when necessary Message-ID: <1649606591.32.0.572610878773.issue401141@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401141> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504714] hasattr catches only AttributeError Message-ID: <1649606693.49.0.301242401873.issue504714@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35932 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504714> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504611] smtplib - multiple addresses bug Message-ID: <1649606693.45.0.568262332843.issue504611@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35931 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504611> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504305] python 2.2 shelve Message-ID: <1649606693.34.0.778526306976.issue504305@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35929 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504305> _______________________________________ 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: [issue401145] co_flags fix for classes generated by Tools/compile.py Message-ID: <1649606591.46.0.103993601398.issue401145@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401145> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504889] make setup.py less chatty by default Message-ID: <1649606693.66.0.882083102765.issue504889@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35935 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504889> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505490] Improve I/O redirection to embedding app Message-ID: <1649606694.16.0.842299585223.issue505490@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35948 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505490> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505562] Summary: "BuildApplet can destory the source file on Mac OS X" Message-ID: <1649606694.2.0.473184939624.issue505562@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35949 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505562> _______________________________________ 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: [issue401096] enable/disable interface for GC module Message-ID: <1649606590.46.0.713225931893.issue401096@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401096> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505587] Fix hardlink against NavServices Message-ID: <1649606694.23.0.538348810391.issue505587@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35950 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505587> _______________________________________ 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: [issue211858] Python-1.6b1 uses _cursesmodule.so Message-ID: <1649606592.28.0.731698971866.issue211858@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211858> _______________________________________ 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: [issue210742] Re: Date problem unresolved [DIN 2646] (fwd) (PR#109) Message-ID: <1649606587.97.0.440189299514.issue210742@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210742> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504880] Optional argument for dict.popitem() Message-ID: <1649606693.64.0.992633595498.issue504880@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35934 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504880> _______________________________________ 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: [issue401196] IPv6 patch against 2.0 CVS tree, as of 20010624 Message-ID: <1649606592.53.0.205972517974.issue401196@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401196> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue505375] Make doc strings optional Message-ID: <1649606693.87.0.579245698747.issue505375@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35941 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505375> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue503202] backward compat. on calendar.py Message-ID: <1649606692.71.0.742005932932.issue503202@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35914 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue503202> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505628] Windows: Bad instructions in readme file. Message-ID: <1649606694.25.0.959175011233.issue505628@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35951 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505628> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505826] demo warning for expressions w/no effect Message-ID: <1649606694.37.0.944888713142.issue505826@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35954 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505826> _______________________________________ 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: [issue401187] Patch for ftplib to support REST Message-ID: <1649606592.45.0.624634405922.issue401187@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401187> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue505152] pprint should (optionally) use str Message-ID: <1649606693.82.0.457599929417.issue505152@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35939 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505152> _______________________________________ 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: [issue401207] BeOS: installing of linker script Message-ID: <1649606592.76.0.878980300899.issue401207@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401207> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505997] string.split docs are inconsistent Message-ID: <1649606694.47.0.650302886738.issue505997@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35956 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505997> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue506100] commands.getstatusoutput(): cmd.exe support Message-ID: <1649606694.53.0.820495535182.issue506100@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35957 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue506100> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue506349] Zope crashing with signal 11 Message-ID: <1649606694.59.0.450903457997.issue506349@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35958 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue506349> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505488] python-mode.el sets TMPDIR to /usr/tmp Message-ID: <1649606694.12.0.780186670658.issue505488@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35947 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505488> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505846] pyport.h, Wince and errno getter/setter Message-ID: <1649606694.4.0.320569785918.issue505846@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35955 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505846> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue506545] Extending and Embedding Section 3 rework Message-ID: <1649606694.67.0.871742737739.issue506545@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35960 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue506545> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue506436] GETCONST/GETNAME/GETNAMEV speedup Message-ID: <1649606694.64.0.935800088102.issue506436@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35959 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue506436> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505464] fix (??) bug in `gc.get_referrers()' Message-ID: <1649606694.09.0.576045460116.issue505464@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35946 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505464> _______________________________________ 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: [issue401137] Add raw packet support to socketmodule.c Message-ID: <1649606591.2.0.12571813802.issue401137@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401137> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue506647] random.cunifvariate() incorrect? Message-ID: <1649606694.76.0.841001345055.issue506647@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35962 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue506647> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue505417] Dynamic loading bug on HPUX Message-ID: <1649606693.93.0.0940731708817.issue505417@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35942 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505417> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue506679] Core dump subclassing long Message-ID: <1649606694.84.0.147878284108.issue506679@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35963 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue506679> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue498828] SyntaxError reports wrong module name Message-ID: <1649606690.63.0.846562672312.issue498828@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35857 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue498828> _______________________________________ 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: [issue401234] Allow all assignment expressions after 'import something as' Message-ID: <1649606593.32.0.998715651396.issue401234@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401234> _______________________________________ 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: [issue401238] PyOS_CheckStack for Windows (MSVC) Message-ID: <1649606593.38.0.459573766555.issue401238@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401238> _______________________________________ 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: [issue211319] Autoconfig breakdown with gnu libc-2.1.3 Message-ID: <1649606590.79.0.52116957155.issue211319@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211319> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue505315] free vars sometimes show up in locals() Message-ID: <1649606693.84.0.95876407097.issue505315@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35940 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505315> _______________________________________ 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: [issue401215] extend 'import x as y' syntax to 'import x as y.z' Message-ID: <1649606592.9.0.202818889566.issue401215@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401215> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504943] call warnings.warn with Warning instance Message-ID: <1649606693.7.0.180529888632.issue504943@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35936 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504943> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue507394] non-string __doc__/new style class prob. Message-ID: <1649606695.01.0.900781214195.issue507394@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35967 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue507394> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505705] Remove eval in pickle and cPickle Message-ID: <1649606694.29.0.541572542914.issue505705@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35952 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505705> _______________________________________ 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: [issue212521] re match becomes exponentially slow on larger inputs Message-ID: <1649606593.73.0.264341677078.issue212521@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212521> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue503091] new.instancemethod fails for new classes Message-ID: <1649606692.68.0.587957381203.issue503091@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35913 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue503091> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue507477] Py_CompileString and tracebacks Message-ID: <1649606695.09.0.75691103972.issue507477@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35969 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue507477> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue506741] ugly floats using str() on tuples,lists Message-ID: <1649606694.88.0.140604479215.issue506741@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35964 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue506741> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508038] can't say "char digit": digit is a type! Message-ID: <1649606695.22.0.752700010003.issue508038@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35972 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508038> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508100] telnetlib in debug mode Message-ID: <1649606695.26.0.338128890989.issue508100@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35973 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508100> _______________________________________ 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: [issue401134] for 1.6: removing rint() occurences from config* Message-ID: <1649606591.13.0.0195570624196.issue401134@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401134> _______________________________________ 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: [issue212558] dictionary lookup does not check exceptions Message-ID: <1649606593.79.0.207692465144.issue212558@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212558> _______________________________________ 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: [issue401272] Allow bsddbmodule.c to compile with libdb 2.x w/o editing Message-ID: <1649606593.83.0.460308344968.issue401272@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401272> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue505028] Super method search quirk Message-ID: <1649606693.72.0.539849052269.issue505028@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35937 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505028> _______________________________________ 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: [issue401275] Issue a warning if Setup.in is newer than Setup Message-ID: <1649606593.92.0.75133366212.issue401275@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401275> _______________________________________ 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: [issue401278] Enable --program-suffix option in configure for Cygwin et. a Message-ID: <1649606593.98.0.425470659596.issue401278@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401278> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508157] urllib.urlopen results.readline is slow Message-ID: <1649606695.3.0.444725152015.issue508157@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35974 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508157> _______________________________________ 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: [issue401299] add missing test for strings in file_writelines Message-ID: <1649606594.14.0.78444768702.issue401299@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401299> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508665] Improvement of cgi.parse_qsl function Message-ID: <1649606695.5.0.481762412398.issue508665@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35979 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508665> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508437] urllib.urlopen results.readline is slow Message-ID: <1649606695.45.0.906272238713.issue508437@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35977 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508437> _______________________________________ 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: [issue401309] Specialization of dictionaries for strings. Message-ID: <1649606594.22.0.166120573097.issue401309@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401309> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508476] exec does not pass on locals/globals Message-ID: <1649606695.47.0.972243682491.issue508476@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35978 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508476> _______________________________________ 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: [issue210866] re group self-reference weird behavior (PR#2) Message-ID: <1649606589.7.0.0777819728048.issue210866@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210866> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue501713] compileall.py -d errors Message-ID: <1649606691.9.0.692612311263.issue501713@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35895 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501713> _______________________________________ 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: [issue401313] New builtin function doc Message-ID: <1649606594.37.0.568461022871.issue401313@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401313> _______________________________________ 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: [issue401315] "import mod.submod as s" per Guido's wishes. Message-ID: <1649606594.43.0.388717155135.issue401315@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401315> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue509074] Need paths for Rez/DeRez in OSX Makefile Message-ID: <1649606695.66.0.401859003519.issue509074@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35984 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue509074> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue509215] formatting error api/iterator.html Message-ID: <1649606695.71.0.807328735677.issue509215@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35986 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue509215> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue509117] encoding error when joining path Message-ID: <1649606695.68.0.550360011031.issue509117@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35985 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue509117> _______________________________________ 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: [issue212944] Partially initialized cPickle dumps core Message-ID: <1649606594.57.0.734534531773.issue212944@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212944> _______________________________________ 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: [issue401339] posixfile.py: add support for FreeBSD-[45] Message-ID: <1649606594.69.0.876206382872.issue401339@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401339> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508944] socket-module SSL is broken Message-ID: <1649606695.63.0.486310679691.issue508944@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35983 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508944> _______________________________________ 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: [issue212877] re behaves differently in 1.6 and 2.0 than 1.52 Message-ID: <1649606594.5.0.218245891774.issue212877@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212877> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502415] optimize attribute lookups Message-ID: <1649606692.4.0.83573203533.issue502415@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35907 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502415> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue509281] cheeseshop example shows wrong output Message-ID: <1649606695.73.0.469655229755.issue509281@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35987 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue509281> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue509288] package_dir paths not converted Message-ID: <1649606695.76.0.581570067528.issue509288@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35988 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue509288> _______________________________________ 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: [issue401345] Remove obsolete --with(out)-readline option Message-ID: <1649606594.83.0.482355934224.issue401345@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401345> _______________________________________ 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: [issue212573] test_re crashes when compiled with -DPy_DEBUG Message-ID: <1649606593.81.0.0618489849428.issue212573@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212573> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508700] import of C-extension causes crash Message-ID: <1649606695.53.0.0135369534253.issue508700@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35980 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508700> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue510186] clean doesn't Message-ID: <1649606695.88.0.0321920642279.issue510186@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35992 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510186> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue509975] make python-mode play nice with gdb Message-ID: <1649606695.85.0.943803326995.issue509975@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35991 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue509975> _______________________________________ 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: [issue401341] tempfile.py: add /var/tmp Message-ID: <1649606594.74.0.840723071306.issue401341@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401341> _______________________________________ 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: [issue213106] distutils' msvccompiler.py has small C++ defects Message-ID: <1649606594.98.0.429481191467.issue213106@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213106> _______________________________________ 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: [issue401352] PyOS_StackCheck for Unix Message-ID: <1649606594.92.0.0325449108162.issue401352@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401352> _______________________________________ 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: [issue401350] Fix SMTPlib for large messages Message-ID: <1649606594.88.0.870155826886.issue401350@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401350> _______________________________________ 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: [issue212634] urllib doesn't look at self.version as documented Message-ID: <1649606593.9.0.527341263796.issue212634@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212634> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508730] CGIHTTPServer execfile should save cwd Message-ID: <1649606695.55.0.448348000252.issue508730@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35981 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508730> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue510388] Enhance xrange() Message-ID: <1649606696.03.0.118945427032.issue510388@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35997 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510388> _______________________________________ 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: [issue213243] missing hyphen in command-line help Message-ID: <1649606595.18.0.593451904154.issue213243@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213243> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue510644] test_curses segfaults Message-ID: <1649606696.08.0.311316003648.issue510644@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35999 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510644> _______________________________________ 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: [issue401295] New tool msgfmt.py Message-ID: <1649606594.08.0.0338931825111.issue401295@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401295> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue510373] Make generator factory a type name Message-ID: <1649606695.97.0.777022984772.issue510373@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35995 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510373> _______________________________________ 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: [issue401362] fix GC debugging output w.r.t. exceptions Message-ID: <1649606595.06.0.079552631104.issue401362@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401362> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue510695] cycle profiler for VM opcodes Message-ID: <1649606696.1.0.238354077263.issue510695@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36000 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510695> _______________________________________ 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: [issue213254] pre/sre difference breaks pyclbr Message-ID: <1649606595.21.0.71960715341.issue213254@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213254> _______________________________________ 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: [issue401229] Optional memory profiler Message-ID: <1649606593.2.0.925019134246.issue401229@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401229> _______________________________________ 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: [issue212123] bdist_wininst crashes with no long_description Message-ID: <1649606592.7.0.735882900572.issue212123@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212123> _______________________________________ 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: [issue401387] Documenting __contains__ special method Message-ID: <1649606595.26.0.791480796519.issue401387@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401387> _______________________________________ 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: [issue401388] Backward compatibility hook Message-ID: <1649606595.3.0.252066125353.issue401388@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401388> _______________________________________ 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: [issue401389] Minor fix in documentation of code module Message-ID: <1649606595.33.0.885806985144.issue401389@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401389> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511073] urllib problems Message-ID: <1649606696.26.0.208470154274.issue511073@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36005 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511073> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue510868] Solaris 2.7 make chokes. Message-ID: <1649606696.17.0.47529148297.issue510868@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36002 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510868> _______________________________________ 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: [issue213401] grant Message-ID: <1649606595.48.0.677984621594.issue213401@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213401> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue507262] GNU --option syntax not supported Message-ID: <1649606694.96.0.662646858957.issue507262@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35966 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue507262> _______________________________________ 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: [issue212628] many extensions (wrongly?) use Py_FatalError Message-ID: <1649606593.87.0.845597523929.issue212628@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212628> _______________________________________ 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: [issue401412] add gc.DEBUG_SAVEALL option, gc_str fix Message-ID: <1649606595.57.0.734837183711.issue401412@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401412> _______________________________________ 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: [issue401394] lookdict optimizations Message-ID: <1649606595.43.0.858525540106.issue401394@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401394> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue510384] Separate Scope for List Comprehensions Message-ID: <1649606696.0.0.333730083119.issue510384@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35996 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510384> _______________________________________ 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: [issue213463] Inconsistent handling of arg -/-- by getopt.getopt() ? Message-ID: <1649606595.54.0.405519855788.issue213463@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213463> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue510288] Emacs auto-detect J/Python mode Message-ID: <1649606695.94.0.915061925704.issue510288@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35994 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510288> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511449] PyBuffer_New double alignment bugfix Message-ID: <1649606696.4.0.494436868422.issue511449@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36010 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511449> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511786] urllib2.py loses headers on redirect Message-ID: <1649606696.53.0.31067461363.issue511786@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36014 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511786> _______________________________________ 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: [issue401424] Fix for 110629: guarantee unique image names Message-ID: <1649606595.73.0.845374158414.issue401424@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401424> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511876] UserList.__cmp__() raises RuntimeError Message-ID: <1649606696.55.0.950679881438.issue511876@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36015 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511876> _______________________________________ 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: [issue213727] Tkinter: _substitute call of getint(D) fails Message-ID: <1649606595.95.0.16028221185.issue213727@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213727> _______________________________________ 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: [issue401437] Fix for 110675: GNU pth support Message-ID: <1649606596.03.0.658022319801.issue401437@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401437> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512256] ceval micro optimizations Message-ID: <1649606696.69.0.556567659533.issue512256@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36020 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512256> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512466] Script to move faqwiz entries. Message-ID: <1649606696.74.0.638069481323.issue512466@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36022 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512466> _______________________________________ 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: [issue213779] test_gc coredump on Alpha Message-ID: <1649606596.18.0.952610813052.issue213779@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213779> _______________________________________ 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: [issue401310] update help for cmd.py library module Message-ID: <1649606594.25.0.290519067575.issue401310@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401310> _______________________________________ 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: [issue213788] NT 2.0b1 Doc/modindex.html is almost empty Message-ID: <1649606596.31.0.0144269985869.issue213788@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213788> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512981] readline /dev/tty problem Message-ID: <1649606696.92.0.727093769729.issue512981@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36029 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512981> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue513033] unsafe call to PyThreadState_Swap Message-ID: <1649606696.97.0.363483884946.issue513033@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36030 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513033> _______________________________________ 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: [issue401391] Implemented UserList.__contains__ Message-ID: <1649606595.39.0.638831666014.issue401391@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401391> _______________________________________ 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: [issue213812] Serious garbage collection problems with 2.0b1 Message-ID: <1649606596.67.0.823523021627.issue213812@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213812> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue507442] Thread-Support don't work with HP-UX 11 Message-ID: <1649606695.04.0.645540019188.issue507442@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35968 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue507442> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500698] Taint a la Perl? Message-ID: <1649606691.44.0.780708524523.issue500698@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35883 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500698> _______________________________________ 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: [issue213850] posixfile __del__ method is wrong Message-ID: <1649606596.78.0.892830626206.issue213850@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213850> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue510218] strftime() gets timezone wrong Message-ID: <1649606695.92.0.144378325296.issue510218@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35993 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510218> _______________________________________ 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: [issue401418] More augmented assignment docs Message-ID: <1649606595.63.0.965656335503.issue401418@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401418> _______________________________________ 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: [issue213862] 2.0b1 lib.pdf, problems with bookmark titles Message-ID: <1649606596.81.0.231518842092.issue213862@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213862> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508779] Disable flat namespace on MacOS X Message-ID: <1649606695.59.0.942496234326.issue508779@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35982 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508779> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511055] bdist_wininst fails on StandaloneZODB Message-ID: <1649606696.22.0.444943364419.issue511055@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36004 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511055> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513866] Float/long comparison anomaly Message-ID: <1649606697.33.0.897551372147.issue513866@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36040 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513866> _______________________________________ 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: [issue213091] ExtensionClass should be in the core Message-ID: <1649606594.9.0.342480320267.issue213091@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213091> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514490] Better pager selection for OS/2 Message-ID: <1649606697.45.0.662244071981.issue514490@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36044 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514490> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514532] Add "eu#" parser marker Message-ID: <1649606697.47.0.745316041121.issue514532@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36045 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514532> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504224] add plan9 threads include to thread.c Message-ID: <1649606693.03.0.622448153202.issue504224@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35921 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504224> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514641] Negative ob_size of LongObjects Message-ID: <1649606697.59.0.479960495232.issue514641@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36048 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514641> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514858] complex not entirely immutable Message-ID: <1649606697.69.0.583679961639.issue514858@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36051 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514858> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue515006] remove unused import in lib/cgi.py Message-ID: <1649606697.98.0.434375701884.issue515006@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36058 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515006> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515015] inspect.py raise exception if code not found Message-ID: <1649606698.12.0.849988003771.issue515015@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36062 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515015> _______________________________________ 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: [issue214532] cgi + <TextArea>.. + xml-data Message-ID: <1649606598.52.0.0580276110636.issue214532@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214532> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515009] remove op global from lib/dis.py Message-ID: <1649606698.02.0.67813730329.issue515009@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36059 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515009> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515018] lib/pickle.py remove global x Message-ID: <1649606698.17.0.361133396646.issue515018@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36063 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515018> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515023] thr.join() signatures are different Message-ID: <1649606698.28.0.780976609904.issue515023@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36067 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515023> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515026] webbrowser.py remove temporary global Message-ID: <1649606698.35.0.945312216026.issue515026@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36069 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515026> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515027] webbrowser.py remove temporary global Message-ID: <1649606698.37.0.700507211585.issue515027@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36070 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515027> _______________________________________ 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: [issue401511] Fix typos Message-ID: <1649606598.12.0.567284680172.issue401511@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401511> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515073] subtypable weak references Message-ID: <1649606698.43.0.254144120633.issue515073@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36072 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515073> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515074] Extended storage in new-style classes Message-ID: <1649606698.48.0.470280195269.issue515074@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36073 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515074> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515598] removed unused import tkCommonDialog Message-ID: <1649606698.75.0.662603459946.issue515598@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36079 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515598> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515137] metaclasses and 2.2 highlights Message-ID: <1649606698.56.0.852235109392.issue515137@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36074 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515137> _______________________________________ 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: [issue401573] a first start on updating expatreader.py Message-ID: <1649606599.46.0.173935592574.issue401573@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401573> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515745] Missing docs for module knee Message-ID: <1649606698.77.0.153079046658.issue515745@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36080 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515745> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515597] remove unused parameter tkFileDialog Message-ID: <1649606698.71.0.382737113803.issue515597@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36078 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515597> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515021] lib/smtpd.py print refused addresses Message-ID: <1649606698.22.0.288323779175.issue515021@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36065 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515021> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515593] unused parameter removed tkFileDialog.py Message-ID: <1649606698.69.0.754484759407.issue515593@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36077 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515593> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515012] remove unused variable in lib/imputil Message-ID: <1649606698.09.0.45040817423.issue515012@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36061 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515012> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515830] macostools.mkalias doesnt work for folde Message-ID: <1649606698.9.0.794814188043.issue515830@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36082 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515830> _______________________________________ 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: [issue215005] Python 2.0 won't build on HP Unix 10.2 Message-ID: <1649606599.77.0.459717782925.issue215005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215005> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515943] searching for data with \0 in mmapf Message-ID: <1649606698.94.0.312411379954.issue515943@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36083 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515943> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue515005] remove pychecker warnings in bdb Message-ID: <1649606697.96.0.458456687869.issue515005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36057 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515005> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513840] entity unescape for sgml/htmllib Message-ID: <1649606697.29.0.906345699042.issue513840@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36039 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513840> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516232] Windows os.path.isdir bad if drive only Message-ID: <1649606699.05.0.572487875784.issue516232@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36085 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516232> _______________________________________ 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: [issue215076] threads of __del__ Message-ID: <1649606600.06.0.708223426959.issue215076@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215076> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513572] isdir behavior getting odder on UNC path Message-ID: <1649606697.07.0.412864461297.issue513572@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36033 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513572> _______________________________________ 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: [issue213773] Python 2.0b1 selectmodule compile error under Redhat 5.2 Message-ID: <1649606596.11.0.0215225418239.issue213773@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213773> _______________________________________ 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: [issue215126] Over restricted type checking on eval() function Message-ID: <1649606600.24.0.657986973459.issue215126@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215126> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513756] PEP 279 Examples and Test Suite Message-ID: <1649606697.27.0.0636045166276.issue513756@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36038 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513756> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516712] SyntaxError tracebacks omit filename Message-ID: <1649606699.35.0.0780088002626.issue516712@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36092 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516712> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516727] MyInt(2)+"3" -> NotImplemented Message-ID: <1649606699.41.0.665149712437.issue516727@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36094 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516727> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516965] __del__ is not called correctly Message-ID: <1649606699.51.0.835748111133.issue516965@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36096 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516965> _______________________________________ 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: [issue215308] codecs base classes need documentation Message-ID: <1649606600.64.0.661820443982.issue215308@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215308> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514997] remove extra SET_LINENOs Message-ID: <1649606697.79.0.0390464422074.issue514997@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36053 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514997> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515751] Missing docs for module imputil Message-ID: <1649606698.83.0.206155240735.issue515751@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36081 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515751> _______________________________________ 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: [issue401659] Fix bug #115323: normalize limits.h inclusion Message-ID: <1649606600.86.0.560774717672.issue401659@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401659> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517447] Syntax error in tixwidgets.py Message-ID: <1649606699.68.0.051391944363.issue517447@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36101 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517447> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517920] = (assignment) as expression Message-ID: <1649606699.93.0.722640591938.issue517920@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36108 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517920> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517684] warnings.warn() misdocumented Message-ID: <1649606699.85.0.375090150309.issue517684@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36105 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517684> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516299] urlparse can get fragments wrong Message-ID: <1649606699.14.0.809670077754.issue516299@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36087 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516299> _______________________________________ 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: [issue215515] build with read-only source files fails Message-ID: <1649606601.39.0.877290388415.issue215515@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215515> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue518076] Error in tutorial chapter 4 Message-ID: <1649606699.95.0.870585281095.issue518076@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36109 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518076> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517521] Optimization for PyObject_Get/SetAttr Message-ID: <1649606699.77.0.589085343121.issue517521@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36103 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517521> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515041] path in site doc refers to 1.5 Message-ID: <1649606698.4.0.773358691426.issue515041@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36071 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515041> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516703] Tix:NoteBook add/delete/add page problem Message-ID: <1649606699.31.0.676169412378.issue516703@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36091 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516703> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516762] have a way to search backwards for re Message-ID: <1649606699.44.0.179597131507.issue516762@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36095 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516762> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue518767] array module has undocumented features Message-ID: <1649606700.17.0.620118637786.issue518767@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36114 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518767> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue518846] exception cannot be new-style class Message-ID: <1649606700.21.0.148920053825.issue518846@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36116 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518846> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515336] Method assignment inconsistency Message-ID: <1649606698.6.0.753580465676.issue515336@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36075 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515336> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue519621] __slots__ may lead to undetected cycles Message-ID: <1649606700.5.0.758954450427.issue519621@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36122 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue519621> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516297] iterator for lineinput Message-ID: <1649606699.09.0.00157756951763.issue516297@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36086 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516297> _______________________________________ 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: [issue215643] test_longexp Fails on OpenBSD Message-ID: <1649606601.82.0.761909482345.issue215643@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215643> _______________________________________ 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: [issue401566] Add fpectl functionality patch for FreeBSD Message-ID: <1649606599.23.0.874553356008.issue401566@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401566> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520483] Make IDLE OutputWindow handle Unicode Message-ID: <1649606700.79.0.770385757186.issue520483@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36128 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520483> _______________________________________ 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: [issue401713] Free extension DLLs' handles during the Py_Finalize() Message-ID: <1649606601.94.0.251282573671.issue401713@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401713> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515434] Very slow performance Message-ID: <1649606698.64.0.903255204032.issue515434@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36076 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515434> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue519230] hook method for 'is' operator Message-ID: <1649606700.48.0.761406191152.issue519230@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36121 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue519230> _______________________________________ 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: [issue401714] Missing `s' in format string Message-ID: <1649606601.99.0.0688417543685.issue401714@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401714> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue518989] Import statement Index ref. broken Message-ID: <1649606700.33.0.47269448547.issue518989@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36118 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518989> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue518775] buffer object API description truncated Message-ID: <1649606700.19.0.0014912008267.issue518775@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36115 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518775> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520045] memory leak in descr_new Message-ID: <1649606700.57.0.942865290072.issue520045@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36123 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520045> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520325] Double underscore needs clarification Message-ID: <1649606700.7.0.380564910997.issue520325@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36126 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520325> _______________________________________ 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: [issue213894] os.listdir(driveletter + ":") flawed on Win32 Message-ID: <1649606596.9.0.700983980195.issue213894@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213894> _______________________________________ 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: [issue215789] operator module missing documentation Message-ID: <1649606602.31.0.43431361847.issue215789@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215789> _______________________________________ 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: [issue214847] Building Python fails due to readline problem Message-ID: <1649606599.64.0.148447187938.issue214847@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214847> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521670] Remove unused sys import Message-ID: <1649606701.38.0.687770578706.issue521670@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36141 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521670> _______________________________________ 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: [issue401653] unidb-based unicodetype.c replacement (part 2) Message-ID: <1649606600.78.0.874729861738.issue401653@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401653> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517214] expat.h not found when building in subdi Message-ID: <1649606699.53.0.774915416162.issue517214@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36097 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517214> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521526] Problems when python is renamed Message-ID: <1649606701.3.0.241249156335.issue521526@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36139 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521526> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue520904] Regex object finditer not documented Message-ID: <1649606701.06.0.039349023282.issue520904@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36133 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520904> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517245] fix for mpzmodule.c Message-ID: <1649606699.56.0.59158591729.issue517245@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36098 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517245> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516412] Python gettext doesn't support libglade Message-ID: <1649606699.2.0.611861157298.issue516412@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36089 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516412> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521448] Undocumented Py_InitModule Message-ID: <1649606701.14.0.792634938765.issue521448@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36136 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521448> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521450] Trivial Misspelling Message-ID: <1649606701.17.0.0148379800951.issue521450@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36137 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521450> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521937] email module: object instantiation fails Message-ID: <1649606701.67.0.663840460559.issue521937@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36147 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521937> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue520768] cellobject isn't VAR Message-ID: <1649606701.02.0.0368155680049.issue520768@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36132 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520768> _______________________________________ 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: [issue215919] Integer multiplication overflow Message-ID: <1649606602.61.0.193529866864.issue215919@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215919> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue518985] Ellipsis semantics undefined Message-ID: <1649606700.31.0.269764952959.issue518985@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36117 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518985> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue522279] transformer.py nodes shadows global Message-ID: <1649606701.86.0.0953467946281.issue522279@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36151 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522279> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505453] bug in gc.get_referrers() Message-ID: <1649606694.04.0.515530326452.issue505453@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35945 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505453> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue522395] test_descrtut fails on OSX Message-ID: <1649606701.95.0.426611172763.issue522395@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36153 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522395> _______________________________________ 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: [issue215609] Please include regexdemo.py in main distribution Message-ID: <1649606601.62.0.00397090511979.issue215609@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215609> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue522033] Tkinter d/n't complain when Tcl not foun Message-ID: <1649606701.77.0.180919981676.issue522033@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36149 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522033> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue522587] Fixes pydoc http/ftp URL matching Message-ID: <1649606702.08.0.943570881355.issue522587@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36156 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522587> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue522426] undocumented argument in filecmp.cmpfile Message-ID: <1649606702.04.0.907662469795.issue522426@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36155 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522426> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue522780] bsddb keys corruption Message-ID: <1649606702.27.0.9133278455.issue522780@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36160 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522780> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521270] SMTP does not handle UNICODE Message-ID: <1649606701.11.0.538228346191.issue521270@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36135 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521270> _______________________________________ 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: [issue401631] adds back EntityResolver and DTDHandler Message-ID: <1649606600.39.0.644878261016.issue401631@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401631> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521706] Python expects __eprintf on Solaris Message-ID: <1649606701.42.0.432245440188.issue521706@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36142 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521706> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue522961] Leak in Python/thread_nt.h Message-ID: <1649606702.4.0.909890674736.issue522961@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36162 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522961> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue522027] pwdmodule and grpmodule use structs Message-ID: <1649606701.71.0.785656240172.issue522027@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36148 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522027> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue522682] pydoc: HTML not escaped Message-ID: <1649606702.17.0.0524854080634.issue522682@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36158 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522682> _______________________________________ 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: [issue215696] sre RuntimeError when .*? matches >16K string Message-ID: <1649606602.06.0.402673389943.issue215696@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215696> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523117] ref.ps and ref.pdf formatting Message-ID: <1649606702.54.0.310247669933.issue523117@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36165 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523117> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue518765] Bug in copy.py when used through rexec Message-ID: <1649606700.13.0.898299139149.issue518765@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36113 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518765> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523230] socket.gethostbyaddrors Message-ID: <1649606702.65.0.443399489886.issue523230@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36168 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523230> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523241] MimeWriter must use CRLF instead of LF Message-ID: <1649606702.68.0.877958480893.issue523241@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36169 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523241> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523041] Robotparser incorrectly applies regex Message-ID: <1649606702.49.0.455589931985.issue523041@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36164 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523041> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523268] pwd.getpw* returns enhanced tuple. Message-ID: <1649606702.74.0.433870945366.issue523268@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36170 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523268> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523271] Docstrings for os.stat and time.localtim Message-ID: <1649606702.78.0.606366319244.issue523271@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36171 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523271> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523301] ConfigParser.write(): linebreak handling Message-ID: <1649606702.82.0.603009338446.issue523301@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36172 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523301> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523195] SMTPLIB does not support " Message-ID: <1649606702.62.0.239524654924.issue523195@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36167 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523195> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523415] Explict proxies for urllib.urlopen() Message-ID: <1649606702.87.0.500025534331.issue523415@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36173 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523415> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523424] Finding "home" in "user.py" for Windows Message-ID: <1649606702.93.0.982198942445.issue523424@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36175 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523424> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue522621] Leak in thread_nt.h Message-ID: <1649606702.12.0.0800568981066.issue522621@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36157 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522621> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523425] shelve update fails on "large" entry Message-ID: <1649606702.96.0.508541484514.issue523425@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36176 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523425> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521854] Different extension modules share space Message-ID: <1649606701.63.0.424156560391.issue521854@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36146 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521854> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue523833] Inaccuracy in PyErr_SetFromErrno()'s doc Message-ID: <1649606703.1.0.390263932952.issue523833@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36179 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523833> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue523473] PyModule_AddObject doesn't set exception Message-ID: <1649606703.0.0.742064894155.issue523473@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36177 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523473> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue523995] PDB single steps list comprehensions Message-ID: <1649606703.24.0.643536085855.issue523995@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36182 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523995> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521714] fix pychecker warnings in ast.py Message-ID: <1649606701.46.0.20795476658.issue521714@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36143 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521714> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue523825] python-mode.el: honor-comment-indent bug Message-ID: <1649606703.05.0.598650871657.issue523825@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36178 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523825> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue524327] imaplib.py and SSL Message-ID: <1649606703.41.0.68655769666.issue524327@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36187 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue524327> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue524062] USE_CACHE_ALIGNED still helpful? Message-ID: <1649606703.35.0.943050942846.issue524062@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36185 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue524062> _______________________________________ 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: [issue216172] 2.0b2 curses module fails to build on SGI Message-ID: <1649606603.38.0.169164683413.issue216172@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216172> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525109] Extension to Calltips / Show attributes Message-ID: <1649606703.53.0.0653094052264.issue525109@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36190 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525109> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520645] unpickable basic types => confusing err Message-ID: <1649606700.89.0.439374484059.issue520645@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36130 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520645> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525211] Utils.py imported module not used Message-ID: <1649606703.61.0.0955535398501.issue525211@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36192 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525211> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525225] email Generator.py unused import Message-ID: <1649606703.64.0.671973264698.issue525225@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36193 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525225> _______________________________________ 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: [issue401841] Minor fix in calendar module to work with "funny" years. Message-ID: <1649606604.6.0.0264108794098.issue401841@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401841> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521782] unreliable file.read() error handling Message-ID: <1649606701.57.0.903549812303.issue521782@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36145 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521782> _______________________________________ 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: [issue401842] Localization of calendar module. Message-ID: <1649606604.68.0.87210630916.issue401842@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401842> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525705] [2.2] underflow raise OverflowException Message-ID: <1649606703.89.0.876953372158.issue525705@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36200 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525705> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525763] minor fix for regen on IRIX Message-ID: <1649606703.95.0.648780016996.issue525763@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36201 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525763> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue525945] urllib: Defering open call for file urls Message-ID: <1649606704.0.0.134273344914.issue525945@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36203 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525945> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526039] devious code can crash structseqs Message-ID: <1649606704.04.0.758069785637.issue526039@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36204 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526039> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526277] shortcut should be short-circuit Message-ID: <1649606704.13.0.147072219379.issue526277@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36207 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526277> _______________________________________ 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: [issue401862] test_fcntl.py needs "Darwin1.2" added among the BSD's Message-ID: <1649606604.99.0.811415111.issue401862@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401862> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525870] urllib2: duplicate call, stat attrs Message-ID: <1649606703.97.0.124174969135.issue525870@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36202 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525870> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526382] raw_input does not flush stdout Message-ID: <1649606704.25.0.00849987027429.issue526382@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36210 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526382> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526840] PEP 263 Implementation Message-ID: <1649606704.46.0.744069007573.issue526840@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36217 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526840> _______________________________________ 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: [issue216677] minidom:Node.appendChild() has wrong semantics Message-ID: <1649606605.19.0.135731021727.issue216677@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216677> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue523859] unexpected endless loop Message-ID: <1649606703.15.0.365707965105.issue523859@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36180 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523859> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue522274] compiler/transformer.py STARSTAR doesn't exist Message-ID: <1649606701.81.0.852263943866.issue522274@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36150 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522274> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526726] Possible bug in import.c (2.1.2) Message-ID: <1649606704.44.0.727871888455.issue526726@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36216 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526726> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527384] test_descr coredumps on OSX framewk bl Message-ID: <1649606704.74.0.0884538087588.issue527384@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36224 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527384> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527427] minidom fails to use NodeList sometimes Message-ID: <1649606704.76.0.441667043894.issue527427@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36225 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527427> _______________________________________ 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: [issue401904] Better SWIG with C++ support Message-ID: <1649606605.66.0.575577540519.issue401904@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401904> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue519227] hook method for 'is' operator Message-ID: <1649606700.42.0.934793243625.issue519227@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36120 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue519227> _______________________________________ 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: [issue401936] Auto-detect DEC threads (which need "-threads" argument) Message-ID: <1649606605.79.0.958957714497.issue401936@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401936> _______________________________________ 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: [issue217004] Tools/compiler does not create doc strings Message-ID: <1649606605.76.0.010209009894.issue217004@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217004> _______________________________________ 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: [issue217090] PIL (TkImaging) extension instructions wrong Message-ID: <1649606605.92.0.571233281181.issue217090@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217090> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528020] bug in Python2.2 in the nested scoping Message-ID: <1649606705.03.0.132002111695.issue528020@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36233 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528020> _______________________________________ 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: [issue217109] Compilation Fails if LONG_BIT != 8*SIZEOF_LONG Message-ID: <1649606605.97.0.863012403966.issue217109@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217109> _______________________________________ 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: [issue215732] Linking fails with old versions of readline Message-ID: <1649606602.22.0.988317159148.issue215732@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215732> _______________________________________ 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: [issue217195] Broken \ref link in documentation Message-ID: <1649606606.14.0.964852276796.issue217195@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217195> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue524005] "make tags" fails on new POSIX hosts Message-ID: <1649606703.29.0.727933627935.issue524005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36183 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue524005> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527059] ZODB cores with 2.2.1 CVS Message-ID: <1649606704.57.0.535015658022.issue527059@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36220 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527059> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528440] asyncore.poll bug Message-ID: <1649606705.28.0.0328087524504.issue528440@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36240 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528440> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue520959] ref.pdf dictionary display doc error Message-ID: <1649606701.08.0.737325550404.issue520959@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36134 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520959> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528620] unicodeobject can coredump on exit Message-ID: <1649606705.32.0.643782682664.issue528620@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36241 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528620> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528748] range() description: rewording suggested Message-ID: <1649606705.37.0.0365051042357.issue528748@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36242 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528748> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529050] ModuleType.__new__ crash Message-ID: <1649606705.54.0.49222808385.issue529050@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36246 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529050> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529083] Demo/xmlrpc/ http_server module missing Message-ID: <1649606705.57.0.202380475216.issue529083@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36247 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529083> _______________________________________ 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: [issue217377] API docs, 7.2.1, too restrictive statement Message-ID: <1649606606.67.0.294167115073.issue217377@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217377> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529146] ICGlue byte alignment issue Message-ID: <1649606705.79.0.907219769814.issue529146@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36251 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529146> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529708] error in re docs or in sre Message-ID: <1649606705.96.0.187369386797.issue529708@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36255 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529708> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue518283] Menus and winfo_children() KeyError Message-ID: <1649606699.98.0.203503636277.issue518283@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36110 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518283> _______________________________________ 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: [issue402075] More DOM documentation Message-ID: <1649606606.79.0.0306710968312.issue402075@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402075> _______________________________________ 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: [issue217608] test_largefile crashes or IRIX 6 Message-ID: <1649606607.08.0.442377612425.issue217608@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217608> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530159] solaris build reds _FILE_OFFSET_BIT Message-ID: <1649606706.27.0.532322582375.issue530159@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36263 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530159> _______________________________________ 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: [issue217467] missing parameter in function summary Message-ID: <1649606606.88.0.592532632795.issue217467@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217467> _______________________________________ 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: [issue217745] Two Compensating bugs in UserString.__imul__ Message-ID: <1649606607.27.0.0255076349636.issue217745@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217745> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531355] surprise overriding __radd__ in subclass of complex Message-ID: <1649606706.8.0.0914926920997.issue531355@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36275 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531355> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527518] urllib2.py: fix behavior with proxies Message-ID: <1649606704.81.0.984664166267.issue527518@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36227 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527518> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521628] thread_pthread.h rev 2.37 Message-ID: <1649606701.34.0.77251427193.issue521628@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36140 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521628> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532687] "realpath" for posixpath module Message-ID: <1649606707.61.0.844047769603.issue532687@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36295 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532687> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528274] Nested Scopes bug (Confirmed) Message-ID: <1649606705.15.0.791166401367.issue528274@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36237 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528274> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533625] rexec: potential security hole Message-ID: <1649606708.44.0.637251712094.issue533625@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36312 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533625> _______________________________________ 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: [issue221887] new.function, 3rd arg: can it be None or not? Message-ID: <1649606608.96.0.211715475867.issue221887@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33453 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221887> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533281] bsddb185 module needs iterators Message-ID: <1649606708.26.0.584570035617.issue533281@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36307 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533281> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533621] Remove pymalloc hooks Message-ID: <1649606708.41.0.118929470343.issue533621@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36311 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533621> _______________________________________ 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: [issue215530] cStringIO.StringIO() doesn't raise ValueError when closed Message-ID: <1649606601.47.0.456426357526.issue215530@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215530> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533482] small seek tweak upon reads (gzip) Message-ID: <1649606708.37.0.279520582872.issue533482@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36310 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533482> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533632] 2.2 on HP-UX 11 64-bit - longs crash Message-ID: <1649606708.49.0.432132257517.issue533632@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36313 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533632> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533681] Apply semaphore code to Cygwin Message-ID: <1649606708.54.0.723084890855.issue533681@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36314 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533681> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534304] PEP 263 Implementation Message-ID: <1649606708.82.0.662798890385.issue534304@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36321 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534304> _______________________________________ 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: [issue221965] 10 in xrange(10) returns 1 Message-ID: <1649606609.18.0.371329899651.issue221965@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33458 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221965> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534495] PyErr_Format format char bugs Message-ID: <1649606708.95.0.0338662205869.issue534495@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36323 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534495> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534153] CODESET Doesn't Infer ERA et al. Message-ID: <1649606708.73.0.730616321058.issue534153@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36319 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534153> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534113] missing "is" in "sys.exit" doc string Message-ID: <1649606708.65.0.273106357534.issue534113@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36317 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534113> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534347] Potential AV in vgetargskeywords Message-ID: <1649606708.92.0.0514169277225.issue534347@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36322 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534347> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534158] Running MacPython as non-priv user may fail Message-ID: <1649606708.8.0.706035557485.issue534158@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36320 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534158> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue534748] Removing _tkinter considered harmful Message-ID: <1649606709.12.0.423072595891.issue534748@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36327 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534748> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue534862] help asyncore recover from repr() probs Message-ID: <1649606709.23.0.700313414468.issue534862@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36329 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534862> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534116] Python-2.*.exe has virus? Message-ID: <1649606708.69.0.1751078257.issue534116@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36318 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534116> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533198] Complex power underflow raises exception Message-ID: <1649606708.2.0.286121750551.issue533198@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36305 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533198> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534613] urllib.unquote() is not idempotent Message-ID: <1649606708.97.0.0449699052679.issue534613@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36324 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534613> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue535170] new.instance() breaks with new classes Message-ID: <1649606709.32.0.134175757582.issue535170@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36331 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535170> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue535285] urllib, fragment identifiers and 404s Message-ID: <1649606709.36.0.100592534341.issue535285@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36332 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535285> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue535335] 2.2 patches for BSD/OS 5.0 Message-ID: <1649606709.45.0.454578673498.issue535335@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36334 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535335> _______________________________________ 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: [issue401839] better error messages Message-ID: <1649606604.52.0.270660843335.issue401839@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401839> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue535324] "if foo=bar:" error-message Message-ID: <1649606709.4.0.733228999569.issue535324@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36333 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535324> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue534864] profiling with xml parsing asserts Message-ID: <1649606709.28.0.974854405341.issue534864@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36330 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534864> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue535474] xml.sax memory leak with ExpatParser Message-ID: <1649606709.57.0.00922693282514.issue535474@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36337 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535474> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532631] Confusions in formatfloat Message-ID: <1649606707.46.0.291331877766.issue532631@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36292 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532631> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532860] NameError assigning to class in a func Message-ID: <1649606707.93.0.974140400016.issue532860@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36300 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532860> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536117] Typo in turtle.py Message-ID: <1649606710.21.0.12038667925.issue536117@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36343 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536117> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue535444] super() broken with classmethods Message-ID: <1649606709.5.0.512167196052.issue535444@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36335 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535444> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533735] cut-o/paste-o in Marshalling doc: 2.2.1 Message-ID: <1649606708.58.0.2711898564.issue533735@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36315 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533735> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536125] Typo in turtle.py Message-ID: <1649606710.27.0.433904406162.issue536125@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36345 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536125> _______________________________________ 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: [issue402412] support for curses.setupterm Message-ID: <1649606610.11.0.634156703045.issue402412@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33485 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402412> _______________________________________ 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: [issue221951] webbrowser.open() generates AttributeError on Mac Message-ID: <1649606609.09.0.868948496449.issue221951@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33456 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221951> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536449] pydoc getopt fails Message-ID: <1649606710.39.0.588473682189.issue536449@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36349 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536449> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536278] force gzip to open files with 'b' Message-ID: <1649606710.33.0.71985948242.issue536278@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36347 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536278> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536661] splitext performances improvement Message-ID: <1649606710.49.0.496162200725.issue536661@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36353 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536661> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536769] Add -Xcompiler flag Message-ID: <1649606710.53.0.39290077171.issue536769@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36354 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536769> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536516] Docs for "es" and "et" confusing Message-ID: <1649606710.44.0.231569335534.issue536516@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36351 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536516> _______________________________________ 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: [issue222780] msvcrt: locking constants aren't defined. Message-ID: <1649606610.34.0.368576479309.issue222780@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33493 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222780> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536796] fchdir Message-ID: <1649606710.56.0.240646744662.issue536796@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36355 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536796> _______________________________________ 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: [issue222690] invalid default module path Message-ID: <1649606610.22.0.891535192327.issue222690@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33489 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222690> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536908] missing #include guards/extern "C" Message-ID: <1649606710.62.0.568273718435.issue536908@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36357 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536908> _______________________________________ 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: [issue402477] DOM enhancements Message-ID: <1649606610.62.0.0391052828381.issue402477@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33501 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402477> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536909] pymalloc for types and other cleanups Message-ID: <1649606710.64.0.0663660101114.issue536909@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36358 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536909> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537450] Improper object initialization Message-ID: <1649606710.7.0.885321625585.issue537450@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36360 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537450> _______________________________________ 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: [issue402485] minidom.py: Check for legal children Message-ID: <1649606610.71.0.00311211699202.issue402485@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33503 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402485> _______________________________________ 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: [issue222517] problems to compile 2.0 on IRIX 6.5 Message-ID: <1649606609.82.0.975406389091.issue222517@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33478 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue222517> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537511] ref to non-existant PyArg_ConvertTuple Message-ID: <1649606710.76.0.816944067232.issue537511@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36362 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537511> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537536] bug 535444 super() broken w/classmethods Message-ID: <1649606710.81.0.338503192844.issue537536@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36364 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537536> _______________________________________ 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: [issue217328] .py and .pyc icons confusing. Message-ID: <1649606606.59.0.887788816491.issue217328@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217328> _______________________________________ 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: [issue221930] Parameter mismatch exception tracebacks could be more helpfu Message-ID: <1649606609.04.0.183779380024.issue221930@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33455 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221930> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537615] LangRef for 2.2 talks like 2.1 Message-ID: <1649606710.88.0.259530606087.issue537615@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36366 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537615> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue538361] packing double yields garbage Message-ID: <1649606710.93.0.883342548869.issue538361@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36368 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue538361> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue538369] time.mktime() doesn't raise exception Message-ID: <1649606710.97.0.83880138591.issue538369@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36369 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue538369> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537582] incorrect pid returned from os.spawn Message-ID: <1649606710.85.0.176055031238.issue537582@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36365 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537582> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536469] module array: C type descriptions wrong Message-ID: <1649606710.42.0.723613694964.issue536469@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36350 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536469> _______________________________________ 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: [issue402563] test for string.join([unicode]) Message-ID: <1649606611.32.0.0520349501057.issue402563@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33518 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402563> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539043] Support PyChecker in IDLE Message-ID: <1649606711.21.0.223506354839.issue539043@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36377 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539043> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539175] resolver not thread safe Message-ID: <1649606711.26.0.472935460266.issue539175@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36379 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539175> _______________________________________ 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: [issue223730] Extra backslash in web page Message-ID: <1649606611.44.0.157520039285.issue223730@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33522 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223730> _______________________________________ 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: [issue223694] String join of Unicode string crashes Message-ID: <1649606611.38.0.0143867269602.issue223694@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33520 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223694> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536120] splitext and leading point of hidden files Message-ID: <1649606710.23.0.386898789842.issue536120@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36344 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536120> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539360] Webbrowser.py and konqueror Message-ID: <1649606711.33.0.0812708826479.issue539360@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36381 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539360> _______________________________________ 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: [issue223859] %[duxXo] long formats inconsistent Message-ID: <1649606611.51.0.226241338558.issue223859@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33525 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223859> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue535619] HTTPS not working in httplib Message-ID: <1649606710.05.0.205121512413.issue535619@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36340 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535619> _______________________________________ 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: [issue223924] Windows - using OpenSSL, problem with socket in httplib.py Message-ID: <1649606611.59.0.178593821719.issue223924@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33527 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223924> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539319] sys.argv only works with python exe Message-ID: <1649606711.31.0.976778938711.issue539319@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36380 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539319> _______________________________________ 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: [issue224060] Python 2.0 -- Problems with Unicode Translate Message-ID: <1649606611.74.0.981296959386.issue224060@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33532 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224060> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539486] build info docs from sources Message-ID: <1649606711.41.0.0801015368355.issue539486@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36384 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539486> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539444] asyncore file wrapper & os.error Message-ID: <1649606711.37.0.479973201377.issue539444@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36383 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539444> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531145] socket.sslerror is not a socket.error Message-ID: <1649606706.52.0.807254946877.issue531145@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36270 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531145> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539005] error in RawPen-class (line 262) Message-ID: <1649606711.17.0.935945272369.issue539005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36375 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539005> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539990] Framework.mainloop() - multiple threads Message-ID: <1649606711.66.0.429806456504.issue539990@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36390 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539990> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539719] IBM's xlc compiler needs extra option Message-ID: <1649606711.45.0.439585215531.issue539719@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36386 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539719> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539942] os.mkdir() handles SETGID inconsistently Message-ID: <1649606711.54.0.0762064181091.issue539942@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36388 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539942> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue540583] IDLE calls MS HTML Help Python Docs Message-ID: <1649606711.74.0.0872275972834.issue540583@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36392 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue540583> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533291] __reduce__ does not work as documented Message-ID: <1649606708.29.0.0234950164596.issue533291@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36308 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533291> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue540952] Memory Usage Reporting Message-ID: <1649606711.82.0.0331557105512.issue540952@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36395 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue540952> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue540965] PyType_GenericNew broken Message-ID: <1649606711.88.0.685592108334.issue540965@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36396 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue540965> _______________________________________ 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: [issue224629] urllib2.CustomProxyHandler has invalid code sequence Message-ID: <1649606612.29.0.829093172289.issue224629@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33549 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224629> _______________________________________ 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: [issue402684] ceval/getargs: better messages for argument handling Message-ID: <1649606612.49.0.400518140324.issue402684@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33555 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402684> _______________________________________ 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: [issue402746] strip \n so that Unix and Windows dbs are interoperable Message-ID: <1649606612.92.0.716709840059.issue402746@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33568 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402746> _______________________________________ 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: [issue221671] bad link David Ascher's compile.py script Message-ID: <1649606608.73.0.751905814175.issue221671@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33448 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221671> _______________________________________ 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: [issue402733] {}.popitem() implementation Message-ID: <1649606612.87.0.67395534797.issue402733@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33566 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402733> _______________________________________ 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: [issue225375] parser.tuple2ast() failure on valid parse tree Message-ID: <1649606613.07.0.0347060741199.issue225375@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33572 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225375> _______________________________________ 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: [issue402808] Export control for modules Message-ID: <1649606613.28.0.271853338903.issue402808@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33581 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402808> _______________________________________ 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: [issue225673] PyThreadState_Delete: invalid tstate Message-ID: <1649606613.46.0.204293956852.issue225673@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33586 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225673> _______________________________________ 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: [issue225808] Fiddling builtin str flips out re.sub Message-ID: <1649606613.61.0.0849517245124.issue225808@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33591 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225808> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue540394] Remove PyMalloc_* symbols Message-ID: <1649606711.71.0.443375229479.issue540394@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36391 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue540394> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue540720] test_email fails on Mac in summer Message-ID: <1649606711.76.0.202726659055.issue540720@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36393 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue540720> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue535495] threading.RLock memory leak Message-ID: <1649606709.97.0.229726762249.issue535495@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36338 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535495> _______________________________________ 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: [issue402860] Add PyDict_Update() function to C API. Message-ID: <1649606613.81.0.523174340981.issue402860@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33597 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402860> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533306] not building on AIX Message-ID: <1649606708.34.0.258110841583.issue533306@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36309 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533306> _______________________________________ 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: [issue402364] Fix for119822: Allow Unicode in urllib Message-ID: <1649606609.63.0.666958101042.issue402364@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33472 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402364> _______________________________________ 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: [issue226034] xml.sax.handler.ErrorHandler not documented Message-ID: <1649606614.07.0.581127222568.issue226034@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33607 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226034> _______________________________________ 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: [issue402588] PEP 229: Use Distutils to build Message-ID: <1649606611.53.0.646260629059.issue402588@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33526 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402588> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537533] Grossly inefficient re Message-ID: <1649606710.78.0.85863824977.issue537533@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36363 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537533> _______________________________________ 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: [issue225719] malloc() is called when _PyThreadState_Current is NULL Message-ID: <1649606613.48.0.350414668378.issue225719@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33587 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225719> _______________________________________ 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: [issue225919] docs for random, whrandom too complex Message-ID: <1649606613.85.0.714307015036.issue225919@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33598 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225919> _______________________________________ 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: [issue226345] Modules are not garbage collected Message-ID: <1649606614.29.0.175067428721.issue226345@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33614 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226345> _______________________________________ 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: [issue402971] build_ext -L typo fix Message-ID: <1649606614.51.0.99294017772.issue402971@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33622 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402971> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536017] threading.Lock().acquire bug Message-ID: <1649606710.17.0.411059463263.issue536017@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36342 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536017> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539907] Tkinter lock conflicts extension widgets Message-ID: <1649606711.47.0.173199424794.issue539907@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36387 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539907> _______________________________________ 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: [issue226706] many std modules assume string.letters is [a-zA-Z] Message-ID: <1649606614.83.0.427527342342.issue226706@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33632 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226706> _______________________________________ 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: [issue226850] file.seek() docs should mention append mode Message-ID: <1649606615.05.0.314354264099.issue226850@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33637 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226850> _______________________________________ 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: [issue402802] Support new gdbm flags Message-ID: <1649606613.23.0.460178557002.issue402802@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33579 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402802> _______________________________________ 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: [issue226866] (xml.dom.minidom.Document()).toxml() breakable Message-ID: <1649606615.16.0.648768457285.issue226866@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33640 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226866> _______________________________________ 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: [issue227361] httplib problem with '100 Continue' Message-ID: <1649606615.74.0.0773948759376.issue227361@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33656 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227361> _______________________________________ 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: [issue227470] Memory leak in bdb Message-ID: <1649606615.89.0.516885190056.issue227470@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33660 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227470> _______________________________________ 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: [issue227699] Memory leaks using imp.load_module Message-ID: <1649606616.04.0.0521644044342.issue227699@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33664 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227699> _______________________________________ 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: [issue227562] variable return from urllib.FancyURLopener.http_error_401 Message-ID: <1649606616.0.0.0855274064936.issue227562@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33663 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227562> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue540874] BoolType should be added to types.py Message-ID: <1649606711.79.0.90690177965.issue540874@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36394 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue540874> _______________________________________ 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: [issue224051] ndiff bug: "?" lines are out-of-sync Message-ID: <1649606611.71.0.716389076281.issue224051@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33531 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224051> _______________________________________ 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: [issue403123] PEP 232 implementation (function attributes) Message-ID: <1649606616.12.0.0704841181169.issue403123@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33667 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403123> _______________________________________ 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: [issue403138] Install IDLE via distutils Message-ID: <1649606616.23.0.821246698734.issue403138@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33670 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403138> _______________________________________ 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: [issue403139] Autconfigure curses and readline into the default build Message-ID: <1649606616.28.0.301694417498.issue403139@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33672 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403139> _______________________________________ 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: [issue403140] Minor fixes and enhancements for 2.0 docs. Message-ID: <1649606616.33.0.782525374623.issue403140@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33673 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403140> _______________________________________ 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: [issue403176] PEP 217 (display hook) Message-ID: <1649606617.05.0.619219957999.issue403176@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33691 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403176> _______________________________________ 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: [issue403203] PEP 205: weak references implementation Message-ID: <1649606617.25.0.0751091612703.issue403203@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33699 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403203> _______________________________________ 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: [issue226836] curses.ascii.isspace(' ') == 0 (!) Message-ID: <1649606615.02.0.55341519578.issue226836@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33636 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226836> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539024] broken link in array module doc Message-ID: <1649606711.19.0.58128622072.issue539024@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36376 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539024> _______________________________________ 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: [issue403228] traceback.py nit. Message-ID: <1649606617.63.0.783709760428.issue403228@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33709 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403228> _______________________________________ 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: [issue228040] memory leak with multiple Py_Initialize/Py_Finalize calls Message-ID: <1649606616.42.0.762160061915.issue228040@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33675 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228040> _______________________________________ 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: [issue403344] Sort dicts from extcall for easier comparison with Jython Message-ID: <1649606619.63.0.213968575435.issue403344@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33769 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403344> _______________________________________ 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: [issue403342] Make shutil.copytree more useful under Jython Message-ID: <1649606619.58.0.64512257564.issue403342@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33767 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403342> _______________________________________ 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: [issue229740] mkhowto needs better diagnostic messages Message-ID: <1649606619.82.0.800520106195.issue229740@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33778 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229740> _______________________________________ 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: [issue229995] segfaults on AIX if configured with threads Message-ID: <1649606620.46.0.00943263049903.issue229995@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33800 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229995> _______________________________________ 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: [issue230075] dbmmodule build fails on Debian GNU/Linux unstable (Sid) Message-ID: <1649606620.67.0.189693774928.issue230075@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33807 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230075> _______________________________________ 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: [issue230030] Claim of bad betavariate algorithm Message-ID: <1649606620.65.0.303829620897.issue230030@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33806 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230030> _______________________________________ 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: [issue403476] Two Lib/mailbox.py fixes Message-ID: <1649606621.13.0.894776808083.issue403476@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33822 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403476> _______________________________________ 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: [issue403523] mpz module doesn't build under cygwin Message-ID: <1649606621.51.0.000365816172362.issue403523@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33835 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403523> _______________________________________ 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: [issue403478] Lib/test for BeOS Message-ID: <1649606621.18.0.65097137242.issue403478@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33824 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403478> _______________________________________ 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: [issue403640] incomplete proxy handling in URLLIB Message-ID: <1649606622.46.0.73096758556.issue403640@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33859 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403640> _______________________________________ 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: [issue403655] configure changes for Solaris Message-ID: <1649606622.77.0.810899357012.issue403655@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33866 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403655> _______________________________________ 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: [issue403665] Allow test___all__ to work with jython. Message-ID: <1649606622.94.0.220281967518.issue403665@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33871 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403665> _______________________________________ 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: [issue403679] AIX and BeOS build quirk revisions Message-ID: <1649606623.25.0.257703416941.issue403679@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33879 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403679> _______________________________________ 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: [issue403743] [windows] Correction to bug #131273 Message-ID: <1649606624.17.0.576528754787.issue403743@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33904 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403743> _______________________________________ 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: [issue403392] Add support for lists in urlencode Message-ID: <1649606620.27.0.00382331666352.issue403392@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33793 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403392> _______________________________________ 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: [issue403642] BeOS dislikes import tempfile in _execvpe() Message-ID: <1649606622.53.0.0728172737702.issue403642@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33861 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403642> _______________________________________ 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: [issue230029] [HP-UX] Python chokes on pthread_mutex_init Message-ID: <1649606620.61.0.556275499733.issue230029@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33805 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue230029> _______________________________________ 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: [issue232195] python 2.0 not compile with g++ Message-ID: <1649606624.75.0.544451471425.issue232195@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33917 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232195> _______________________________________ 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: [issue232398] Emacs Python mode bugs Message-ID: <1649606625.02.0.116510685895.issue232398@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33925 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232398> _______________________________________ 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: [issue232911] ConfigParser's has_option() is case-sensitive Message-ID: <1649606625.94.0.312782753577.issue232911@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33953 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232911> _______________________________________ 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: [issue232933] list.sort doesn't detect comparision errors Message-ID: <1649606625.99.0.40221693435.issue232933@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33956 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232933> _______________________________________ 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: [issue233033] Build on a New Machine Needs Pre-existing Libs?? Message-ID: <1649606626.05.0.242580020127.issue233033@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33958 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233033> _______________________________________ 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: [issue403884] Dynamic registration and lookup of DOM implementations Message-ID: <1649606626.22.0.277053283922.issue403884@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33965 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403884> _______________________________________ 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: [issue403899] Remove modules configured in Setup Message-ID: <1649606626.4.0.316982216853.issue403899@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33973 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403899> _______________________________________ 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: [issue233050] Python-2.1a2 tests failed on NetBSD 1.5 i386 Message-ID: <1649606626.11.0.200377347516.issue233050@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33961 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233050> _______________________________________ 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: [issue233297] cmath.asin is the same as cmath.asinh Message-ID: <1649606626.57.0.662609927707.issue233297@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33979 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233297> _______________________________________ 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: [issue403748] test_zlib join Message-ID: <1649606624.27.0.260076561417.issue403748@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33906 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403748> _______________________________________ 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: [issue403933] sys.path not set correctly when embedded Message-ID: <1649606626.75.0.422185571198.issue403933@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33986 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403933> _______________________________________ 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: [issue233489] compile leaks memory (current CVS) Message-ID: <1649606626.78.0.633861569742.issue233489@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33987 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233489> _______________________________________ 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: [issue232493] UserString can not be used as string in calls to C routines Message-ID: <1649606625.26.0.838556637304.issue232493@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33931 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232493> _______________________________________ 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: [issue233592] Can't execute script from a DOS partition without .py ext Message-ID: <1649606626.86.0.936421377505.issue233592@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33990 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233592> _______________________________________ 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: [issue232850] unix line terminator on windows Message-ID: <1649606625.83.0.525458944748.issue232850@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33949 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232850> _______________________________________ 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: [issue404328] struct.calcsize returns wrong size Message-ID: <1649606627.48.0.589271776389.issue404328@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34013 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404328> _______________________________________ 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: [issue404564] tempfile.py: Change order of tmp dirs Message-ID: <1649606627.66.0.420366045893.issue404564@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34019 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404564> _______________________________________ 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: [issue404827] Python Makefile: LIBOBJS incorrect Message-ID: <1649606627.8.0.550852089339.issue404827@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34024 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404827> _______________________________________ 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: [issue404923] Cygwin termios module patch Message-ID: <1649606627.87.0.213390043182.issue404923@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34027 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404923> _______________________________________ 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: [issue233200] cPickle does not use Py_BEGIN_ALLOW_THREADS. Message-ID: <1649606626.3.0.901141895759.issue233200@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33969 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233200> _______________________________________ 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: [issue404684] Test patch Message-ID: <1649606627.73.0.968227360515.issue404684@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34021 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue404684> _______________________________________ 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: [issue405358] Python2.0 re module: greedy regexp bug Message-ID: <1649606628.49.0.0183152204473.issue405358@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34046 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405358> _______________________________________ 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: [issue405583] Objects never freed with nested scopes Message-ID: <1649606628.73.0.811989417702.issue405583@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34052 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405583> _______________________________________ 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: [issue405853] Allow jython to use site.py Message-ID: <1649606628.97.0.831939392823.issue405853@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34060 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405853> _______________________________________ 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: [issue405999] getopt: extra args behavior wrong Message-ID: <1649606629.22.0.298731026191.issue405999@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34067 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue405999> _______________________________________ 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: [issue406322] Typo in os.py Message-ID: <1649606630.12.0.493521647584.issue406322@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34102 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406322> _______________________________________ 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: [issue406867] nested list comprehensions crash Message-ID: <1649606630.71.0.69367738048.issue406867@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34118 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406867> _______________________________________ 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: [issue407300] Win32: pydoc command isn't executable Message-ID: <1649606630.96.0.62437120507.issue407300@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34124 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407300> _______________________________________ 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: [issue408326] slice objects comparable, not hashable Message-ID: <1649606631.62.0.423265508674.issue408326@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34146 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408326> _______________________________________ 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: [issue407764] allow whitespace lines for doctest tests Message-ID: <1649606631.29.0.125328691436.issue407764@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34135 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407764> _______________________________________ 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: [issue407758] timemodule patches for Cygwin Message-ID: <1649606631.26.0.94651089201.issue407758@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34134 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue407758> _______________________________________ 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: [issue409046] Update tcl/tk/tix versions (2) Message-ID: <1649606632.1.0.407123343778.issue409046@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34160 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409046> _______________________________________ 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: [issue409043] Make _tkinter.c Tix aware Message-ID: <1649606632.01.0.270270824132.issue409043@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34157 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409043> _______________________________________ 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: [issue408627] frame.lookup_name Message-ID: <1649606631.68.0.569046722841.issue408627@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34148 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408627> _______________________________________ 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: [issue409448] Complex division is braindead Message-ID: <1649606632.7.0.962834085105.issue409448@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34183 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409448> _______________________________________ 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: [issue409048] Form geometry manager for Tkinter.py Message-ID: <1649606632.13.0.385556837783.issue409048@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34161 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409048> _______________________________________ 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: [issue409651] fnmatch doesn't escape '\' between [...] Message-ID: <1649606632.78.0.477032047666.issue409651@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34186 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409651> _______________________________________ 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: [issue410271] SRE: word-based anchors ignore locale Message-ID: <1649606633.45.0.873352402472.issue410271@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34208 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410271> _______________________________________ 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: [issue410709] Condition.wait() and KeyboardInterrupt Message-ID: <1649606633.84.0.706019292696.issue410709@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34221 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410709> _______________________________________ 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: [issue411063] Minor flaws in "Documenting Python" Message-ID: <1649606634.0.0.34900171139.issue411063@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34228 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411063> _______________________________________ 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: [issue412436] compileall doesn't notice syntax errors Message-ID: <1649606634.9.0.296795013482.issue412436@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34256 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412436> _______________________________________ 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: [issue413135] urllib2 fails with proxy requiring auth Message-ID: <1649606635.17.0.670365927449.issue413135@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34265 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413135> _______________________________________ 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: [issue412402] ColorDelegator.py assigns to __debug__ Message-ID: <1649606634.87.0.0853646671917.issue412402@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34255 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue412402> _______________________________________ 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: [issue410038] switching RTLD_NOW at runtime Message-ID: <1649606633.08.0.406068741456.issue410038@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34197 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue410038> _______________________________________ 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: [issue411446] Pythonwin with a TAB'ed control ? Message-ID: <1649606634.21.0.041808685044.issue411446@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34237 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue411446> _______________________________________ 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: [issue414991] Separate CFLAGS and CPPFLAGS Message-ID: <1649606636.57.0.31432350608.issue414991@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34302 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414991> _______________________________________ 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: [issue415597] asynchat.py - bug in terminator find Message-ID: <1649606637.09.0.0387191759036.issue415597@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34311 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415597> _______________________________________ 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: [issue409242] User blocks Message-ID: <1649606632.36.0.466202795061.issue409242@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34170 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409242> _______________________________________ 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: [issue415522] documentation: fnctl 8.12 Message-ID: <1649606637.08.0.187538034833.issue415522@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34310 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415522> _______________________________________ 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: [issue416199] mailbox.py seek problems Message-ID: <1649606637.8.0.973947721655.issue416199@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34329 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416199> _______________________________________ 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: [issue416225] os.environ.has_key fails with lower case Message-ID: <1649606637.92.0.216059807764.issue416225@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34332 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416225> _______________________________________ 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: [issue416231] urllib.basejoin fails to apply some ../ Message-ID: <1649606637.94.0.838485936404.issue416231@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34333 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416231> _______________________________________ 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: [issue416224] add readline completion to cmd.Cmd Message-ID: <1649606637.9.0.022790505688.issue416224@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34331 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416224> _______________________________________ 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: [issue415694] binascii.b2a.base64() braindeadness Message-ID: <1649606637.29.0.262388166597.issue415694@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34317 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415694> _______________________________________ 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: [issue416262] 2.1c1: make setup.py check zlib version Message-ID: <1649606638.1.0.684611893035.issue416262@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34341 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416262> _______________________________________ 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: [issue414029] Request for time.standardtime(secs) Message-ID: <1649606635.84.0.838722204206.issue414029@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34283 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414029> _______________________________________ 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: [issue413419] termios cleanup Message-ID: <1649606635.39.0.682515781744.issue413419@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34270 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413419> _______________________________________ 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: [issue416249] 2.1c1 compile: unused vrbl cleanup Message-ID: <1649606638.0.0.988546015686.issue416249@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34336 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416249> _______________________________________ 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: [issue416288] infrequent memory leak in pyexpat Message-ID: <1649606638.12.0.189240493914.issue416288@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34342 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416288> _______________________________________ 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: [issue416462] .pyo files missing in mimetypes.py? Message-ID: <1649606638.21.0.541209826353.issue416462@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34345 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416462> _______________________________________ 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: [issue416704] More robust freeze Message-ID: <1649606638.58.0.912230088438.issue416704@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34355 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416704> _______________________________________ 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: [issue416824] Python 2.1 installer freezes on Win 2000 Message-ID: <1649606638.61.0.97393952054.issue416824@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34356 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416824> _______________________________________ 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: [issue417084] sre: Speed up Unicode charsets Message-ID: <1649606638.83.0.205601158453.issue417084@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34365 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417084> _______________________________________ 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: [issue415612] readline ext fails w/ new v4.2 Message-ID: <1649606637.11.0.0517961761825.issue415612@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34312 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue415612> _______________________________________ 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: [issue417845] Python 2.1: SocketServer.ThreadingMixIn Message-ID: <1649606639.62.0.175808759786.issue417845@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34387 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417845> _______________________________________ 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: [issue417930] += not assigning to same var it reads Message-ID: <1649606639.76.0.767617700353.issue417930@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34391 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417930> _______________________________________ 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: [issue417952] Borland spells timezone as _timezone Message-ID: <1649606639.86.0.864706557444.issue417952@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34394 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417952> _______________________________________ 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: [issue417240] [Solaris] warning during build Message-ID: <1649606638.93.0.476822502263.issue417240@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34370 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417240> _______________________________________ 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: [issue417481] Python 2.1 build issues on Solaris 8/x86 Message-ID: <1649606639.3.0.890354238526.issue417481@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34377 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417481> _______________________________________ 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: [issue417872] unset PYTHONHOME when running setup.py Message-ID: <1649606639.71.0.301568275962.issue417872@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34389 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue417872> _______________________________________ 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: [issue418314] __eprintf undefined on Sun-OS 5.6 Message-ID: <1649606640.06.0.908443880205.issue418314@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34402 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418314> _______________________________________ 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: [issue413850] Bug in xml/__init__.py Message-ID: <1649606635.68.0.874765399315.issue413850@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34278 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue413850> _______________________________________ 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: [issue418659] Fixes for UnixWare and ReliantUnix Message-ID: <1649606640.32.0.313403200089.issue418659@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34411 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418659> _______________________________________ 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: [issue418613] regular expression bug in pipes.py Message-ID: <1649606640.25.0.0188882881623.issue418613@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34408 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418613> _______________________________________ 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: [issue418211] makesetup and "-Wl,-rpath=..." Message-ID: <1649606639.98.0.0599754221312.issue418211@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34399 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418211> _______________________________________ 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: [issue418615] regular expression bug in pipes.py. Message-ID: <1649606640.27.0.747696697668.issue418615@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34409 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418615> _______________________________________ 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: [issue414032] clib option is broken Message-ID: <1649606635.9.0.851511133612.issue414032@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34284 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue414032> _______________________________________ 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: [issue418817] path separator constant Message-ID: <1649606640.34.0.141469726976.issue418817@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34412 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue418817> _______________________________________ 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: [issue419390] base64.py could be smarter... Message-ID: <1649606640.66.0.800663082661.issue419390@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34423 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419390> _______________________________________ 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: [issue420502] seek/tell beyond eof without exceptions Message-ID: <1649606641.41.0.952478526422.issue420502@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34444 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420502> _______________________________________ 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: [issue420753] Patch for bug #420725 urllib MIME header Message-ID: <1649606641.6.0.661400738373.issue420753@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34450 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420753> _______________________________________ 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: [issue420416] Python for BeOS/PPC Build Prob. Message-ID: <1649606641.27.0.558942313595.issue420416@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34440 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420416> _______________________________________ 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: [issue421973] Coercion rules incomplete Message-ID: <1649606642.14.0.613966676684.issue421973@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34465 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421973> _______________________________________ 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: [issue422463] bug in Python 1.5.2 for win2k pro Message-ID: <1649606642.75.0.595625138801.issue422463@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34479 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422463> _______________________________________ 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: [issue422383] typo fix in ref7.tex Message-ID: <1649606642.72.0.497665184607.issue422383@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34478 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422383> _______________________________________ 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: [issue423139] webbrowser.py fix for konqueror Message-ID: <1649606643.1.0.2538481175.issue423139@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34488 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423139> _______________________________________ 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: [issue422669] Bug with appending objects to list. Message-ID: <1649606642.82.0.168485989188.issue422669@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34481 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422669> _______________________________________ 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: [issue423781] pprint.isrecursive() broken Message-ID: <1649606643.63.0.741673656151.issue423781@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34502 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue423781> _______________________________________ 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: [issue424475] Speed-up tp_compare usage Message-ID: <1649606643.82.0.655141310661.issue424475@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34508 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424475> _______________________________________ 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: [issue425320] Typo in introduction. Message-ID: <1649606644.3.0.123489495361.issue425320@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34520 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425320> _______________________________________ 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: [issue426598] doc patch for os.rename Message-ID: <1649606644.72.0.641461912154.issue426598@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34533 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426598> _______________________________________ 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: [issue426208] Fun with Floating Point Message-ID: <1649606644.59.0.0388851952082.issue426208@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34528 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426208> _______________________________________ 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: [issue426740] pydoc: check bases for doc strings? Message-ID: <1649606644.8.0.959022920161.issue426740@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34536 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426740> _______________________________________ 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: [issue426746] Infrastructure for getting MacPython modules working on OSX Message-ID: <1649606644.83.0.994233566429.issue426746@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34537 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426746> _______________________________________ 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: [issue422339] 1 test failed: test_format Message-ID: <1649606642.69.0.330484090904.issue422339@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34477 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422339> _______________________________________ 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: [issue422121] Insecurities in dict comparison Message-ID: <1649606642.38.0.128606283334.issue422121@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34471 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422121> _______________________________________ 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: [issue428795] Use absolut paths when importing PYDs Message-ID: <1649606645.66.0.188119432672.issue428795@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34561 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428795> _______________________________________ 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: [issue429570] GC objects are tracked prematurely Message-ID: <1649606646.17.0.339075323531.issue429570@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34577 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429570> _______________________________________ 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: [issue430160] CGIHTTPServer.py POST bug using IE Message-ID: <1649606646.33.0.0396042117381.issue430160@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34582 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430160> _______________________________________ 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: [issue430754] Makes ftpmirror.py .netrc aware Message-ID: <1649606646.6.0.398089458965.issue430754@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34589 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430754> _______________________________________ 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: [issue431060] print 'foo',;readline() softspace error Message-ID: <1649606646.77.0.149453727884.issue431060@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34596 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431060> _______________________________________ 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: [issue431422] "print" not emitting POP_TOP Message-ID: <1649606646.84.0.0927987099736.issue431422@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34599 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431422> _______________________________________ 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: [issue431848] mathmodule.c: doc strings & conversion Message-ID: <1649606646.9.0.403080856029.issue431848@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34601 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue431848> _______________________________________ 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: [issue421434] python-mode.el 4.1 "\" continuations Message-ID: <1649606641.87.0.236807411495.issue421434@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34458 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue421434> _______________________________________ 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: [issue424554] pythonrun.c: bag the _Py_AskYesNo call Message-ID: <1649606643.92.0.181532120436.issue424554@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34510 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424554> _______________________________________ 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: [issue432265] time.strptime for Windows Message-ID: <1649606647.15.0.523074011866.issue432265@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34610 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432265> _______________________________________ 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: [issue432373] [Windows] file.tell() gives wrong value Message-ID: <1649606647.22.0.263077952612.issue432373@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34613 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue432373> _______________________________________ 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: [issue430200] corrupt floats in lists & tuples Message-ID: <1649606646.43.0.524669202275.issue430200@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34584 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue430200> _______________________________________ 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: [issue428419] include/rangeobject.h needs extern "C" Message-ID: <1649606645.55.0.0120395092086.issue428419@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34558 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue428419> _______________________________________ 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: [issue433047] missing args to PyArg_ParseTuple Message-ID: <1649606647.86.0.468672019649.issue433047@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34629 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue433047> _______________________________________ 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: [issue425868] mimify.mime_encode_header problem Message-ID: <1649606644.54.0.95264163832.issue425868@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34526 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425868> _______________________________________ 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: [issue434975] Typo on Posix Large File Support page Message-ID: <1649606648.68.0.394083162143.issue434975@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34652 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue434975> _______________________________________ 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: [issue429361] popen2.Popen3.wait() exit code Message-ID: <1649606646.04.0.711464775489.issue429361@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34573 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429361> _______________________________________ 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: [issue436621] sgmllib tag/attrib regexpr too strict? Message-ID: <1649606649.64.0.200421672754.issue436621@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34677 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue436621> _______________________________________ 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: [issue426735] [Linux] Threaded Python program hangs Message-ID: <1649606644.77.0.73441343642.issue426735@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34535 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue426735> _______________________________________ 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: [issue438032] Documentation errors in module "profile" Message-ID: <1649606650.17.0.070172161147.issue438032@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34693 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438032> _______________________________________ 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: [issue438083] uu module allows hostile paths Message-ID: <1649606650.24.0.9514939918.issue438083@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34695 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue438083> _______________________________________ 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: [issue440153] sgmllib docstrings added Message-ID: <1649606651.32.0.278275032464.issue440153@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34725 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440153> _______________________________________ 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: [issue439823] poll docs should mention timeout unit Message-ID: <1649606650.97.0.557104467169.issue439823@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34714 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439823> _______________________________________ 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: [issue439436] time.strftime with "%z" incorrect Message-ID: <1649606650.88.0.2729442001.issue439436@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34711 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439436> _______________________________________ 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: [issue439993] infinite loop in re.match Message-ID: <1649606651.11.0.549002029888.issue439993@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34718 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue439993> _______________________________________ 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: [issue440487] int to the negative power -> float Message-ID: <1649606651.67.0.316079303565.issue440487@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34735 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440487> _______________________________________ 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: [issue440827] Tests for dircache.py Message-ID: <1649606651.92.0.13917564909.issue440827@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34742 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue440827> _______________________________________ 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: [issue442627] Makefile Fails on "unset" Under OpenBSD Message-ID: <1649606652.94.0.0701181255221.issue442627@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34779 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442627> _______________________________________ 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: [issue442758] 2.2a1: New style classes and __cmp__ Message-ID: <1649606653.09.0.0744015795242.issue442758@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34785 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442758> _______________________________________ 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: [issue443551] Minor change to pager choice in pydoc.py Message-ID: <1649606653.62.0.0397794656048.issue443551@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34806 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443551> _______________________________________ 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: [issue443673] Build _socket on cygwin32 Message-ID: <1649606653.79.0.883545745892.issue443673@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34812 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443673> _______________________________________ 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: [issue443669] Permit _tkinter to build on cygwin32 Message-ID: <1649606653.76.0.583862314852.issue443669@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34811 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443669> _______________________________________ 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: [issue443005] 2.2a1: crash via posix_do_stat Message-ID: <1649606653.35.0.156214402151.issue443005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34796 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443005> _______________________________________ 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: [issue443783] Cygwin32 builds threads, but they hang Message-ID: <1649606653.92.0.946948241055.issue443783@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34816 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443783> _______________________________________ 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: [issue444493] u'\U00010001' segfaults with current CVS Message-ID: <1649606654.27.0.0506943366792.issue444493@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34828 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue444493> _______________________________________ 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: [issue443474] from __future__ import division Message-ID: <1649606653.57.0.705591023314.issue443474@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34804 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443474> _______________________________________ 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: [issue445749] Tutorial (5.6) "Smaller" means "lesser" Message-ID: <1649606655.44.0.817539121136.issue445749@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34854 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue445749> _______________________________________ 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: [issue442791] 2.2a1: New style classes and __delitem__ Message-ID: <1649606653.11.0.327256359866.issue442791@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34786 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue442791> _______________________________________ 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: [issue448261] OSX patches - review wanted Message-ID: <1649606657.29.0.909263824769.issue448261@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34900 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448261> _______________________________________ 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: [issue448227] execfile(dir) no longer works Message-ID: <1649606657.25.0.305034095542.issue448227@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34899 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448227> _______________________________________ 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: [issue443762] dictionary type ignores argument list Message-ID: <1649606653.85.0.620617321379.issue443762@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34814 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443762> _______________________________________ 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: [issue448352] returning stack frames scrambles globals Message-ID: <1649606657.41.0.255787149171.issue448352@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34903 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue448352> _______________________________________ 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: [issue443490] 2.2 Install on Linux/Mod Install Error Message-ID: <1649606653.58.0.0445433065543.issue443490@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34805 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue443490> _______________________________________ 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: [issue446551] profiler invents error in nested scopes Message-ID: <1649606656.11.0.140454488693.issue446551@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34873 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446551> _______________________________________ 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: [issue450245] Error in parsing future stmts Message-ID: <1649606659.11.0.288795899466.issue450245@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34948 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450245> _______________________________________ 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: [issue449637] Remove NT special case in asycnore Message-ID: <1649606658.69.0.394190613148.issue449637@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34935 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449637> _______________________________________ 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: [issue449991] xml.dom.pulldom exception for integers Message-ID: <1649606658.95.0.0754774477955.issue449991@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34944 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue449991> _______________________________________ 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: [issue450583] Extend/embed tools for AIX Message-ID: <1649606659.31.0.81709219314.issue450583@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34956 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450583> _______________________________________ 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: [issue451295] HTTPS bugs in urllib2 Message-ID: <1649606659.69.0.414000919259.issue451295@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34970 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451295> _______________________________________ 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: [issue450981] Add module docstring - xmlrpc Message-ID: <1649606659.58.0.923056701586.issue450981@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34966 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue450981> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452144] How to install some stuff to /usr/sbin Message-ID: <1649606660.25.0.524178810613.issue452144@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34988 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452144> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452154] globaling a variable twice issues warn Message-ID: <1649606660.28.0.268452113234.issue452154@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34989 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452154> _______________________________________ 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: [issue451305] Indeterminate progress bars Message-ID: <1649606659.71.0.40074637075.issue451305@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34971 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue451305> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452221] __dynamic__ should be on by default Message-ID: <1649606660.37.0.967814135814.issue452221@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34993 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452221> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452836] BoundedSemaphore class Message-ID: <1649606660.68.0.945238960145.issue452836@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35003 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452836> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue453059] Nasty bug in HTMLParser.py Message-ID: <1649606660.78.0.328713660402.issue453059@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35006 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453059> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue453099] select in asyncore not defensive Message-ID: <1649606660.82.0.0366651148777.issue453099@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35007 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453099> _______________________________________ 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: [issue446588] Python-2.2a1 build dies Message-ID: <1649606656.19.0.10012611092.issue446588@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34874 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446588> _______________________________________ 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: [issue446907] Allow jython to complete test_import Message-ID: <1649606656.56.0.475009746543.issue446907@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34881 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue446907> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453523] list.sort crasher Message-ID: <1649606661.21.0.365281773186.issue453523@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35016 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453523> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453683] In 2.2, types are callable Message-ID: <1649606661.34.0.867542590861.issue453683@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35019 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453683> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453677] statements should return a value Message-ID: <1649606661.31.0.61113517921.issue453677@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35018 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453677> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue453914] bad example in pickle documentation Message-ID: <1649606661.53.0.602032276504.issue453914@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35024 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue453914> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:21 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:21 +0000 Subject: [issue454456] int overflow code needs tests Message-ID: <1649606661.94.0.499876356908.issue454456@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35031 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454456> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue454790] Have getopt handle optional short args Message-ID: <1649606662.12.0.0376554556844.issue454790@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35036 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue454790> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455003] time module Message-ID: <1649606662.35.0.165565944285.issue455003@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35042 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455003> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:22 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:22 +0000 Subject: [issue455231] Python 2.2a2 -- OpenBSD a.out and ELF build fixes. Message-ID: <1649606662.62.0.199797714037.issue455231@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35048 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue455231> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456222] LateX's author is not Donald Knuth Message-ID: <1649606663.27.0.347585801294.issue456222@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35064 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456222> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456175] add dictionary "tokens" to token.py Message-ID: <1649606663.11.0.453905365164.issue456175@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35062 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456175> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456393] missing test_locale output Message-ID: <1649606663.42.0.851041330235.issue456393@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35069 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456393> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456420] no __methods__ for lists, strings etc. Message-ID: <1649606663.49.0.475048879129.issue456420@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35072 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456420> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456395] test_pty failure under IRIX Message-ID: <1649606663.44.0.69929878251.issue456395@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35070 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456395> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:23 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:23 +0000 Subject: [issue456736] Remember __future__ imports in IDE Message-ID: <1649606663.71.0.661698607252.issue456736@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35076 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue456736> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458245] Reduce import time for xmlrpclib Message-ID: <1649606664.37.0.201206709904.issue458245@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35098 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458245> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:20 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:20 +0000 Subject: [issue452266] thread.kill_thread Message-ID: <1649606660.53.0.433809383926.issue452266@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34999 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue452266> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458253] pre-allocated dictionaries Message-ID: <1649606664.39.0.811031592356.issue458253@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35099 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458253> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458874] Long module names fail on the Mac Message-ID: <1649606664.92.0.668111203375.issue458874@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35119 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458874> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460112] SMTP AUTH patch Message-ID: <1649606665.63.0.326918841036.issue460112@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35143 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460112> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459464] Math_test overflowerror on sparc64 linux Message-ID: <1649606665.52.0.264408629284.issue459464@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35139 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459464> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459423] setup.py ignores OPT make variable Message-ID: <1649606665.42.0.216003725411.issue459423@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35136 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459423> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue459767] ftplib fails with files > 2GB Message-ID: <1649606665.57.0.227034961884.issue459767@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35141 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue459767> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460613] test_commands fails on SGI Message-ID: <1649606665.95.0.0468187557909.issue460613@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35154 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460613> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460532] minidom.Node.text(), per TODO Message-ID: <1649606665.9.0.371198446045.issue460532@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35152 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460532> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:25 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:25 +0000 Subject: [issue460554] Fix asyncore.dispatcher.__repr__ Message-ID: <1649606665.92.0.0163493850592.issue460554@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35153 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue460554> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462848] test_descr causes unaligned access Message-ID: <1649606667.48.0.192974006844.issue462848@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35203 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462848> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:26 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:26 +0000 Subject: [issue461611] listextend memory leak Message-ID: <1649606666.44.0.895403129515.issue461611@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35172 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue461611> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463177] ftplib broken passive mode Message-ID: <1649606667.65.0.561468664635.issue463177@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35208 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463177> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463576] socketmodule doesn't build on libc5 linu Message-ID: <1649606667.96.0.63072537984.issue463576@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35219 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463576> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue462737] unicodeobject.h uses quoted includes Message-ID: <1649606667.37.0.0904084622858.issue462737@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35199 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue462737> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue464405] freeze doesn't like DOS files on Linux Message-ID: <1649606668.33.0.677787819674.issue464405@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35229 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue464405> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:27 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:27 +0000 Subject: [issue463421] speed up md5 module with real memcpy/set Message-ID: <1649606667.87.0.546390105314.issue463421@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35216 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue463421> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465447] os.makedirs can fail with UNC paths Message-ID: <1649606668.68.0.334577900853.issue465447@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35239 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465447> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466877] SIGBREAK is missing from signal module Message-ID: <1649606669.36.0.623176559959.issue466877@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35256 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466877> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466894] property <-> PyGetSetDef Message-ID: <1649606669.4.0.961407739856.issue466894@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35257 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466894> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467336] doctest failures w/ new-style classes Message-ID: <1649606669.92.0.92172654039.issue467336@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35268 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467336> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467059] htmllib broken Message-ID: <1649606669.51.0.745988215636.issue467059@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35262 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467059> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465502] urllib2: urlopen unicode problem Message-ID: <1649606668.78.0.526144239285.issue465502@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35241 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465502> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467763] test_support's run_suite() is broken Message-ID: <1649606670.22.0.364564329746.issue467763@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35277 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467763> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue467650] Add some --without-* options to setup.py Message-ID: <1649606670.18.0.26871185835.issue467650@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35276 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467650> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468662] Allow jython to complete test_grammar Message-ID: <1649606670.7.0.677047048157.issue468662@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35293 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468662> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470072] Change in Unicode response to t# Message-ID: <1649606671.13.0.78389120984.issue470072@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35309 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470072> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470433] Python shouldn't clobber TCL_LIBRARY Message-ID: <1649606671.28.0.980191331317.issue470433@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35314 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470433> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470429] relax data representation spec Message-ID: <1649606671.25.0.524664267749.issue470429@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35313 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470429> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470614] PyMarshal_ReadFileFromLong() Message-ID: <1649606671.41.0.527609509539.issue470614@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35318 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470614> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471828] x<<n loses bits in 2.2.a4 Message-ID: <1649606671.89.0.956708097719.issue471828@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35335 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471828> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue471928] global made w/nested list comprehensions Message-ID: <1649606672.07.0.285672473847.issue471928@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35341 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471928> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472523] Reminder: 2.3 should check tp_compare Message-ID: <1649606672.34.0.381817506255.issue472523@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35349 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472523> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471202] bit shift operator << precedence Message-ID: <1649606671.68.0.522421034327.issue471202@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35327 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471202> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472675] CVS socketmodule now doesn't compile Message-ID: <1649606672.53.0.443101726883.issue472675@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35355 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472675> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472940] can't getattr() attribute shown by dir() Message-ID: <1649606672.74.0.0903011034376.issue472940@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35361 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472940> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue473002] Update Demo/tix tixwidgets.py et al. Message-ID: <1649606672.79.0.702119267192.issue473002@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35363 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473002> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472956] UMR when there is a syntax error Message-ID: <1649606672.77.0.747356923491.issue472956@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35362 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472956> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue473150] configure weaknesses on HP-UX Message-ID: <1649606672.87.0.428836304069.issue473150@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35366 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473150> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue473060] Doc/ doesn't compile in 2.2b1 Message-ID: <1649606672.84.0.492005351846.issue473060@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35365 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473060> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473265] UpdatePairedHandlers nonsensical Message-ID: <1649606673.04.0.944943841093.issue473265@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35370 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473265> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470633] segfault with 2.2a4 Message-ID: <1649606671.44.0.367429269881.issue470633@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35319 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470633> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473512] getopt with GNU style scanning Message-ID: <1649606673.22.0.0463386772417.issue473512@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35375 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473512> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473456] float round up on decimal numbers Message-ID: <1649606673.14.0.0716980375628.issue473456@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35373 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473456> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473274] Tut. 6.3: __builtins__ misspelled Message-ID: <1649606673.06.0.9274957781.issue473274@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35371 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473274> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473433] resource.RLIMIT_VMEM not always defined Message-ID: <1649606673.11.0.0580978957124.issue473433@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35372 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473433> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473623] Emacs: python-mode.el Message-ID: <1649606673.42.0.379763256699.issue473623@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35380 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473623> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473788] CVS socket module does not compile on Tru64 Message-ID: <1649606673.58.0.744425534181.issue473788@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35383 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473788> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473985] str, __getitem__ and slices Message-ID: <1649606673.67.0.146226853681.issue473985@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35385 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473985> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473525] pyclbr broken Message-ID: <1649606673.32.0.205685161158.issue473525@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35377 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473525> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue474175] file.readinto arg parsing bug Message-ID: <1649606673.82.0.824321573553.issue474175@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35389 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474175> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472881] distutils does not deduce dependencies Message-ID: <1649606672.7.0.613609565253.issue472881@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35360 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472881> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue474274] Pure Python strptime() (PEP 42) Message-ID: <1649606673.89.0.271303200661.issue474274@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35391 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474274> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue474077] 2.2b1: Error compiling extns with BCC Message-ID: <1649606673.74.0.544032324749.issue474077@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35387 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474077> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue473009] binascii_b2a_base64() improper str limit Message-ID: <1649606672.81.0.276304538561.issue473009@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35364 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473009> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474307] Fix send() to send all data Message-ID: <1649606674.02.0.685037662076.issue474307@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35392 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474307> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474500] Make OS/2 locks work like posix locks Message-ID: <1649606674.14.0.73622879587.issue474500@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35394 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474500> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475009] build_scripts.post_interp is None Message-ID: <1649606674.66.0.84934475536.issue475009@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35408 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475009> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475046] Nonblocking SSL Message-ID: <1649606674.76.0.826188322591.issue475046@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35411 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475046> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue466804] "x.__type__" in object.__init__.__doc__ Message-ID: <1649606669.34.0.939720631605.issue466804@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35255 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue466804> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue470607] HTML version of the Idle "documentation" Message-ID: <1649606671.38.0.0282665758191.issue470607@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35317 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue470607> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476129] gc.collect sometimes hangs Message-ID: <1649606675.17.0.0240314685148.issue476129@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35423 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476129> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:31 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:31 +0000 Subject: [issue471615] Incorrepopen2 exit status misrepresented Message-ID: <1649606671.81.0.655146038764.issue471615@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35332 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue471615> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue475045] Nonblocking SSL Message-ID: <1649606674.74.0.695252616701.issue475045@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35410 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue475045> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477330] add __slot_docs__ and __slot_types__ Message-ID: <1649606676.07.0.0546537355334.issue477330@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35448 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477330> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468169] fix for bug #448951 (re group handling) Message-ID: <1649606670.48.0.642545121387.issue468169@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35285 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468169> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477336] hmac module bugfixes and testsuite Message-ID: <1649606676.1.0.967955655657.issue477336@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35449 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477336> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477963] Bad gc performance Message-ID: <1649606676.48.0.215335364462.issue477963@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35459 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477963> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478002] problem in _sre.c Message-ID: <1649606676.59.0.840500576631.issue478002@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35462 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478002> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478421] cPickle bug when using imp.load_source() Message-ID: <1649606676.86.0.617262609547.issue478421@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35472 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478421> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478428] dbm build fails Message-ID: <1649606676.92.0.513218417617.issue478428@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35474 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478428> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue478887] imaplib patch Message-ID: <1649606677.12.0.657609522232.issue478887@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35482 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478887> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue479469] File copy fails on True64 AFS file syste Message-ID: <1649606677.24.0.660936226575.issue479469@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35487 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue479469> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:30 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:30 +0000 Subject: [issue468118] gzipmodule.c has wrong URL in comment Message-ID: <1649606670.4.0.0229146723851.issue468118@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35282 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue468118> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:35 +0000 Subject: [issue476326] Unicode in sys.path not supported Message-ID: <1649606675.27.0.584732657396.issue476326@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35426 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue476326> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481060] dylib & ncurses patches for Mac OS X for Python 2.1.2 Message-ID: <1649606678.01.0.179916175353.issue481060@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35511 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481060> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481171] Hang using files named prn.txt, etc Message-ID: <1649606678.12.0.913405882101.issue481171@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35515 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481171> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481218] popen4 fails if cmd is unicode. Message-ID: <1649606678.18.0.966128393592.issue481218@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35516 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481218> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480967] SHA 256/384/512 in Python 2.2 Message-ID: <1649606677.97.0.753679483502.issue480967@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35510 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480967> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481225] rfc822.Addresslist fails on long addrs Message-ID: <1649606678.23.0.089744736572.issue481225@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35518 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481225> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481972] Explanation of installation Message-ID: <1649606678.62.0.0497649479332.issue481972@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35529 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481972> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue481985] Uncaught MI order conflict Message-ID: <1649606678.65.0.236852458765.issue481985@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35530 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue481985> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482510] bug in slicing time.struct_time Message-ID: <1649606678.79.0.57908263665.issue482510@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35535 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482510> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:29 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:29 +0000 Subject: [issue467384] provide a documented serialization func Message-ID: <1649606669.96.0.168031427418.issue467384@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35270 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue467384> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478291] 1./4 -> core on IRIX Message-ID: <1649606676.75.0.792332410006.issue478291@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35468 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478291> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483466] Import from Zip Archive, Obsolete Message-ID: <1649606679.26.0.0483862441638.issue483466@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35548 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483466> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480384] UMR in curses module Message-ID: <1649606677.73.0.425228871343.issue480384@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35502 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480384> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue484950] docs suggest no cyclic garbage collectio Message-ID: <1649606680.06.0.583023756915.issue484950@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35570 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484950> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:28 +0000 Subject: [issue465298] Fix for xmlrpclib's recursive dump Message-ID: <1649606668.59.0.103189279282.issue465298@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35236 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue465298> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485572] Distutils -- set runtime library path Message-ID: <1649606681.08.0.155567057297.issue485572@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35591 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485572> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485678] Use of __del__ on descriptors ambiguous Message-ID: <1649606681.14.0.303633877203.issue485678@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35593 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485678> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482631] Integrate Pynche enhancements Message-ID: <1649606678.88.0.395365005747.issue482631@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35538 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482631> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485959] Final set of patches to Demo/tix Message-ID: <1649606681.34.0.405348005967.issue485959@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35602 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485959> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486144] Uninitialized __slot__ vrbl is None Message-ID: <1649606681.51.0.520116405919.issue486144@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35605 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486144> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486438] makes doctest.testmod() to work Message-ID: <1649606681.71.0.530013855835.issue486438@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35611 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486438> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486527] xmlrpclib can produce ill-formed XML Message-ID: <1649606681.8.0.96639845229.issue486527@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35614 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486527> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486500] cgitb,inspect,pydoc Message-ID: <1649606681.78.0.958811461007.issue486500@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35613 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486500> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486530] replace sprintf with PyOS_snprintf Message-ID: <1649606681.85.0.809354026559.issue486530@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35615 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486530> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485766] install hangs Message-ID: <1649606681.19.0.870186852797.issue485766@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35596 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485766> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487193] ftplib violates rfc1123 section 4.1.2.6 Message-ID: <1649606682.13.0.317151240979.issue487193@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35624 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487193> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485142] memory leak in test_binop Message-ID: <1649606680.44.0.195817885177.issue485142@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35578 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485142> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487317] tcl83.dll is corrupt Message-ID: <1649606682.36.0.648970412282.issue487317@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35630 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487317> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:42 +0000 Subject: [issue487455] make types.StringTypes a tuple Message-ID: <1649606682.55.0.295947653218.issue487455@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35634 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487455> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue485860] Broken links in docs - section 15.2 SHA Message-ID: <1649606681.27.0.768488418922.issue485860@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35600 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485860> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue487739] test_weaklist Message-ID: <1649606683.0.0.709861091853.issue487739@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35643 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487739> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485152] memory leak in test_scope Message-ID: <1649606680.76.0.0997597762133.issue485152@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35581 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485152> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:40 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:40 +0000 Subject: [issue485150] memory leak from marshal.c (test_email) Message-ID: <1649606680.7.0.76246899865.issue485150@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35580 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue485150> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue487784] Fixes a bug in popen3/4 handling on UNIX Message-ID: <1649606683.06.0.863066845376.issue487784@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35645 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487784> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue487906] update inline docs in stringobject.c Message-ID: <1649606683.09.0.0105555970633.issue487906@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35646 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487906> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486565] Mac OS 10.1: unobvious: --with-suffix Message-ID: <1649606681.9.0.800727272961.issue486565@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35616 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486565> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488420] Search Python Docs script broken Message-ID: <1649606683.26.0.182194584791.issue488420@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35652 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488420> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489066] Include RLIM_INFINITY constant Message-ID: <1649606683.67.0.384088249812.issue489066@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35663 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489066> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489173] Make os.spawnv not block the interpreter Message-ID: <1649606683.75.0.791222083.issue489173@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35666 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489173> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489669] memory leak in test_descr (unicode) Message-ID: <1649606683.98.0.553965455971.issue489669@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35673 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489669> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488480] integer multiply to return -max_int-1 Message-ID: <1649606683.45.0.0338077838774.issue488480@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35655 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488480> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489256] Lib/profile.doc should be updated Message-ID: <1649606683.8.0.551142865409.issue489256@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35667 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489256> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489581] __slots__ leak!!! Message-ID: <1649606683.96.0.000561446441535.issue489581@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35672 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489581> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489513] asyncore docs: no loop(), funny structur Message-ID: <1649606683.91.0.763980721576.issue489513@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35670 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489513> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue489514] asyncore docs: no loop(), funny structur Message-ID: <1649606683.94.0.841637780548.issue489514@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35671 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue489514> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488073] AtheOS port of Python 2.2b2 Message-ID: <1649606683.15.0.519632774255.issue488073@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35648 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488073> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490330] String format bug in test_b2 Message-ID: <1649606684.44.0.376719116764.issue490330@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35688 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490330> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490374] make inspect.stack() work with PyShell Message-ID: <1649606684.47.0.694709227083.issue490374@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35689 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490374> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490100] Lets Tkinter work with MacOSX native Tk Message-ID: <1649606684.32.0.949251956179.issue490100@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35685 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490100> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490573] re.match('^a*?$', 'foo') fails Message-ID: <1649606684.78.0.984363975917.issue490573@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35700 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490573> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491301] a bad tuple comparison Message-ID: <1649606685.14.0.665330435247.issue491301@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35712 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491301> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:41 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:41 +0000 Subject: [issue486375] Use charset in email.Utils.encode Message-ID: <1649606681.65.0.96358234651.issue486375@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35609 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue486375> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue491033] asyncore - api doesn't provide doneevent Message-ID: <1649606684.95.0.74404522282.issue491033@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35706 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491033> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491736] Eliminate redundant code in PyString_Fro Message-ID: <1649606685.43.0.00836109712853.issue491736@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35722 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491736> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue491567] *a and **k in call arglist undocumented? Message-ID: <1649606685.41.0.713612629222.issue491567@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35721 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue491567> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:44 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:44 +0000 Subject: [issue490811] Jython and test_string Message-ID: <1649606684.81.0.281988373565.issue490811@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35701 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue490811> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492386] Cascading menu bug on Linux Message-ID: <1649606685.76.0.610939602629.issue492386@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35731 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492386> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492349] detail: tp_basicsize and tp_itemsize Message-ID: <1649606685.72.0.734394899478.issue492349@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35730 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492349> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:46 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:46 +0000 Subject: [issue493631] Problem with mpz module (gmp4) Message-ID: <1649606686.46.0.782652157488.issue493631@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35750 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue493631> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494100] warn about $(CONFINCLUDEPY)/config.h Message-ID: <1649606687.19.0.139297979525.issue494100@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35767 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494100> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494553] Simple CarbonEvt.GetEventParameter implementation Message-ID: <1649606687.39.0.257437668973.issue494553@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35772 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494553> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:45 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:45 +0000 Subject: [issue492105] Import from Zip archive Message-ID: <1649606685.58.0.328965820773.issue492105@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35727 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue492105> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494783] diffs for Windows CE - Include/Opcode.h Message-ID: <1649606687.78.0.969196270548.issue494783@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35781 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494783> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494854] add platform.py Message-ID: <1649606687.9.0.376894543.issue494854@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35783 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494854> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue494873] add tests for complex numbers Message-ID: <1649606688.05.0.0613206497839.issue494873@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35788 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494873> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495094] evaluating integers inconsistently Message-ID: <1649606688.26.0.114600580916.issue495094@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35794 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495094> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495369] 2.2c1 framework install incomplete Message-ID: <1649606688.45.0.757791727581.issue495369@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35798 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495369> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue495875] pgen fails with unresolved symbols Message-ID: <1649606689.16.0.0323431711343.issue495875@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35812 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495875> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:47 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:47 +0000 Subject: [issue494620] pydoc library documentation Message-ID: <1649606687.58.0.154569474776.issue494620@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35776 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue494620> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496171] FD_CLOEXEC no longer available Message-ID: <1649606689.45.0.417692080494.issue496171@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35819 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496171> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496705] Additions & corrections to libmacui.tex Message-ID: <1649606689.55.0.22287153707.issue496705@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35823 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496705> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue496905] Don't build curses on MacOSX Message-ID: <1649606689.7.0.687906319469.issue496905@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35827 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue496905> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495548] troublesome #define in pyport.h Message-ID: <1649606688.63.0.27317113934.issue495548@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35800 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495548> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:48 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:48 +0000 Subject: [issue495191] os.spawnlp not supported under Windows Message-ID: <1649606688.31.0.126354086921.issue495191@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35795 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue495191> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497126] dl module and flags Message-ID: <1649606690.02.0.148664782826.issue497126@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35838 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497126> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497160] test_commands assumes ls is in /bin Message-ID: <1649606690.04.0.90819245139.issue497160@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35839 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497160> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497111] active_limbo_lock error at program exit Message-ID: <1649606689.98.0.617664643125.issue497111@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35837 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497111> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497410] Builtin min()/max() semantic changed Message-ID: <1649606690.12.0.570808940504.issue497410@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35841 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497410> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497420] ftplib: ftp anonymous password Message-ID: <1649606690.14.0.260758580262.issue497420@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35842 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497420> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497839] reindent chokes on empty first lines Message-ID: <1649606690.31.0.865312040863.issue497839@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35848 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497839> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499513] robotparser.py fails on some URLs Message-ID: <1649606690.8.0.775640862608.issue499513@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35863 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499513> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:49 +0000 Subject: [issue497067] Allow traceback analysis from C/C++... Message-ID: <1649606689.81.0.84152461021.issue497067@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35831 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497067> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue499788] Assertion failed (eval_code2) Message-ID: <1649606690.93.0.653647174877.issue499788@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35867 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499788> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue499940] Work around for buggy https servers Message-ID: <1649606691.0.0.849881152113.issue499940@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35869 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue499940> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500311] Work around for buggy https servers Message-ID: <1649606691.2.0.256427077194.issue500311@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35875 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500311> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500539] Inaccuracy(?) in tutorial section 9.2 Message-ID: <1649606691.36.0.125903937989.issue500539@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35880 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500539> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:50 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:50 +0000 Subject: [issue497162] test_email assumes Unix uses NTP scale Message-ID: <1649606690.09.0.985406472991.issue497162@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35840 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue497162> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue501831] Bit support in "array" module Message-ID: <1649606692.06.0.163773306753.issue501831@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35899 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue501831> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue504219] locale.resetlocale is broken Message-ID: <1649606692.93.0.304990605261.issue504219@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35920 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504219> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504723] Bad exceptions from pickle Message-ID: <1649606693.58.0.145036379454.issue504723@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35933 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504723> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504284] Last build problems on AIX Message-ID: <1649606693.25.0.461046447962.issue504284@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35926 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504284> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue505150] mac module documentation inaccuracy. Message-ID: <1649606693.76.0.821415914867.issue505150@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35938 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505150> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue505423] Get rid of make frameworkinstall Message-ID: <1649606693.97.0.529845337611.issue505423@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35943 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505423> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505427] socket module fails to build on HPUX10 Message-ID: <1649606694.0.0.0753501384544.issue505427@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35944 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505427> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue505747] markupbase handling of HTML declarations Message-ID: <1649606694.33.0.533489550579.issue505747@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35953 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue505747> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue506611] sys.setprofile() coredumps Message-ID: <1649606694.71.0.747297772448.issue506611@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35961 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue506611> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508263] complex() doesn't call __complex__ Message-ID: <1649606695.37.0.434942825256.issue508263@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35975 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508263> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue507962] tk.splitlist does not support Unicode Message-ID: <1649606695.18.0.839316246271.issue507962@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35971 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue507962> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue509805] tempfile.gettempdir not threadsafe Message-ID: <1649606695.78.0.179027874667.issue509805@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35989 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue509805> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:53 +0000 Subject: [issue504225] add plan9 ifdef to timemodule floatsleep Message-ID: <1649606693.08.0.682025438913.issue504225@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35922 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue504225> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue510825] PTHREAD_SCOPE_SYSTEM support for HP-UX Message-ID: <1649606696.14.0.379672294653.issue510825@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36001 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510825> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue508269] 'true' division - perceived misnormer Message-ID: <1649606695.41.0.651623511264.issue508269@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35976 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue508269> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511655] Readline: unwanted filename completion Message-ID: <1649606696.45.0.859690367438.issue511655@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36012 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511655> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511261] WIN32 os.path.normpath('./') incorrect Message-ID: <1649606696.34.0.498478274769.issue511261@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36008 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511261> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511737] ConfigParser bug/limitation Message-ID: <1649606696.5.0.172625227052.issue511737@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36013 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511737> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512005] getrusage() returns struct-like object. Message-ID: <1649606696.63.0.756007290728.issue512005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36018 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512005> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512007] make test failure on sunos5 Message-ID: <1649606696.66.0.173096635769.issue512007@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36019 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512007> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511962] Allow sys.setdlopenflags on OSX Message-ID: <1649606696.57.0.546595739541.issue511962@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36016 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511962> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512494] multi-line comment block clarification Message-ID: <1649606696.79.0.60780288558.issue512494@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36024 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512494> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512497] multi-line print statement Message-ID: <1649606696.81.0.399619684955.issue512497@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36025 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512497> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue509965] PropertyType is not defined in types.py Message-ID: <1649606695.82.0.562776346403.issue509965@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35990 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue509965> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511992] IDE: sys.stdout.flush() doesn't work Message-ID: <1649606696.6.0.112492529846.issue511992@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36017 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511992> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512660] findertools.reveal() broken Message-ID: <1649606696.84.0.265150170533.issue512660@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36026 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512660> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511193] Implement killpg in posixmodule Message-ID: <1649606696.28.0.545001458582.issue511193@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36006 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511193> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512490] muli-line comment suggestion Message-ID: <1649606696.76.0.364996474555.issue512490@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36023 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512490> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512871] Installation instructions are wrong Message-ID: <1649606696.9.0.951381690279.issue512871@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36028 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512871> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue510394] Add base classes for numeric types Message-ID: <1649606696.06.0.66239943751.issue510394@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35998 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510394> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513235] prevent readline filename completion Message-ID: <1649606697.02.0.531445345427.issue513235@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36031 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513235> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513329] build, install in HP-UX10.20 Message-ID: <1649606697.05.0.862963441398.issue513329@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36032 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513329> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513725] memory leak in VC6++ Message-ID: <1649606697.21.0.448974654275.issue513725@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36036 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513725> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513752] PEP 279 Simulator Message-ID: <1649606697.25.0.0569967601102.issue513752@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36037 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513752> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514433] bsddb: enable dbopen (file==NULL) Message-ID: <1649606697.39.0.736391346228.issue514433@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36042 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514433> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513666] unicode() docs don't mention LookupError Message-ID: <1649606697.13.0.155902961791.issue513666@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36034 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513666> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514627] pydoc fails to generate html doc Message-ID: <1649606697.5.0.403089579292.issue514627@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36046 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514627> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue513683] email.Parser uses LF as line sep. Message-ID: <1649606697.17.0.73529226115.issue513683@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36035 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue513683> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514628] bug in pydoc on python 2.2 release Message-ID: <1649606697.54.0.39554009759.issue514628@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36047 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514628> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:55 +0000 Subject: [issue507713] mem leak in imaplib Message-ID: <1649606695.15.0.13598848275.issue507713@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35970 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue507713> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514928] curses error in w.border() Message-ID: <1649606697.74.0.43113255578.issue514928@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36052 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514928> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511603] Error calling str on subclass of int Message-ID: <1649606696.42.0.565472244286.issue511603@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36011 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511603> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue515000] print result of f.tell() in test Message-ID: <1649606697.85.0.063030785934.issue515000@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36054 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515000> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514662] On the update_slot() behavior Message-ID: <1649606697.62.0.178679223626.issue514662@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36049 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514662> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue515004] cleanup lib/aifc.py Message-ID: <1649606697.94.0.902131530673.issue515004@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36056 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515004> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515011] remove or 0 from lib/httplib.py Message-ID: <1649606698.05.0.991356300185.issue515011@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36060 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515011> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515024] lib/urllib.py remove unused local Message-ID: <1649606698.32.0.105241541942.issue515024@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36068 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515024> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514443] Python cores with "viewcvs" - Cygwin Message-ID: <1649606697.41.0.561345977399.issue514443@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36043 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514443> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515022] lib/sre_parse has unused var Message-ID: <1649606698.25.0.142049943028.issue515022@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36066 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515022> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:52 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:52 +0000 Subject: [issue502077] signal module should include SIGINFO Message-ID: <1649606692.13.0.711595027601.issue502077@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35901 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue502077> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512799] webchecker protocol bug Message-ID: <1649606696.87.0.229736279784.issue512799@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36027 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512799> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511380] add CGIHTTPServer error supt for Win32 Message-ID: <1649606696.37.0.710824744851.issue511380@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36009 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511380> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue510910] File inheritance across exec/spawn Message-ID: <1649606696.2.0.0595172025702.issue510910@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36003 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue510910> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue512433] Quote handling in os.system & os.popen Message-ID: <1649606696.71.0.568569400373.issue512433@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36021 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue512433> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:56 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:56 +0000 Subject: [issue511219] suppress type restrictions on locals() Message-ID: <1649606696.31.0.574359498367.issue511219@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36007 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue511219> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516076] Assign boolean value to a weak reference Message-ID: <1649606699.01.0.837429913901.issue516076@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36084 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516076> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516372] test_thread: unhandled exc. in thread Message-ID: <1649606699.18.0.0764653899335.issue516372@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36088 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516372> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516532] cls.__module__ and metaclasses Message-ID: <1649606699.24.0.67286092773.issue516532@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36090 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516532> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517256] poor performance in xmlrpc response Message-ID: <1649606699.58.0.946970602411.issue517256@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36099 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517256> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517371] Add .count() method to tuples Message-ID: <1649606699.66.0.814070297917.issue517371@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36100 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517371> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517704] Installing Python 2.2 on Solaris 2.x Message-ID: <1649606699.88.0.264408399725.issue517704@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36106 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517704> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue515003] Added HTTP{,S}ProxyConnection Message-ID: <1649606697.87.0.657087103009.issue515003@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36055 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515003> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517451] Option processing in setup.cfg Message-ID: <1649606699.73.0.660745466411.issue517451@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36102 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517451> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517811] Extraneous \ escapes in code example Message-ID: <1649606699.91.0.307745855463.issue517811@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36107 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517811> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue518675] Adding galeon support Message-ID: <1649606700.07.0.73015611801.issue518675@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36112 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518675> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514676] multifile different in 2.2 from 2.1.1 Message-ID: <1649606697.65.0.890954518604.issue514676@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36050 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514676> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue516715] HTTPConnection.send() fails large reques Message-ID: <1649606699.38.0.249343565798.issue516715@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36093 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue516715> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520644] __slots__ are not pickled Message-ID: <1649606700.84.0.116991376136.issue520644@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36129 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520644> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520062] Support IPv6 with VC.NET Message-ID: <1649606700.59.0.761357247288.issue520062@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36124 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520062> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520382] Update Shelve to be more dictionary like Message-ID: <1649606700.74.0.0851597151421.issue520382@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36127 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520382> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue519028] make-pyexpat failed Message-ID: <1649606700.37.0.678138377801.issue519028@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36119 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue519028> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520694] arraymodule.c improvements Message-ID: <1649606700.95.0.27018895656.issue520694@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36131 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520694> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521478] mailbox / fromline matching Message-ID: <1649606701.21.0.852758904802.issue521478@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36138 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521478> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue522396] test_unicodedata fails on OSX Message-ID: <1649606701.99.0.398967805927.issue522396@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36154 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522396> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue522393] Doesn't build on SGI Message-ID: <1649606701.91.0.887571668974.issue522393@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36152 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522393> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue520087] Invalid PyWeakref_GetObject info Message-ID: <1649606700.64.0.832289151759.issue520087@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36125 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue520087> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523169] tests for simple list() and tuple(TUPLE) Message-ID: <1649606702.58.0.285936066065.issue523169@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36166 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523169> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:01 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:01 +0000 Subject: [issue521723] fcntl.ioctl on openbsd Message-ID: <1649606701.52.0.632796125432.issue521723@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36144 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue521723> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue523944] imputil.py can't import "\r\n" .py files Message-ID: <1649606703.18.0.75572171999.issue523944@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36181 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523944> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue524804] breaking file iter loop leaves file in stale state Message-ID: <1649606703.48.0.941773265485.issue524804@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36189 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue524804> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525121] tty shipped in win32 distribution Message-ID: <1649606703.58.0.825671715813.issue525121@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36191 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525121> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue524600] posixmodule.c fails Tru64 (stat macro) Message-ID: <1649606703.45.0.839790046335.issue524600@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36188 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue524600> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525520] httplib/HTTPConnetion: wrong HOST header Message-ID: <1649606703.75.0.88169271946.issue525520@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36196 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525520> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525532] Add support for POSIX semaphores Message-ID: <1649606703.78.0.140514509303.issue525532@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36197 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525532> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525684] Need character macro cheat sheet Message-ID: <1649606703.86.0.878408847801.issue525684@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36199 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525684> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525481] long double causes compiler warnings Message-ID: <1649606703.7.0.225522152562.issue525481@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36195 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525481> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523421] shelve update fails on "large" entry Message-ID: <1649606702.9.0.980535599448.issue523421@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36174 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523421> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue522898] Robotparser does not handle empty paths Message-ID: <1649606702.36.0.776786259259.issue522898@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36161 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522898> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526298] _socket unimportable Message-ID: <1649606704.17.0.336213961672.issue526298@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36208 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526298> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526384] Bug reports are ignored Message-ID: <1649606704.29.0.583144117694.issue526384@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36211 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526384> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526102] Namespace error with UserList Message-ID: <1649606704.1.0.672975489064.issue526102@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36206 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526102> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526357] cmd.py does not flush stdout Message-ID: <1649606704.21.0.281373412681.issue526357@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36209 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526357> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526390] Incomplete list of escape sequences Message-ID: <1649606704.32.0.119187181608.issue526390@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36212 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526390> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526518] str(cStringIO.StringIO) Message-ID: <1649606704.38.0.533049854046.issue526518@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36214 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526518> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526488] MachO time.daylight incorrect Message-ID: <1649606704.35.0.974301146417.issue526488@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36213 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526488> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526548] tixwidgets.py improperly indented Message-ID: <1649606704.41.0.893217296517.issue526548@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36215 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526548> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527027] Allow building python as shared library Message-ID: <1649606704.52.0.233821715869.issue527027@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36219 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527027> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527139] random.gammavariate hosed Message-ID: <1649606704.63.0.541159680551.issue527139@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36222 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527139> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527371] Fix for sre bug 470582 Message-ID: <1649606704.67.0.971382353543.issue527371@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36223 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527371> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527064] bogus URLs cause exception in httplib Message-ID: <1649606704.6.0.0503865145536.issue527064@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36221 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527064> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527434] Double inclusion of thread.o on Sol2.8 Message-ID: <1649606704.78.0.844350776429.issue527434@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36226 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527434> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527521] httplib strict mode fails in 2.2.2 Message-ID: <1649606704.85.0.801279936208.issue527521@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36228 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527521> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527816] (1).__nonzero__() dumps a core Message-ID: <1649606704.95.0.892199860449.issue527816@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36231 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527816> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527855] ftplib error (exception) handling bug Message-ID: <1649606705.0.0.092206633143.issue527855@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36232 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527855> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527668] pydoc should respect __all__ Message-ID: <1649606704.89.0.283463546674.issue527668@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36229 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527668> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528022] PEP 285 - Adding a bool type Message-ID: <1649606705.06.0.633034398441.issue528022@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36234 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528022> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525439] tcl: encoding not found Message-ID: <1649606703.67.0.463690211869.issue525439@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36194 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525439> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528132] classmethod().__get__() segfault Message-ID: <1649606705.12.0.38544856276.issue528132@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36236 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528132> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528038] __nonzero__ being improperly called Message-ID: <1649606705.09.0.762171017388.issue528038@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36235 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528038> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527783] popen3 hangs on windows Message-ID: <1649606704.92.0.757005474414.issue527783@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36230 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527783> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528295] asyncore unhandled write event Message-ID: <1649606705.19.0.702211626306.issue528295@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36238 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528295> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528438] test_math should run test_exceptions Message-ID: <1649606705.24.0.0544504271761.issue528438@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36239 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528438> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528879] segfaults with nl_langinfo Message-ID: <1649606705.41.0.382486170366.issue528879@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36243 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528879> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529104] broken error handling in unicode-escape Message-ID: <1649606705.62.0.697488723088.issue529104@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36248 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529104> _______________________________________ 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: [issue213960] Problems with reverse() in the array module Message-ID: <1649606542.19.0.609218444313.issue213960@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33081 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213960> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529135] test_pyclbr: bad dependency for input Message-ID: <1649606705.74.0.402063879914.issue529135@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36250 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529135> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528914] PyTraceBack_Store/Fetch are absent Message-ID: <1649606705.46.0.756146434108.issue528914@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36244 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528914> _______________________________________ 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: [issue401612] Prevent recursion limit when using ".*?xxx" Message-ID: <1649606545.54.0.452004138911.issue401612@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33182 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401612> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529273] WeakValueDictionary.setdefault() bug Message-ID: <1649606705.83.0.0403261516437.issue529273@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36252 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529273> _______________________________________ 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: [issue215146] time.strptime returns bad day of month Message-ID: <1649606545.47.0.591390173932.issue215146@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33180 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215146> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529132] test_pyclbr broken on 2.2 branch Message-ID: <1649606705.67.0.260180332066.issue529132@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36249 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529132> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue529713] Linking under AIX failing Message-ID: <1649606706.01.0.631846342719.issue529713@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36256 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529713> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529408] fix random.gammavariate bug #527139 Message-ID: <1649606705.86.0.689604132426.issue529408@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36253 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529408> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue529750] Circular reference makes Py_Init crash Message-ID: <1649606706.04.0.553600423863.issue529750@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36257 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529750> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue529923] re module syntax documentation omission Message-ID: <1649606706.13.0.338219621462.issue529923@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36259 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529923> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530105] file object may not be subtyped Message-ID: <1649606706.22.0.872569567197.issue530105@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36261 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530105> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue529768] Speed-up getattr Message-ID: <1649606706.1.0.24528775398.issue529768@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36258 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529768> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530143] Typo in 3.16 copy_reg doc Message-ID: <1649606706.25.0.217654835494.issue530143@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36262 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530143> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530070] pydoc regression Message-ID: <1649606706.16.0.302969921707.issue530070@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36260 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530070> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530637] Popen3 might cause dead lock Message-ID: <1649606706.46.0.218139536315.issue530637@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36268 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530637> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530236] os.py assumes existence of statvfs_resul Message-ID: <1649606706.33.0.094005482099.issue530236@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36265 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530236> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530556] Enable pymalloc Message-ID: <1649606706.42.0.18656064845.issue530556@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36267 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530556> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531291] Carbon.Res FS-based method problems Message-ID: <1649606706.76.0.724038120797.issue531291@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36273 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531291> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue522699] Segfault evaluating '%.100f' % 2.0**100 Message-ID: <1649606702.22.0.92020042285.issue522699@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36159 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue522699> _______________________________________ 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: [issue401647] adds SSL server socket support to socketmodule.c Message-ID: <1649606545.84.0.776750206355.issue401647@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33192 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401647> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531306] ucs4 build horked. Message-ID: <1649606706.78.0.224448174523.issue531306@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36274 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531306> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531205] Bugs in rfc822.parseaddr() Message-ID: <1649606706.58.0.759776986458.issue531205@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36271 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531205> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531262] Wrong result for Canvas.tag_bind(t, s) Message-ID: <1649606706.7.0.779062709863.issue531262@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36272 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531262> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531493] drop PyCore_* API layer Message-ID: <1649606706.93.0.528159599586.issue531493@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36279 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531493> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531480] Use new GC API (generators, iters, ...) Message-ID: <1649606706.88.0.0445813540927.issue531480@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36277 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531480> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531629] Add multicall support to xmlrpclib Message-ID: <1649606706.98.0.0257385555446.issue531629@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36281 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531629> _______________________________________ 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: [issue215353] os.popen4() missing on Unix Message-ID: <1649606546.33.0.613731732594.issue215353@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33203 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215353> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531616] HTTPS not working Message-ID: <1649606706.95.0.224535911903.issue531616@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36280 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531616> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue531901] binary packagers Message-ID: <1649606707.03.0.836009010619.issue531901@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36282 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531901> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue531966] email: problems generating multipart msg Message-ID: <1649606707.06.0.789356462905.issue531966@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36283 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531966> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532115] netrc module broken:not parsing macdefs Message-ID: <1649606707.15.0.476572616706.issue532115@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36285 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532115> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531491] PEP 4 update: deprecations Message-ID: <1649606706.9.0.176062757694.issue531491@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36278 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531491> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue531398] 221 still doesn't work on OS 8.1 Message-ID: <1649606706.85.0.476034260126.issue531398@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36276 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue531398> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530285] redefining SRE_CODE in Modules/sre.h Message-ID: <1649606706.38.0.200765835267.issue530285@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36266 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530285> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532388] reverse copy of sequence returns None Message-ID: <1649606707.3.0.138403982712.issue532388@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36288 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532388> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532180] fix xmlrpclib float marshalling bug Message-ID: <1649606707.26.0.379334802708.issue532180@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36287 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532180> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue528990] bug? in PyImport_ImportModule under AIX Message-ID: <1649606705.49.0.274577814008.issue528990@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36245 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue528990> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532621] gzip.GzipFile needs an iterator Message-ID: <1649606707.43.0.0109199887185.issue532621@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36291 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532621> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530882] import and execfile don't handle utf-16 Message-ID: <1649606706.49.0.893131950111.issue530882@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36269 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530882> _______________________________________ 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: [issue401529] urllib and redirects Message-ID: <1649606543.48.0.781179236738.issue401529@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33124 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401529> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532855] Corrupted .rsrc file Message-ID: <1649606707.88.0.592320920321.issue532855@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36299 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532855> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532807] References to misspelt API function name Message-ID: <1649606707.84.0.931577126576.issue532807@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36298 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532807> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532767] isinstance() should respect __class__ Message-ID: <1649606707.69.0.371919174136.issue532767@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36297 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532767> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532467] 6.9 The raise statement is confusing Message-ID: <1649606707.33.0.522134484759.issue532467@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36289 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532467> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533188] configure.in Assumes cc_r Exists on AIX. Message-ID: <1649606708.14.0.200239779845.issue533188@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36304 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533188> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533070] Silence AIX C Compiler Warnings. Message-ID: <1649606708.09.0.323780512317.issue533070@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36302 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533070> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533234] tm_isdst > 1 Passed to strftime. Message-ID: <1649606708.23.0.0966132513818.issue533234@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36306 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533234> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:05 +0000 Subject: [issue529586] Missing character in BNF Message-ID: <1649606705.92.0.47374168169.issue529586@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36254 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue529586> _______________________________________ 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: [issue211481] os.stat() doesn't return st_rdev Message-ID: <1649606535.99.0.674431033603.issue211481@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 32905 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211481> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:02 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:02 +0000 Subject: [issue523020] pickle/cPickle Inconsistent EOF handling Message-ID: <1649606702.44.0.905809751659.issue523020@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36163 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue523020> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532007] urllib ftp broken if Win32 proxy Message-ID: <1649606707.09.0.781795090444.issue532007@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36284 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532007> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue534807] C extension modules with same short name Message-ID: <1649606709.16.0.0724493942587.issue534807@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36328 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534807> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue534625] ftplib hangs: ftp=FTP('ftp.example.com') Message-ID: <1649606709.05.0.0310920206074.issue534625@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36325 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534625> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532136] README seems wrong. Message-ID: <1649606707.18.0.807236093284.issue532136@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36286 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532136> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532646] Recursive class instance "error" Message-ID: <1649606707.54.0.5059174268.issue532646@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36294 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532646> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue524066] Override sys.stdout.write newstyle class Message-ID: <1649606703.38.0.0358212789565.issue524066@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36186 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue524066> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue535905] Evil Trashcan and GC interaction Message-ID: <1649606710.11.0.552044569014.issue535905@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36341 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535905> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue535450] documentation in CHM format Message-ID: <1649606709.53.0.865303237662.issue535450@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36336 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535450> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue535545] make fails at posixmodule.c Message-ID: <1649606710.0.0.266223691334.issue535545@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36339 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue535545> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:09 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:09 +0000 Subject: [issue534669] remember to sync trees Message-ID: <1649606709.08.0.0163083126335.issue534669@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36326 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534669> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536241] string.zfill and unicode Message-ID: <1649606710.28.0.130897821093.issue536241@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36346 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536241> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536407] Comprehensibility patch (typeobject.c) Message-ID: <1649606710.36.0.694230709695.issue536407@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36348 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536407> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536578] patch for bug 462783 mmap bus error Message-ID: <1649606710.46.0.280699123505.issue536578@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36352 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536578> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue524008] pysvr portability bug on new POSIX hosts Message-ID: <1649606703.32.0.284470852827.issue524008@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36184 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue524008> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue533008] specifying headers for extensions Message-ID: <1649606707.96.0.0691067279645.issue533008@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36301 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533008> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537328] Problematic .py extension mapping on XP [IIS] Message-ID: <1649606710.67.0.171873520315.issue537328@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36359 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537328> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue534108] AIX 3.2.5 Has No chroot/fsync Prototypes Message-ID: <1649606708.61.0.237663944303.issue534108@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36316 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue534108> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537484] SMTPLib sendmail fails on hyphenated adr Message-ID: <1649606710.72.0.391220818167.issue537484@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36361 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537484> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue538961] Using the lib index mechanically Message-ID: <1649606711.11.0.67059536481.issue538961@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36373 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue538961> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue538991] error in turtle.py - module Message-ID: <1649606711.14.0.118581913435.issue538991@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36374 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue538991> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue537998] windows getpass broken on python 2.2 Message-ID: <1649606710.9.0.290906148382.issue537998@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36367 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue537998> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539081] PyObject_AsReadBuffer doc error Message-ID: <1649606711.24.0.68625515298.issue539081@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36378 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539081> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue538582] NTLM Authentication Using httplib Message-ID: <1649606711.05.0.195102893371.issue538582@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36371 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue538582> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539392] Unicode fix for test in tkFileDialog.py Message-ID: <1649606711.35.0.082851140724.issue539392@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36382 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539392> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539487] build info docs from tex sources Message-ID: <1649606711.43.0.685149079905.issue539487@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36385 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539487> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue538395] ae* modules: handle type inheritance Message-ID: <1649606711.02.0.0547999853235.issue538395@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36370 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue538395> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue539949] dict.popitem(key=None) Message-ID: <1649606711.61.0.871544117779.issue539949@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36389 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue539949> _______________________________________ 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: [issue217686] IDLE doesn't display long arrays well Message-ID: <1649606552.36.0.284179924933.issue217686@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33395 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217686> _______________________________________ 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: [issue216732] httplib no longer supports old, pre-1.0 HTTP servers Message-ID: <1649606550.53.0.715848872583.issue216732@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33342 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216732> _______________________________________ 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: [issue219485] os.path.basename behaves different from Unix basename Message-ID: <1649606552.68.0.399948609748.issue219485@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33404 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219485> _______________________________________ 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: [issue221207] % operator on strings not documented Message-ID: <1649606554.09.0.081614516068.issue221207@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33443 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221207> _______________________________________ 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: [issue217070] README instructions for configuring Setup are not helpful Message-ID: <1649606551.03.0.744076580113.issue217070@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33357 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217070> _______________________________________ 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: [issue219862] Memory leak in python 2.0 and below Message-ID: <1649606553.39.0.371225592693.issue219862@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33422 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219862> _______________________________________ 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: [issue402485] minidom.py: Check for legal children Message-ID: <1649606555.81.0.151638767726.issue402485@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33503 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402485> _______________________________________ 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: [issue216649] urllib2.urlopen fails on redirects? Message-ID: <1649606550.22.0.945947572875.issue216649@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33333 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216649> _______________________________________ 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: [issue223859] %[duxXo] long formats inconsistent Message-ID: <1649606556.57.0.82762671238.issue223859@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33525 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue223859> _______________________________________ 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: [issue402626] Add a .first{key/item/value}() method to dictionaries Message-ID: <1649606556.94.0.989121978884.issue402626@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33536 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402626> _______________________________________ 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: [issue224478] make -f Makefile.pre.in boot fails in RedHat 7.0 Message-ID: <1649606557.22.0.790157087612.issue224478@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33545 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224478> _______________________________________ 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: [issue402684] ceval/getargs: better messages for argument handling Message-ID: <1649606557.65.0.425338182897.issue402684@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33555 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402684> _______________________________________ 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: [issue221791] Error for bad \x escape doesn't mention filename Message-ID: <1649606554.35.0.661544299058.issue221791@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33452 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221791> _______________________________________ 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: [issue402691] Use CXX in Misc/Makefile.pre.in and Modules/makesetup Message-ID: <1649606557.68.0.920221724962.issue402691@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33556 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402691> _______________________________________ 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: [issue402638] A patch for gdbmmodule.c, by Damjan <arhiv@freemail.org.mk> Message-ID: <1649606557.15.0.781505731077.issue402638@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33543 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402638> _______________________________________ 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: [issue402868] fileobject.c:get_line leaks memory when hitting EOF Message-ID: <1649606559.27.0.596497893551.issue402868@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33602 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402868> _______________________________________ 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: [issue224782] configure should attempt to find a default C++ compiler. Message-ID: <1649606557.83.0.133945045319.issue224782@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33559 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224782> _______________________________________ 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: [issue226264] ref/ref3.tex: Remove claim about eval(repr(obj)) Message-ID: <1649606559.52.0.670474270839.issue226264@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33611 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226264> _______________________________________ 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: [issue400512] fix timemodule.c for Win64 Message-ID: <1649606577.26.0.945297762124.issue400512@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400512> _______________________________________ 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: [issue226586] Floating point is broken in Python 2.0 Message-ID: <1649606559.94.0.623781672882.issue226586@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33624 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226586> _______________________________________ 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: [issue225598] Confusing KeyError-Message when key is tuple of size 1 Message-ID: <1649606558.81.0.941538709959.issue225598@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33583 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225598> _______________________________________ 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: [issue226345] Modules are not garbage collected Message-ID: <1649606559.63.0.243725568007.issue226345@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33614 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226345> _______________________________________ 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: [issue224791] math.modf, math.floor, math.ceil give misleading result Message-ID: <1649606557.86.0.0505616530016.issue224791@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33560 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue224791> _______________________________________ 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: [issue400524] simple 64-bit fixes in Python/ dir Message-ID: <1649606577.58.0.34600017634.issue400524@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400524> _______________________________________ 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: [issue400608] just testing Message-ID: <1649606577.82.0.801013376542.issue400608@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400608> _______________________________________ 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: [issue400655] fix for an AIX optimizer weirdness in getargs.c Message-ID: <1649606578.37.0.778530041732.issue400655@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400655> _______________________________________ 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: [issue400790] gcmodule: ANSI-fication Message-ID: <1649606580.88.0.370571542796.issue400790@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400790> _______________________________________ 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: [issue210626] configure.in fails if libnet is present... (PR#268) Message-ID: <1649606584.84.0.771212828821.issue210626@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210626> _______________________________________ 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: [issue210632] CR/LF line endings in _sre.c sre.h sre_constants.h (PR#284) Message-ID: <1649606585.04.0.978051282604.issue210632@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210632> _______________________________________ 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: [issue210627] Floating point numbers (PR#277) Message-ID: <1649606584.85.0.420643852589.issue210627@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210627> _______________________________________ 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: [issue210654] bug in complex_nonzero (PR#347) Message-ID: <1649606585.78.0.807941623649.issue210654@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210654> _______________________________________ 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: [issue210653] Assigning function objects to instance variable causes memory leak (PR#346) Message-ID: <1649606585.76.0.563000571886.issue210653@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210653> _______________________________________ 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: [issue210666] PRIVATE: interned->ma_table never free'd (PR#361) Message-ID: <1649606586.19.0.0153478602541.issue210666@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210666> _______________________________________ 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: [issue400893] new EXTENDED_ARG opcode, elimiate 16-bit oparg limit Message-ID: <1649606582.38.0.568474159995.issue400893@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue400893> _______________________________________ 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: [issue210650] [HP-UX] python with-threads core-dumps (PR#342) Message-ID: <1649606585.65.0.924191689728.issue210650@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210650> _______________________________________ 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: [issue210750] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.1.0.860209290489.issue210750@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210750> _______________________________________ 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: [issue210713] strptime buffer overflow (PR#95) Message-ID: <1649606587.73.0.0209285278823.issue210713@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210713> _______________________________________ 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: [issue210794] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.19.0.0337143241098.issue210794@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210794> _______________________________________ 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: [issue210819] test suite incomplete (PR#1) Message-ID: <1649606588.5.0.453372896734.issue210819@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210819> _______________________________________ 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: [issue210845] struct.pack not being very picky (PR#52) Message-ID: <1649606589.16.0.339960027086.issue210845@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210845> _______________________________________ 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: [issue210848] Fwd: Debian Bug#40891: urllib.urlopen/urlretrieve doesn't support passive FTP (PR#58) Message-ID: <1649606589.21.0.127628463145.issue210848@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210848> _______________________________________ 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: [issue210853] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606589.3.0.198424056411.issue210853@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210853> _______________________________________ 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: [issue210738] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606587.88.0.499634057543.issue210738@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210738> _______________________________________ 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: [issue401126] mimify.py: mods for new getopt, & tab->spaces Message-ID: <1649606590.93.0.654068923945.issue401126@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401126> _______________________________________ 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: [issue210694] PRIVATE: Threads and readline (PR#120) Message-ID: <1649606587.17.0.714844240433.issue210694@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210694> _______________________________________ 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: [issue401162] a Python/C API testing framework (simple simple) Message-ID: <1649606591.84.0.226404233812.issue401162@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401162> _______________________________________ 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: [issue211725] Response to bug 110619 Message-ID: <1649606591.92.0.46241802231.issue211725@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211725> _______________________________________ 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: [issue211961] urllib.quote and string.letters Message-ID: <1649606592.49.0.638744691423.issue211961@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue211961> _______________________________________ 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: [issue401257] Update test cases for posixpath, ntpath, add dospath test Message-ID: <1649606593.69.0.412477031558.issue401257@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401257> _______________________________________ 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: [issue401152] smtplib uses send() without verifying the amount of data sen Message-ID: <1649606591.57.0.0505537911162.issue401152@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401152> _______________________________________ 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: [issue213047] test_poll fails on FreeBSD 4.1 Message-ID: <1649606594.81.0.31858044036.issue213047@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213047> _______________________________________ 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: [issue212317] os.rename transparent handling of cross-filesystem issues Message-ID: <1649606593.27.0.435657439657.issue212317@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212317> _______________________________________ 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: [issue401354] New files: plat-freebsd{4,5}/* Message-ID: <1649606594.96.0.129054485702.issue401354@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401354> _______________________________________ 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: [issue401396] sre_parse.py missing '7' in DIGITS Message-ID: <1649606595.48.0.320741683815.issue401396@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401396> _______________________________________ 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: [issue401214] Improve exception message for PyErr_BadInternalCall() Message-ID: <1649606592.86.0.670721451025.issue401214@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401214> _______________________________________ 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: [issue213576] Py_PROTO missing from the include files Message-ID: <1649606595.65.0.0741527604763.issue213576@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213576> _______________________________________ 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: [issue401425] Fix for 110598: support \r in py_compile Message-ID: <1649606595.75.0.83112825998.issue401425@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401425> _______________________________________ 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: [issue210795] Segmentation fault with kernel 2.2.12 (PR#103) Message-ID: <1649606588.2.0.416802162988.issue210795@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue210795> _______________________________________ 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: [issue213700] widespread bug in HTML files: lots of italics Message-ID: <1649606595.87.0.805096434032.issue213700@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213700> _______________________________________ 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: [issue213721] urllib handles proxy badly Message-ID: <1649606595.92.0.086815119341.issue213721@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213721> _______________________________________ 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: [issue213733] xml package not included in windows installer Message-ID: <1649606595.97.0.210410731396.issue213733@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213733> _______________________________________ 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: [issue401423] Fix for 110686: cStringIO.readlines Message-ID: <1649606595.7.0.265561194297.issue401423@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401423> _______________________________________ 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: [issue401249] port to Monterey (64-bit AIX) and pthread fix Message-ID: <1649606593.52.0.932613775951.issue401249@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401249> _______________________________________ 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: [issue213785] SIGSEGV in PyDict_SetItem Message-ID: <1649606596.24.0.870428077.issue213785@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213785> _______________________________________ 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: [issue213760] 2.0b1: _xmlplus does not allow site xml to override Lib/xml Message-ID: <1649606596.06.0.231613172623.issue213760@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213760> _______________________________________ 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: [issue213797] Build problems on Reliant Unix Message-ID: <1649606596.42.0.108748993219.issue213797@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213797> _______________________________________ 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: [issue401342] remove -Wstrict-prototypes warnings [aka: Anal Crusade I] Message-ID: <1649606594.76.0.476494168898.issue401342@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401342> _______________________________________ 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: [issue213810] Global Module Index points to non-existant "About" page Message-ID: <1649606596.62.0.0622408145704.issue213810@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213810> _______________________________________ 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: [issue213145] config.h defines socklen_t, kills wxPython build Message-ID: <1649606595.03.0.418237065632.issue213145@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213145> _______________________________________ 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: [issue214323] Pb PYTHON Message-ID: <1649606597.76.0.483306491607.issue214323@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214323> _______________________________________ 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: [issue213696] lib.pdf damaged in pdf-a4-2.0b1.tgz Message-ID: <1649606595.84.0.434987664873.issue213696@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue213696> _______________________________________ 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: [issue401514] Remove references to self._source Message-ID: <1649606598.23.0.706983870637.issue401514@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401514> _______________________________________ 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: [issue401527] ustr Message-ID: <1649606598.4.0.813527348846.issue401527@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401527> _______________________________________ 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: [issue401534] Use confirmations rather than assertions Message-ID: <1649606598.49.0.636636335393.issue401534@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401534> _______________________________________ 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: [issue214830] Writing of Unicode data not portable Message-ID: <1649606599.57.0.816176358608.issue214830@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214830> _______________________________________ 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: [issue214923] ToolTip not showing text on AIX 4.3 Message-ID: <1649606599.7.0.0473630151016.issue214923@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214923> _______________________________________ 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: [issue215006] Python 2.0 won't build on HP Unix 10.2 Message-ID: <1649606599.79.0.157685243997.issue215006@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215006> _______________________________________ 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: [issue212468] sre/pre bug Message-ID: <1649606593.63.0.73672412551.issue212468@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue212468> _______________________________________ 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: [issue215323] limits.h should be included in one place only Message-ID: <1649606600.81.0.354494749477.issue215323@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215323> _______________________________________ 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: [issue215527] StringIO.StringIO does not support truncate() Message-ID: <1649606601.44.0.113550826497.issue215527@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215527> _______________________________________ 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: [issue401702] Modify co_filename in frozen programs Message-ID: <1649606601.84.0.692767937063.issue401702@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401702> _______________________________________ 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: [issue215681] zipfile documentation out of sync with module Message-ID: <1649606602.0.0.660678753059.issue215681@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215681> _______________________________________ 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: [issue401571] adds make_parser to xml.sax Message-ID: <1649606599.39.0.504140727509.issue401571@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401571> _______________________________________ 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: [issue401730] Add initial static support for Darwin/MacOSX Message-ID: <1649606602.28.0.766766807347.issue401730@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401730> _______________________________________ 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: [issue215912] GC crashes in 2.0b1 and 2.0b2 Message-ID: <1649606602.56.0.923134581468.issue215912@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215912> _______________________________________ 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: [issue215907] Encoding of "=" by quopri.py module Message-ID: <1649606602.53.0.836595590832.issue215907@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue215907> _______________________________________ 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: [issue214245] utime can not accept directory under NT Message-ID: <1649606597.29.0.910712955597.issue214245@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214245> _______________________________________ 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: [issue214756] test_linuxaudiodev uses wrong format Message-ID: <1649606599.06.0.676882553773.issue214756@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214756> _______________________________________ 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: [issue401823] Fix Darwin POSIX Thread redefinition Message-ID: <1649606604.41.0.522618719273.issue401823@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401823> _______________________________________ 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: [issue401897] make dom.unlink() remove sibling cycles Message-ID: <1649606605.56.0.520668005895.issue401897@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401897> _______________________________________ 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: [issue216850] Bad comment in Setup.in Message-ID: <1649606605.57.0.777281500456.issue216850@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216850> _______________________________________ 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: [issue217032] test_fcntl should not use /tmp/delete-me Message-ID: <1649606605.87.0.147146020119.issue217032@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217032> _______________________________________ 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: [issue217092] Testsuite dumps core on Win2000 / IDLE Message-ID: <1649606605.95.0.975693525923.issue217092@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217092> _______________________________________ 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: [issue216678] minidom doesn't raise exception for illegal children Message-ID: <1649606605.22.0.932922759386.issue216678@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216678> _______________________________________ 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: [issue217158] String literal documentation is not up to date Message-ID: <1649606606.0.0.145275704443.issue217158@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217158> _______________________________________ 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: [issue401973] test_import.py fails on Unix when run any but the local dir Message-ID: <1649606606.28.0.0609436541284.issue401973@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401973> _______________________________________ 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: [issue217386] Compile fails on RH7 Message-ID: <1649606606.7.0.930881617537.issue217386@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217386> _______________________________________ 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: [issue217305] Limited precision enter 3.14 you get 3.1400000000000001 Message-ID: <1649606606.54.0.164881409369.issue217305@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217305> _______________________________________ 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: [issue401972] Fix for lookbehind bug (#117242) Message-ID: <1649606606.26.0.216462480091.issue401972@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401972> _______________________________________ 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: [issue216964] gettext may fail to find .mo file Message-ID: <1649606605.71.0.384481075468.issue216964@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216964> _______________________________________ 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: [issue401970] Generate more modern file:///C:/foo/bar syntax Message-ID: <1649606606.19.0.493133565293.issue401970@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401970> _______________________________________ 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: [issue401821] xmldomminidom.tex: Documentation for minidom Message-ID: <1649606604.31.0.292509417329.issue401821@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401821> _______________________________________ 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: [issue219822] urllib doesn't like unicode Message-ID: <1649606607.75.0.208111673873.issue219822@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219822> _______________________________________ 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: [issue402354] Fix dynamic module linking on Mac OSX/OSXS Message-ID: <1649606609.35.0.870353900819.issue402354@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33464 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402354> _______________________________________ 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: [issue401870] Make XMLFilterBase usable Message-ID: <1649606605.17.0.147919173389.issue401870@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401870> _______________________________________ 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: [issue225489] fpectl module is undocumented Message-ID: <1649606613.21.0.115135685072.issue225489@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33578 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue225489> _______________________________________ 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: [issue402875] Make socket close thread safe Message-ID: <1649606613.97.0.358092905936.issue402875@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33603 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue402875> _______________________________________ 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: [issue226510] Python 2.0: raw string, backslash in not handled correct Message-ID: <1649606614.48.0.703707945109.issue226510@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33621 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue226510> _______________________________________ 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: [issue227992] This line used to work: sd.connect (routerlanip, 80) Message-ID: <1649606616.25.0.491767205436.issue227992@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33671 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue227992> _______________________________________ 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: [issue403134] Support code execution in PTH files Message-ID: <1649606616.2.0.762799803643.issue403134@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33669 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403134> _______________________________________ 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: [issue403081] Speed up for fileinput, using readlines(sizehint) Message-ID: <1649606615.82.0.253809026237.issue403081@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33658 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403081> _______________________________________ 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: [issue403173] make uu.decode work with spaces in filename Message-ID: <1649606617.01.0.47369813162.issue403173@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33690 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403173> _______________________________________ 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: [issue403211] webbrowser.py: fix spelling of "Konqueror" Message-ID: <1649606617.31.0.784082236822.issue403211@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33700 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403211> _______________________________________ 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: [issue403154] Cygwin Check Import Case Patch Message-ID: <1649606616.6.0.841626157964.issue403154@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33680 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403154> _______________________________________ 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: [issue228830] re is greedy with non-greedy operator Message-ID: <1649606618.02.0.0480567134341.issue228830@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33719 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228830> _______________________________________ 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: [issue403169] Display Hook for Interactive Use Message-ID: <1649606616.91.0.516997413668.issue403169@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33688 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403169> _______________________________________ 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: [issue228210] Threads using same stream blow up (Windows) Message-ID: <1649606616.73.0.860239033363.issue228210@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33684 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228210> _______________________________________ 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: [issue403234] tokenize.py: add support for u"", U'', etc. Message-ID: <1649606617.88.0.0282188954968.issue403234@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33715 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403234> _______________________________________ 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: [issue403202] fix bug parsing nested tags with htmllib Message-ID: <1649606617.22.0.899609707972.issue403202@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33698 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403202> _______________________________________ 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: [issue228823] uncompatible re.findall() with the new engine = "sre" Message-ID: <1649606618.0.0.149056199458.issue228823@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33718 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228823> _______________________________________ 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: [issue228713] type() on mmap object causes segfault Message-ID: <1649606617.74.0.469906004808.issue228713@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33712 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue228713> _______________________________________ 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: [issue229208] Doc and code mismatch Message-ID: <1649606619.06.0.184686226653.issue229208@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33748 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229208> _______________________________________ 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: [issue229651] documentation error in 2.0, section 11.4.2 (httplib example) Message-ID: <1649606619.71.0.783038965449.issue229651@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33773 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229651> _______________________________________ 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: [issue229841] 'make install' needs write access to build directory Message-ID: <1649606620.15.0.318216797128.issue229841@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33789 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229841> _______________________________________ 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: [issue403277] Enables a package to have more than one source dir Message-ID: <1649606618.71.0.478062635297.issue403277@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33738 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403277> _______________________________________ 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: [issue229904] 2.1a1: lib-tk not in sys.path: import fails Message-ID: <1649606620.3.0.330209793925.issue229904@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33794 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue229904> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:03 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:03 +0000 Subject: [issue525548] __add__ returning NotImplemented broken Message-ID: <1649606703.84.0.748918509945.issue525548@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36198 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue525548> _______________________________________ 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: [issue231796] [Unix] Build error in 2.1a2 due to missing unicodedatabase.c Message-ID: <1649606623.99.0.291861419906.issue231796@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33899 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue231796> _______________________________________ 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: [issue403839] sgmllib: Allow ';' in attributes Message-ID: <1649606625.59.0.298883847305.issue403839@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33940 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403839> _______________________________________ 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: [issue232597] _curses build broken on Compaq Tru64 Unix Message-ID: <1649606625.34.0.806068407074.issue232597@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33933 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue232597> _______________________________________ 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: [issue233041] ftplib close() shouldn't delete self.sock, self.file Message-ID: <1649606626.1.0.561587884672.issue233041@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33960 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233041> _______________________________________ 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: [issue233253] build_ext: --define option doesn't work Message-ID: <1649606626.38.0.632093017792.issue233253@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33972 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233253> _______________________________________ 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: [issue233790] [Irix] re package does not work. Message-ID: <1649606627.02.0.826155288613.issue233790@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33997 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue233790> _______________________________________ 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: [issue403757] catch server recursion in urrlib Message-ID: <1649606624.64.0.994415927395.issue403757@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33914 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue403757> _______________________________________ 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: [issue406271] use INSTALL_SCRIPT to install scripts Message-ID: <1649606629.44.0.352810266842.issue406271@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34073 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue406271> _______________________________________ 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: [issue408597] quopri, soft line breaks and CRLF Message-ID: <1649606631.64.0.26513863104.issue408597@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34147 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue408597> _______________________________________ 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: [issue409973] glob.glob speedups Message-ID: <1649606633.03.0.491695718684.issue409973@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34195 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue409973> _______________________________________ 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: [issue416022] Improvements in telnetlib Message-ID: <1649606637.41.0.74444571835.issue416022@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34321 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416022> _______________________________________ 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: [issue420304] getattr function w/ default Message-ID: <1649606641.11.0.330778774312.issue420304@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34437 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420304> _______________________________________ 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: [issue416944] 2.0: cum sympt; w/gdb bktr; OBSD2.8. Message-ID: <1649606638.72.0.30104202003.issue416944@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34360 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue416944> _______________________________________ 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: [issue419652] Disable input look Tk event processing o Message-ID: <1649606640.9.0.0955865121393.issue419652@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34431 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue419652> _______________________________________ 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: [issue424680] distutils module version # not StrictVer Message-ID: <1649606644.0.0.534713136017.issue424680@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34512 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue424680> _______________________________________ 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: [issue425007] Python 2.1 installs shared libs with mode 0700 Message-ID: <1649606644.13.0.622724847874.issue425007@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34517 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue425007> _______________________________________ 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: [issue420490] lookdict_string does not use interning Message-ID: <1649606641.36.0.860835697227.issue420490@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34442 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue420490> _______________________________________ 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: [issue422106] Seg fault in sys.displayhook Message-ID: <1649606642.3.0.33636242891.issue422106@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34469 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue422106> _______________________________________ 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: [issue429329] actual-parameters *arg, **kws not doc'd Message-ID: <1649606645.95.0.145516750013.issue429329@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 34571 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue429329> _______________________________________ From report at bugs.python.org Sun Apr 10 12:11:53 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:11:53 +0000 Subject: [issue828890] bdist_rpm failure when no setup.py Message-ID: <1649607113.06.0.188559468109.issue828890@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 39450 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue828890> _______________________________________ From report at bugs.python.org Sun Apr 10 12:08:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:08:05 +0000 Subject: [issue718286] DESTDIR variable patch Message-ID: <1649606885.04.0.875175095021.issue718286@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 38278 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue718286> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:35 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:35 +0000 Subject: [issue593656] pickle/cPickle incompatibility Message-ID: <1649606735.01.0.0394357953486.issue593656@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 37015 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue593656> _______________________________________ From report at bugs.python.org Sun Apr 10 12:13:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:13:05 +0000 Subject: [issue870855] C interface definition of PyObject_HEAD is problematic Message-ID: <1649607185.0.0.0889590915456.issue870855@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 39766 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue870855> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:38 +0000 Subject: [issue602108] improper use of strncpy in getpath Message-ID: <1649606738.01.0.108030950556.issue602108@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 37108 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue602108> _______________________________________ From report at bugs.python.org Sun Apr 10 12:13:05 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:13:05 +0000 Subject: [issue870997] bgenlocationscustomize: per-user configuration of bgen Message-ID: <1649607185.06.0.190245385936.issue870997@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 39768 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue870997> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:42 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:42 +0000 Subject: [issue613708] Add smtplib support for SMTP AUTH LOGIN Message-ID: <1649606742.06.0.563508825987.issue613708@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 37211 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue613708> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:14 +0000 Subject: [issue545300] sgmllib support for additional tag forms Message-ID: <1649606714.05.0.374363984472.issue545300@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36452 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue545300> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:43 +0000 Subject: [issue617311] Tiny profiling info (Psyco #2) Message-ID: <1649606743.04.0.960147861271.issue617311@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 37246 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue617311> _______________________________________ From report at bugs.python.org Sun Apr 10 12:09:28 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:09:28 +0000 Subject: [issue761863] readline module that checks signals Message-ID: <1649606968.03.0.385738262795.issue761863@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 38723 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue761863> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:12 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:12 +0000 Subject: [issue541652] imp.is_builtin() returns bool/int? Message-ID: <1649606712.02.0.245073780452.issue541652@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36401 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue541652> _______________________________________ From report at bugs.python.org Sun Apr 10 12:08:49 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:08:49 +0000 Subject: [issue739124] Add use_default_colors support to curses module. Message-ID: <1649606929.02.0.983195109692.issue739124@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 38517 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue739124> _______________________________________ From report at bugs.python.org Sun Apr 10 12:07:55 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:07:55 +0000 Subject: [issue710931] iconv codec-NG and Korean Codecs Message-ID: <1649606875.03.0.406849419747.issue710931@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 38224 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue710931> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:36 +0000 Subject: [issue595838] unnecessary static variable Message-ID: <1649606736.05.0.845994571505.issue595838@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 37045 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue595838> _______________________________________ From report at bugs.python.org Sun Apr 10 12:10:14 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:10:14 +0000 Subject: [issue777848] CGIHTTPServer and urls Message-ID: <1649607014.06.0.611800922841.issue777848@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 38933 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue777848> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:24 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:24 +0000 Subject: [issue458839] SSL errno wrong under Windows Message-ID: <1649606664.86.0.604490564072.issue458839@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35117 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue458839> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472727] Tkinter.mainloop() confuses IDLE Message-ID: <1649606672.58.0.951598524345.issue472727@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35356 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472727> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:32 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:32 +0000 Subject: [issue472642] interpreter crash when import .so fails w/ Purify Message-ID: <1649606672.47.0.718801776414.issue472642@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35353 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue472642> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473491] "install -d" doesn't work on HP-UX Message-ID: <1649606673.18.0.901843385451.issue473491@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35374 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473491> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue474169] Fix for OS/2 popen Message-ID: <1649606673.78.0.870801096735.issue474169@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35388 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474169> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474505] Tkinter and its encodings on Windows Message-ID: <1649606674.18.0.168832558244.issue474505@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35395 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474505> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:34 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:34 +0000 Subject: [issue474992] python version benchmark Message-ID: <1649606674.62.0.839476382527.issue474992@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35407 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue474992> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue477487] Build Problems on AIX 4.3.3 Message-ID: <1649606676.22.0.681269088713.issue477487@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35452 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue477487> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:33 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:33 +0000 Subject: [issue473749] compile under OS/2 VA C++ Message-ID: <1649606673.46.0.575355100716.issue473749@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35381 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue473749> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478003] possible memory leaks in err handling Message-ID: <1649606676.61.0.503115760777.issue478003@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35463 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478003> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478486] Example program locks up IDLE Message-ID: <1649606676.95.0.52035775759.issue478486@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35475 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478486> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue478851] Generates KeyboardInterrupt in bg Message-ID: <1649606677.1.0.242638224198.issue478851@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35481 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478851> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:36 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:36 +0000 Subject: [issue478005] possible memory leak in posixmodule.c Message-ID: <1649606676.65.0.452039068224.issue478005@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35464 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue478005> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:37 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:37 +0000 Subject: [issue480562] replace __slots__ with addmembers Message-ID: <1649606677.8.0.973611545747.issue480562@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35504 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue480562> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482871] Segmentation Fault with socket lib. Message-ID: <1649606678.94.0.156637909802.issue482871@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35540 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482871> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:38 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:38 +0000 Subject: [issue482752] __getstate__ & __setstate__ ignored Message-ID: <1649606678.91.0.129321065413.issue482752@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35539 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue482752> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483231] email.Utils.formatdate(): localtime bug Message-ID: <1649606679.19.0.473505986797.issue483231@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35546 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483231> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue483982] Python 2.2b2 bdist_wininst crashes Message-ID: <1649606679.64.0.00516895195379.issue483982@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35558 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue483982> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:39 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:39 +0000 Subject: [issue484611] Typo: spawmv in Modules/posixmodule.c Message-ID: <1649606679.8.0.264158943157.issue484611@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35563 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue484611> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue487743] test_builtin fails on 64 bit platform Message-ID: <1649606683.03.0.0361287677542.issue487743@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35644 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue487743> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:43 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:43 +0000 Subject: [issue488730] os.popen() seg faults on FreeBSD 5 Message-ID: <1649606683.56.0.145164459699.issue488730@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35659 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue488730> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:51 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:51 +0000 Subject: [issue500073] HTMLParser fail to handle '&foobar' Message-ID: <1649606691.05.0.436637478011.issue500073@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35871 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue500073> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:54 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:54 +0000 Subject: [issue507125] FTPLIB still missing "PASV" by default Message-ID: <1649606694.93.0.808188176863.issue507125@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 35965 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue507125> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:58 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:58 +0000 Subject: [issue515020] lib/site.py remove temporary globals Message-ID: <1649606698.19.0.278249475584.issue515020@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36064 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue515020> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:57 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:57 +0000 Subject: [issue514345] pty.fork problem Message-ID: <1649606697.36.0.436604750871.issue514345@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36041 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue514345> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:00 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:00 +0000 Subject: [issue518625] Return objects in Tkinter Message-ID: <1649606700.03.0.500150095052.issue518625@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36111 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue518625> _______________________________________ From report at bugs.python.org Sun Apr 10 12:04:59 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:04:59 +0000 Subject: [issue517554] asyncore fails when EINTR happens in pol Message-ID: <1649606699.82.0.00749909986132.issue517554@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36104 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue517554> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue526072] pickling os.stat results round II Message-ID: <1649606704.07.0.606731168429.issue526072@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36205 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue526072> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:04 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:04 +0000 Subject: [issue527022] raw_input non-ascii failure on Linux/KDE Message-ID: <1649606704.49.0.0341044493405.issue527022@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36218 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue527022> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:06 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:06 +0000 Subject: [issue530163] fpectl build on solaris: -lsunmath Message-ID: <1649606706.3.0.927108816686.issue530163@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36264 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue530163> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532618] install fails if build .so fails Message-ID: <1649606707.39.0.733195744127.issue532618@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36290 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532618> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532638] Better AttributeError formatting Message-ID: <1649606707.5.0.101597017667.issue532638@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36293 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532638> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:08 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:08 +0000 Subject: [issue533165] add expected test failures on solaris 8 Message-ID: <1649606708.11.0.41758960669.issue533165@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36303 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue533165> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:07 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:07 +0000 Subject: [issue532729] build (link) fails on Solaris 8-sem_init Message-ID: <1649606707.66.0.542893400175.issue532729@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36296 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue532729> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:10 +0000 Subject: [issue536883] SimpleXMLRPCServer auto-docing subclass Message-ID: <1649606710.59.0.647925857354.issue536883@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36356 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue536883> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:11 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:11 +0000 Subject: [issue538827] Python open w/ MSVC6: bad error msgs Message-ID: <1649606711.08.0.555249699695.issue538827@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36372 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue538827> _______________________________________ From report at bugs.python.org Sun Apr 10 12:11:10 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:11:10 +0000 Subject: [issue807771] Max and min are incorrect with one argument Message-ID: <1649607071.0.0.408526457075.issue807771@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 39241 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue807771> _______________________________________ From report at bugs.python.org Sun Apr 10 12:05:19 2022 From: report at bugs.python.org (admin) Date: Sun, 10 Apr 2022 16:05:19 +0000 Subject: [issue554916] test_unicode fails in wide unicode build Message-ID: <1649606719.0.0.869442721771.issue554916@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 36592 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue554916> _______________________________________ 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: [issue214030] 2.0b1: Module index empty Message-ID: <1649606542.24.0.500255853388.issue214030@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33083 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue214030> _______________________________________ 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: [issue401558] Fix for #112289 Message-ID: <1649606543.99.0.692340354407.issue401558@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33138 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401558> _______________________________________ 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: [issue216280] writing to closed cStringIO inst does not raise ValueError Message-ID: <1649606549.28.0.282559054638.issue216280@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33303 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216280> _______________________________________ 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: [issue216547] test_poll.py fails on SPARCstation LX under Red Hat 5.2 Message-ID: <1649606550.12.0.598022119474.issue216547@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33329 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue216547> _______________________________________ 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: [issue219729] copy/past error in Extending&Embedding Message-ID: <1649606553.09.0.0284957522574.issue219729@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33413 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219729> _______________________________________ 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: [issue401454] Add Unicode support to "exec" and "eval()" Message-ID: <1649606596.94.0.627828222601.issue401454@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401454> _______________________________________ 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: [issue401517] Fix for Bug 114333 (only reported bug in minidom) Message-ID: <1649606598.28.0.724801805307.issue401517@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue401517> _______________________________________ 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: [issue217070] README instructions for configuring Setup are not helpful Message-ID: <1649606605.89.0.403626763789.issue217070@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217070> _______________________________________ 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: [issue217556] Python 2.0 regression fails on test_pyexpat. Message-ID: <1649606607.03.0.198940786629.issue217556@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue217556> _______________________________________ 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: [issue219556] Python 2.0 httplib doesn't like ICY status lines Message-ID: <1649606607.42.0.132060065443.issue219556@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue219556> _______________________________________ 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: [issue220081] PyDict_Update() missing from C API Message-ID: <1649606607.96.0.299887520468.issue220081@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue220081> _______________________________________ 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: [issue221129] makesetup loop Message-ID: <1649606608.44.0.20191255391.issue221129@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: None -> 33440 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue221129> _______________________________________ From report at bugs.python.org Mon Apr 11 08:41:19 2022 From: report at bugs.python.org (Ezio Melotti) Date: Mon, 11 Apr 2022 12:41:19 +0000 Subject: [issue2771] Test issue In-Reply-To: <1210005645.74.0.283923986194.issue2771@psf.upfronthosting.co.za> Message-ID: <1649680879.86.0.0667556457794.issue2771@roundup.psfhosted.org> Change by Ezio Melotti <ezio.melotti at gmail.com>: ---------- nosy: -EWDurbin, matrixise, nedbat, pitrou, python-dev, zach.ware resolution: fixed -> works for me _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue2771> _______________________________________ From report at bugs.python.org Mon Apr 11 09:07:22 2022 From: report at bugs.python.org (admin) Date: Mon, 11 Apr 2022 13:07:22 +0000 Subject: [issue2771] Test issue In-Reply-To: <1210005645.74.0.283923986194.issue2771@psf.upfronthosting.co.za> Message-ID: <1649682442.68.0.296814913562.issue2771@roundup.psfhosted.org> Change by admin <roundup-admin at psf.upfronthosting.co.za>: ---------- github: 18614 -> 666 _______________________________________ Python tracker <report at bugs.python.org> <https://bugs.python.org/issue2771> _______________________________________