[issue45636] Merge BINARY_*/INPLACE_* into BINARY_OP/INPLACE_OP

2021-11-04 Thread Brandt Bucher
Change by Brandt Bucher : -- pull_requests: +27671 pull_request: https://github.com/python/cpython/pull/29418 ___ Python tracker ___

[issue40051] Give proper link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-11-04 Thread Joshua
Joshua added the comment: I think that option 4 would work best but instead of putting any logic in (Lib/pydoc_data/topics.py)[https://github.com/python/cpython/blob/main/Lib/pydoc_data/topics.py] we could put the logic for working with private modules as well and other edge cases in

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45717] Bad link to python docs in help(_hashlib)

2021-11-04 Thread Zachary Ware
Zachary Ware added the comment: I'm closing this as a duplicate of bpo-40051, as it's basically another manifestation of that issue. However, any module named with a leading underscore is a private module, and won't have documentation. The source for _hashlib can be found in

[issue40051] Give proper link in help(idlelib/turtledemo/tkinter.sub/test_*/?)

2021-11-04 Thread Zachary Ware
Zachary Ware added the comment: Option 4: generate a list of modules (or a mapping of module names to documentation files) that have documentation when generating Lib/pydoc_data/topics.py, and teach pydoc.help to not include the link when it knows the module doesn't have documentation.

[issue45712] Typo in "control flow" documentation

2021-11-04 Thread Zachary Ware
Change by Zachary Ware : -- versions: +Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45712] Typo in "control flow" documentation

2021-11-04 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +easy, newcomer friendly stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +3.11regression stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue45721] Improve error message when python shell command is entered at the REPL prompt

2021-11-04 Thread Steven D'Aprano
New submission from Steven D'Aprano : A frequent newbie mistake is to call shell commands from inside the interactive interpreter. Most common is to call Python itself. Here is an example where a Python instructor was allegedly unable to diagnose the issue for their students:

[issue45720] Remove shlwapi dependency on Windows

2021-11-04 Thread Steve Dower
Steve Dower added the comment: FTR, I see about 1-1.5ms improvement (using timeit to do a check_call) out of ~32ms total startup time. I also don't actually see gdi32 being transitively loaded as claimed in the Twitter thread, even back to 3.8. So presumably there's something else going on

[issue45720] Remove shlwapi dependency on Windows

2021-11-04 Thread Steve Dower
Change by Steve Dower : -- nosy: +eryksun ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45720] Remove shlwapi dependency on Windows

2021-11-04 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +27670 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29417 ___ Python tracker ___

[issue45720] Remove shlwapi dependency on Windows

2021-11-04 Thread Steve Dower
New submission from Steve Dower : According to https://twitter.com/BruceDawson0xB/status/1455714820485894151?s=20 there are some serious performance implications from referencing shlwapi.dll. It turns out, we only use it for one native path calculation function, which is easily replaceable

[issue45719] SubProcess stdin.flush freezes when running python interpreter

2021-11-04 Thread DJ PJs
New submission from DJ PJs : Keeping writing to a subprocess, and then flushing it to get the stdout works for other interpreters, but not python's. Simplified Example of what I mean: from subprocess import PIPE, Popen, CREATE_NEW_CONSOLE, run subProcess = Popen("Python", stdin=PIPE,

[issue44067] Zipfile lib overwrites the extra field during closing when the archive size is more then ZIP64_LIMIT

2021-11-04 Thread anadius
anadius added the comment: I was looking at `zipfile._strip_extra` trying to figure out how it works. It doesn't. It skips extra headers after the last one that matches. That's what causes this issue. Here's a fixed version: def _strip_extra(extra, xids): # Remove Extra Fields with

[issue35829] datetime: parse "Z" timezone suffix in fromisoformat()

2021-11-04 Thread Brett Cannon
Brett Cannon added the comment: I also support the idea of adding an `allow_Z` or some equivalent keyword parameter to isoformat() and then allowing for `Z` in `fromisoformat()`. -- nosy: +brett.cannon ___ Python tracker

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-04 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27669 pull_request: https://github.com/python/cpython/pull/29416 ___ Python tracker ___

[issue44257] typo and verbous grammar in the grammar spec

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0e34a5918c74c3cc2284cd77a2eba4108b0d6fb0 by Pablo Galindo Salgado in branch '3.10': [3.10] bpo-44257: fix "assigment_expr" typo + regenerate the grammar, and remove unused imports (GH-29393) (GH-29395)

[issue45704] string.Formatter.parse does not handle auto-numbered positional fields

2021-11-04 Thread Eric V. Smith
Eric V. Smith added the comment: The more I think about this, the more I think it's not .parse's job to fill in the field numbers, it's the job of whoever is calling it. Just as it's not .parse's job to give you an error if you switch back and forth between numbered and un-numbered fields.

[issue24949] Identifier lookup in a multi-level package is flakey

2021-11-04 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue45718] asyncio: MultiLoopWatcher has a race condition (Proposed work-around)

2021-11-04 Thread William Fisher
New submission from William Fisher : Summary: asyncio.MultiLoopChildWatcher has two problems that create a race condition. 1. The SIGCHLD signal handler does not guard against interruption/re-entry. 2. The SIGCHLD signal handler can interrupt add_child_handler's `self._do_waitpid(pid)`.

[issue15751] [subinterpreters] Make the PyGILState API compatible with subinterpreters

2021-11-04 Thread felk
Change by felk : -- nosy: +felk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Dennis! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f701237db2611140e578cebbdfef91ae4714af4e by Łukasz Langa in branch '3.9': [3.9] bpo-30570: Fix segfault on buildbots caused by stack overflow from recursion in tests (GH-29258) (GH-29415)

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread miss-islington
miss-islington added the comment: New changeset 1f3ae5c1ca5a8e7696bad414c1de38e0f5f1e2c3 by Miss Islington (bot) in branch '3.10': bpo-30570: Fix segfault on buildbots caused by stack overflow from recursion in tests (GH-29258)

[issue43969] "bad magic number" when Python 2's pyc file exists without py file

2021-11-04 Thread Mitchell Hentges
Mitchell Hentges added the comment: I'm going to close this here - I currently don't have the cycles to push this forward. Besides, this issue only occurs in environments that are using both Python 2 and 3, and as Python 2's EOL date gets further in the past, the severity of this ticket

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-04 Thread Łukasz Langa
Change by Łukasz Langa : -- nosy: +lukasz.langa nosy_count: 3.0 -> 4.0 pull_requests: +27668 pull_request: https://github.com/python/cpython/pull/29411 ___ Python tracker ___

[issue42943] singledispatchmethod should expose registry of all known overloads

2021-11-04 Thread Alex Waygood
Change by Alex Waygood : -- nosy: +AlexWaygood versions: +Python 3.11 -Python 3.10 ___ Python tracker ___ ___ Python-bugs-list

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27667 pull_request: https://github.com/python/cpython/pull/29415 ___ Python tracker ___

[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 10b0c671580a2f8dd013b6345c1dc9789d5bd95c by Ned Deily in branch '3.8': bpo-44828: Avoid leaving a zombie Save panel (GH-29372) https://github.com/python/cpython/commit/10b0c671580a2f8dd013b6345c1dc9789d5bd95c --

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1e29dce1138a39e095ba47ab4c1e445fd08716e2 by Miss Islington (bot) in branch '3.9': bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048) (GH-29178) https://github.com/python/cpython/commit/1e29dce1138a39e095ba47ab4c1e445fd08716e2

[issue45716] Confusing parsing error message when trying to use True as keyword argument

2021-11-04 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +27665 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29413 ___ Python tracker

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +27666 pull_request: https://github.com/python/cpython/pull/29414 ___ Python tracker ___

[issue45220] Windows builds sometimes fail on Azure and GitHub Action: fatal error RC1116: RC terminating after preprocessor errors

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset c0f3281d6ca5c59d4a11698364463d968b9ddd3c by Miss Islington (bot) in branch '3.10': bpo-45220: Remove invalid include from resource definition files on Windows (GH-29396) (GH-29406)

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-04 Thread Alex Waygood
Alex Waygood added the comment: Yet more tests were added to the 3.9 branch in PR 29394 in order to test the bugfix. PR 29412 "forward-ports" these new tests into main (and 3.10, if they are backported). -- ___ Python tracker

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-04 Thread Alex Waygood
Change by Alex Waygood : -- pull_requests: +27664 pull_request: https://github.com/python/cpython/pull/29412 ___ Python tracker ___

[issue17305] IDNA2008 encoding is missing

2021-11-04 Thread Eric Case
Change by Eric Case : -- nosy: +case ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43652] Upgrade Windows tcl/tk to 8.6.11

2021-11-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: This worked for me on main and 3.10. Thanks. -- ___ Python tracker ___ ___ Python-bugs-list

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset effb72fa0f6f8f8ec92687fc6a29d63bbdb7e98d by Alex Waygood in branch '3.9': [3.9] bpo-45678: Fix `singledispatchmethod` `classmethod`/`staticmethod` bug (GH-29394) https://github.com/python/cpython/commit/effb72fa0f6f8f8ec92687fc6a29d63bbdb7e98d

[issue13703] Hash collision security issue

2021-11-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: Because today's spammer, whose message was removed, deleted us all. Restoring the version to 3.3 is not possible. -- ___ Python tracker

[issue45717] Bad link to python docs in help(_hashlib)

2021-11-04 Thread Joshua
New submission from Joshua : I was attempting to look through hashlib to try and understand more about python's built-in hash functions. As part of this, I ran 'help(_hashlib)' which returns this text: 'MODULE REFERENCE https://docs.python.org/3.11/library/_hashlib.html' This is an

[issue45716] Confusing parsing error message when trying to use True as keyword argument

2021-11-04 Thread Andre Roberge
Change by Andre Roberge : -- nosy: +aroberge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45716] Confusing parsing error message when trying to use True as keyword argument

2021-11-04 Thread Eric V. Smith
Change by Eric V. Smith : -- components: +Parser nosy: +lys.nikolaou, pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing

[issue45710] Junction/symbolic folder access error on Windows 11

2021-11-04 Thread Eryk Sun
Eryk Sun added the comment: It's not completely surprising that attempting to traverse a name-surrogate reparse point under "%UserProfile%\AppData" fails when using the store app. If you can't or won't move the mountpoint up to %UserProfile%, or anywhere else outside of the application-data

[issue45582] Rewrite getpath.c in Python

2021-11-04 Thread Steve Dower
Steve Dower added the comment: > What fresh clone do you mean? test_embed is failing, not test_freeze. test_freeze is passing, but it shouldn't be able to locate a valid Lib/ directory to load modules from. So it's somehow managing to do it against the "official" logic (none of the

[issue45716] Confusing parsing error message when trying to use True as keyword argument

2021-11-04 Thread Carl Friedrich Bolz-Tereick
New submission from Carl Friedrich Bolz-Tereick : A bit of a nitpick, but the following SyntaxError message is a bit confusing: >>> f(True=1) File "", line 1 f(True=1) ^ SyntaxError: expression cannot contain assignment, perhaps you meant "=="? The problem with that line is

[issue43652] Upgrade Windows tcl/tk to 8.6.11

2021-11-04 Thread Steve Dower
Steve Dower added the comment: New changeset 6340ba7f2c1bef94939dcab0d5babc256ffd7485 by Steve Dower in branch '3.10': bpo-43652: Actually update to Tcl/Tk 8.6.11 on Windows (GH-29397) https://github.com/python/cpython/commit/6340ba7f2c1bef94939dcab0d5babc256ffd7485 --

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Mark Dickinson
Mark Dickinson added the comment: > whether Decimal should extend beyond the specification in this case We already go way beyond the original specification for string formatting. The spec doesn't go further than specifying to-scientific-string and to-engineering-string, neither of which

[issue44319] setup openssl failed on linux

2021-11-04 Thread Christian Heimes
Christian Heimes added the comment: /usr/lib64/openssl11 is not a valid OpenSSL root directory. The option expects an OpenSSL installation directory with bin, lib, and include subdirectories. The custom scheme from CentOS EPEL openssl11 package is not supported. -- resolution: ->

[issue45220] Windows builds sometimes fail on Azure and GitHub Action: fatal error RC1116: RC terminating after preprocessor errors

2021-11-04 Thread miss-islington
miss-islington added the comment: New changeset 1a44d27e6f8a06cb7d56e39be48852f0c3f4502b by Miss Islington (bot) in branch '3.9': bpo-45220: Remove invalid include from resource definition files on Windows (GH-29396)

[issue43652] Upgrade Windows tcl/tk to 8.6.11

2021-11-04 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +27663 pull_request: https://github.com/python/cpython/pull/29407 ___ Python tracker ___

[issue45220] Windows builds sometimes fail on Azure and GitHub Action: fatal error RC1116: RC terminating after preprocessor errors

2021-11-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +27662 pull_request: https://github.com/python/cpython/pull/29406 ___ Python tracker ___

[issue45220] Windows builds sometimes fail on Azure and GitHub Action: fatal error RC1116: RC terminating after preprocessor errors

2021-11-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +27661 pull_request: https://github.com/python/cpython/pull/29405 ___ Python tracker ___

[issue43652] Upgrade Windows tcl/tk to 8.6.11

2021-11-04 Thread Steve Dower
Steve Dower added the comment: New changeset 36b4f9e2a7d5ed55c441eb6dfe5c13baa483b9d4 by Steve Dower in branch 'main': bpo-43652: Actually update to Tcl/Tk 8.6.11 on Windows (GH-29397) https://github.com/python/cpython/commit/36b4f9e2a7d5ed55c441eb6dfe5c13baa483b9d4 --

[issue45220] Windows builds sometimes fail on Azure and GitHub Action: fatal error RC1116: RC terminating after preprocessor errors

2021-11-04 Thread Steve Dower
Steve Dower added the comment: New changeset fd0c84dc28d00d68e4f43034dc41786a682390fd by Steve Dower in branch 'main': bpo-45220: Remove invalid include from resource definition files on Windows (GH-29396) https://github.com/python/cpython/commit/fd0c84dc28d00d68e4f43034dc41786a682390fd

[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-04 Thread Zack McCauley
Zack McCauley added the comment: If you use the older methods to detect OSVersion, Monterey will also identify as 10.16. iirc there’s an environment variable to enable or disable that. On Thu, Nov 4, 2021 at 7:54 AM Marc Culler wrote: > > Marc Culler added the comment: > > According to

[issue45715] round(2500, -3)

2021-11-04 Thread Dennis Sweeney
Dennis Sweeney added the comment: Thanks for the report, but this is the intended behavior. >From https://docs.python.org/3/library/functions.html#round : """values are rounded to the closest multiple of 10 to the power minus ndigits; if two multiples are equally close, rounding is done

[issue45651] -X frozen_modules not defaulting to "off" on Windows when running in source tree?

2021-11-04 Thread Guido van Rossum
Guido van Rossum added the comment: Yes, that’s definitely the problem. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45582] Rewrite getpath.c in Python

2021-11-04 Thread Eric Snow
Eric Snow added the comment: On Wed, Nov 3, 2021 at 6:25 PM Steve Dower wrote: > Now to find out why the old getpath could somehow locate the stdlib but new > getpath cannot... (I'm guessing it is finding the "original" stdlib rather > than the fresh clone, since AFAICT there's no reference

[issue45651] -X frozen_modules not defaulting to "off" on Windows when running in source tree?

2021-11-04 Thread Eric Snow
Eric Snow added the comment: maybe related: https://github.com/python/cpython/pull/29041#discussion_r734085599 -- ___ Python tracker ___

[issue45714] test_multiprocessing_spawn hangs sometimes

2021-11-04 Thread Skip Montanaro
Skip Montanaro added the comment: Took me a while to notice the -i flag to regrtest.py. I think that solves my particular problem, so I will close this. Is there a place to see how 'make test' is run on the buildbots? -- stage: -> resolved status: open -> closed

[issue42967] [CVE-2021-23336] urllib.parse.parse_qsl(): Web cache poisoning - `; ` as a query args separator

2021-11-04 Thread Éric Araujo
Éric Araujo added the comment: See the changelog entry for 2021-11-04 10:31:24 (and the other ticket where Guido just commented) (and thanks for cleaning spam!) -- ___ Python tracker

[issue13703] Hash collision security issue

2021-11-04 Thread Guido van Rossum
Guido van Rossum added the comment: Hey Erlend, why did you add so many people to the nosy list of this old issue? On Thu, Nov 4, 2021 at 07:33 Erlend E. Aasland wrote: > > Change by Erlend E. Aasland : > > > -- > components: +Interpreter Core -Argument Clinic > nosy: +Arach,

[issue45715] round(2500, -3)

2021-11-04 Thread Jacek
New submission from Jacek : round(2500, -3) returns 2000 instead of 3000. I have checked it on 3.7.4 and 3.6.9. -- components: Library (Lib) messages: 405726 nosy: jacekblaz priority: normal severity: normal status: open title: round(2500, -3) type: behavior versions: Python 3.7

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Raymond Hettinger
Raymond Hettinger added the comment: Tim, do you have any thoughts on whether Decimal should extend beyond the specification in this case? -- assignee: -> rhettinger nosy: +rhettinger, tim.peters ___ Python tracker

[issue42967] [CVE-2021-23336] urllib.parse.parse_qsl(): Web cache poisoning - `; ` as a query args separator

2021-11-04 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: See bpo-12168 for a similar cleanup by Eryk Sun. There was approx. 20 spammed issues. Eryk fixed most of them; I did a couple. -- ___ Python tracker

[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-04 Thread Marc Culler
Marc Culler added the comment: According to wikipedia, it was only the Big Sur beta that identified itself as 10.16. (And I observed this with the beta). But the release and, I think, the later Big Sur betas stopped doing that. But I did eventually find a page showing a tweet that

[issue42967] [CVE-2021-23336] urllib.parse.parse_qsl(): Web cache poisoning - `; ` as a query args separator

2021-11-04 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Yes, cleaning up ahmedsayeed1982 spam. I did my best to revert the nosy list, component, versions, and assigned to changes. What did I mess up? -- ___ Python tracker

[issue42967] [CVE-2021-23336] urllib.parse.parse_qsl(): Web cache poisoning - `; ` as a query args separator

2021-11-04 Thread Éric Araujo
Éric Araujo added the comment: erlandaasland you’ve been editing closed issues today (got messages from at least 2). maybe submitting old browser tabs with obsolete form data? -- nosy: +erlendaasland ___ Python tracker

[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-04 Thread Marc Culler
Marc Culler added the comment: Where do you think that "feature" is documented? -- ___ Python tracker ___ ___ Python-bugs-list

[issue12168] SysLogHandler incorrectly appends \000 to messages

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405704 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue12168] SysLogHandler incorrectly appends \000 to messages

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Library (Lib) -Regular Expressions nosy: -ahmedsayeed1982, ezio.melotti, mrabarnett versions: -Python 3.10 ___ Python tracker ___

[issue12419] Add ident parameter to SysLogHandler

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: +Library (Lib) -Installation nosy: +flub, python-dev, vinay.sajip -ahmedsayeed1982 versions: -Python 3.6 ___ Python tracker ___

[issue17482] functools.update_wrapper mishandles __wrapped__

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405702 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue12419] Add ident parameter to SysLogHandler

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405705 ___ Python tracker ___ ___ Python-bugs-list

[issue17482] functools.update_wrapper mishandles __wrapped__

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: -IO nosy: -ahmedsayeed1982 versions: -Python 3.9 ___ Python tracker ___ ___ Python-bugs-list

[issue13703] Hash collision security issue

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: +Interpreter Core -Argument Clinic nosy: +Arach, Arfrever, Huzaifa.Sidhpurwala, Jim.Jewett, Mark.Shannon, PaulMcMillan, Zhiping.Deng, alex, barry, benjamin.peterson, christian.heimes, cvrebert, dmalcolm, eric.araujo, eric.snow, fx5,

[issue33725] Python crashes on macOS after fork with no exec

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +macOS -Library (Lib) nosy: +ned.deily, ronaldoussoren -ahmedsayeed1982 versions: +Python 3.8 -Python 3.7 ___ Python tracker ___

[issue13703] Hash collision security issue

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405707 ___ Python tracker ___ ___ Python-bugs-list

[issue33725] Python crashes on macOS after fork with no exec

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405703 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28524] Set default argument of logging.disable() to logging.CRITICAL

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405700 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42967] [CVE-2021-23336] urllib.parse.parse_qsl(): Web cache poisoning - `; ` as a query args separator

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +AdamGold, eric.araujo, gregory.p.smith, kj, lemburg, mcepl, miss-islington, ned.deily, orsenthil, pablogsal, petr.viktorin, rschiron, serhiy.storchaka, vstinner -ahmedsayeed1982 versions: +Python 3.10, Python 3.6, Python 3.7, Python 3.9

[issue28524] Set default argument of logging.disable() to logging.CRITICAL

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Library (Lib) -Subinterpreters nosy: -ahmedsayeed1982 versions: +Python 3.7 -Python 3.8 ___ Python tracker ___

[issue13936] RFE: change bool(datetime.time(0, 0, 0)) to evaluate as True

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405699 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42967] [CVE-2021-23336] urllib.parse.parse_qsl(): Web cache poisoning - `; ` as a query args separator

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405709 ___ Python tracker ___ ___ Python-bugs-list

[issue13936] RFE: change bool(datetime.time(0, 0, 0)) to evaluate as True

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Library (Lib) -Tkinter nosy: -ahmedsayeed1982 ___ Python tracker ___ ___ Python-bugs-list

[issue14001] CVE-2012-0845 Python v2.7.2 / v3.2.2 (SimpleXMLRPCServer): DoS (excessive CPU usage) by processing malformed XMLRPC / HTTP POST request

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: +Library (Lib), XML -email nosy: +Arfrever, dmalcolm, ezio.melotti, flox, iankko, loewis, neologix, orsenthil, pitrou, python-dev, rosslagerwall, schmir -ahmedsayeed1982, barry, r.david.murray ___

[issue21082] os.makedirs(exist_ok=True) is not thread-safe: umask is set temporary to 0, serious security problem

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405701 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue21082] os.makedirs(exist_ok=True) is not thread-safe: umask is set temporary to 0, serious security problem

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Library (Lib) -Subinterpreters nosy: -ahmedsayeed1982 ___ Python tracker ___ ___

[issue14001] CVE-2012-0845 Python v2.7.2 / v3.2.2 (SimpleXMLRPCServer): DoS (excessive CPU usage) by processing malformed XMLRPC / HTTP POST request

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405710 ___ Python tracker ___ ___ Python-bugs-list

[issue38379] finalizer resurrection in gc

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405696 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38379] finalizer resurrection in gc

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Interpreter Core -IDLE nosy: -ahmedsayeed1982, terry.reedy versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.6 ___ Python tracker

[issue18458] interactive interpreter crashes and test_readline fails on OS X 10.9 Mavericks due to libedit update

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: -email nosy: +Etienne Le Sueur, Russell.Jurney, jcea, mkleehammer, mrichman, ned.deily, nneonneo, python-dev, ronaldoussoren -ahmedsayeed1982, barry, r.david.murray versions: -Python 3.11 ___ Python

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405694 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Interpreter Core -IDLE nosy: -ahmedsayeed1982, terry.reedy ___ Python tracker ___ ___

[issue18458] interactive interpreter crashes and test_readline fails on OS X 10.9 Mavericks due to libedit update

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405711 ___ Python tracker ___ ___ Python-bugs-list

[issue39926] unicodedata for Unicode 13.0.0

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: -Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39926] unicodedata for Unicode 13.0.0

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405697 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40257] Improve the use of __doc__ in pydoc

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: +Library (Lib) -Interpreter Core nosy: +eamanu, gvanrossum, levkivskyi, lukasz.langa, mark.dickinson, mbussonn, ncoghlan, serhiy.storchaka, tcaswell, terry.reedy, veky, xtreak -ahmedsayeed1982 versions: +Python 3.9 -Python 3.6

[issue39926] unicodedata for Unicode 13.0.0

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: -ahmedsayeed1982, larry versions: +Python 3.9 -Python 3.7 ___ Python tracker ___ ___

  1   2   >