[issue42050] ensurepip fails if cwd contains illformed setup.cf

2020-10-16 Thread Hartmut Goebel
New submission from Hartmut Goebel : If the current directory contains a ill-formed setup.cfg, setting up a virtual env fails, caused by ensurepip failing: Expected behaviour: running ensurepip should completely ignore the content of the current working directory. How to reproduce: $ rm -rf

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-16 Thread STINNER Victor
New submission from STINNER Victor : The XML documentation starts with a red warning: "Warning: The XML modules are not secure against erroneous or maliciously constructed data. If you need to parse untrusted or unauthenticated data see the XML vulnerabilities and The defusedxml Package secti

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-16 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue41919] Modify test_codecs to use the new codecs.unregister() function

2020-10-16 Thread STINNER Victor
STINNER Victor added the comment: New changeset c9f696cb96d1c362d5cad871f61da520572d9b08 by Hai Shi in branch 'master': bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513) https://github.com/python/cpython/commit/c9f696cb96d1c362d5cad871f61da520572d9b08 --

[issue41919] Modify test_codecs to use the new codecs.unregister() function

2020-10-16 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue36034] Suprise halt caused by -Werror=implicit-function-declaration in ./Modules/posixmodule.c

2020-10-16 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- resolution: -> not a bug ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue36534] tarfile and zipfile: handling Windows (path) illegal characters in archive member names

2020-10-16 Thread STINNER Victor
STINNER Victor added the comment: zipfile is also impacted by the issue of reserved Windows filenames like "NUL". ZipFile._sanitize_windows_name() does not handle them. -- title: tarfile: handling Windows (path) illegal characters in archive member names -> tarfile and zipfile: handl

[issue42052] pathlib.Path should not call str() internally to allow inheritance

2020-10-16 Thread conchylicultor
New submission from conchylicultor : I'm writing a subclass of `pathlib.Path` with custom `__fspath__`. To prevent bad usages (users should use `os.fspath(path)` instead of `str(path)` to access the underlying path), I would like to overwrite `str`: ``` class MyPath(pathlib.PosixPath): de

[issue42051] plistlib inherits XML vulnerabilities: we should document them

2020-10-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: Is there something we could do in plistlib to avoid those problems? Plist XML files are not arbitrary XML. In particular disabling entity definitions would avoid the problems mentioned as plist files should not contain those. That said, a quick glance at t

[issue15795] Zipfile.extractall does not preserve file permissions

2020-10-16 Thread Nikolay
Nikolay added the comment: Is there any chance that the pull request will be accepted? I'm a bit tired of using workaround every time I need unzip something on linux. -- nosy: +kulakov-n ___ Python tracker

[issue24828] Segfault when using store-context AST node in a load context

2020-10-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue42052] pathlib.Path should not call str() internally to allow inheritance

2020-10-16 Thread conchylicultor
conchylicultor added the comment: Closing this as I realize that even if this was solved, it would still not fully resolve the issue. Basically I want to control how __fspath__ and __str__ behave externally (for users), but internal fspath and str should always call `super()` -- sta

[issue42046] Unable to write to file without elevated privileges

2020-10-16 Thread john_miller
john_miller added the comment: Short summary: >icacls.exe C:\Python38-32\python.exe lists Mandatory Label\Low Mandatory >Level:(I)(NW) ** This might be the problem. Removing "L" with icacls might >work. >User integrity level is usually "Medium" >**When a user attempts to launch an executable

[issue33387] Simplify bytecodes for try-finally, try-except and with blocks.

2020-10-16 Thread Xavier Morel
Xavier Morel added the comment: The 3.9 changelog mentions WITH_EXCEPT_FINISH but that seems to have ultimately been called WITH_EXCEPT_START, maybe it shoudl be updated also? -- nosy: +xmorel ___ Python tracker

[issue42011] Documentation for logging.Filter.filter reports the wrong return type

2020-10-16 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset e9959c71185d0850c84e3aba0301fbc238f194a9 by Necdet Can Atesman in branch 'master': bpo-42011: Update documentation of logging.Filter.filter() (GH-22692) https://github.com/python/cpython/commit/e9959c71185d0850c84e3aba0301fbc238f194a9 --

[issue42030] Drop support for dynload_aix

2020-10-16 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +BTaskaya, pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue42046] Unable to write to file without elevated privileges

2020-10-16 Thread Eryk Sun
Eryk Sun added the comment: > icacls.exe C:\Python38-32\python.exe lists Mandatory Label\ > Low Mandatory Level:(I)(NW) ** This might be the problem. Removing "L" > with icacls might work. > > **When a user attempts to launch an executable file, the new process is > created with the minimum of

[issue28660] TextWrapper break_long_words=True, break_on_hyphens=True on long words

2020-10-16 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch nosy: +iritkatriel nosy_count: 3.0 -> 4.0 pull_requests: +21688 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22721 ___ Python tracker _

[issue28660] TextWrapper break_long_words=True, break_on_hyphens=True on long words

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: textwrap does not actually apply the break-on-hyphen algorithm at all to long words. It just chops them up into depth-sized pieces. The PR I just submitted looks for hyphens and uses them as cut points if they exist, without any attempt to understand their co

[issue33387] Simplify bytecodes for try-finally, try-except and with blocks.

2020-10-16 Thread Mark Shannon
Change by Mark Shannon : -- pull_requests: +21689 pull_request: https://github.com/python/cpython/pull/22723 ___ Python tracker ___

[issue42041] venv subprocess call to python resolves to wrong interpreter

2020-10-16 Thread Steve Dower
Steve Dower added the comment: Thanks for doing the PR, Paul. Honestly, I'd rather document in subprocess that Popen("python") is not a good idea, and should use either sys.executable or shutil.which depending on what you mean. This is a platform-independent gotcha, as it's very easy to repr

[issue42011] Documentation for logging.Filter.filter reports the wrong return type

2020-10-16 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +21690 pull_request: https://github.com/python/cpython/pull/22724 ___ Python tracker _

[issue42011] Documentation for logging.Filter.filter reports the wrong return type

2020-10-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +21691 pull_request: https://github.com/python/cpython/pull/22725 ___ Python tracker ___ __

[issue33387] Simplify bytecodes for try-finally, try-except and with blocks.

2020-10-16 Thread Mark Shannon
Mark Shannon added the comment: Yes, thanks for pointing that out. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue42030] Drop support for dynload_aix

2020-10-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: I think we should just axe it. -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-b

[issue42011] Documentation for logging.Filter.filter reports the wrong return type

2020-10-16 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 8f7eab788aedcf1a23ef9be767e1b3502a6bbd5c by Miss Skeleton (bot) in branch '3.8': bpo-42011: Update documentation of logging.Filter.filter() (GH-22692) (GH-22724) https://github.com/python/cpython/commit/8f7eab788aedcf1a23ef9be767e1b3502a6bbd5c --

[issue42011] Documentation for logging.Filter.filter reports the wrong return type

2020-10-16 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset dff9161821032acfd2588d42d88511ebdbabaaf3 by Miss Skeleton (bot) in branch '3.9': bpo-42011: Update documentation of logging.Filter.filter() (GH-22692) (GH-22725) https://github.com/python/cpython/commit/dff9161821032acfd2588d42d88511ebdbabaaf3 --

[issue42011] Documentation for logging.Filter.filter reports the wrong return type

2020-10-16 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue28660] TextWrapper break_long_words=True, break_on_hyphens=True on long words

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Actually I see what Serhiy meant about the hyphen algorithm - the regex breaking up words. Yes, this is applied to long words and the reason he stated for this issue is correct. It is probably possible to make that regex understand width and long-words, but i

[issue42053] fwalk: incorrect boolean test for non-fd arguments

2020-10-16 Thread dubiousjim
New submission from dubiousjim : `Lib/os.py` has at line 464, in definition of `fwalk`: ``` if not isinstance(top, int) or not hasattr(top, '__index__'): ``` If I understand this test correctly, it should be requiring that the name/fd is NEITHER an int NOR has an __index__ method. As written,

[issue42030] Drop support for dynload_aix

2020-10-16 Thread Kevin
Kevin added the comment: Ok, I have updated the PR to remove it completely. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue42041] venv subprocess call to python resolves to wrong interpreter

2020-10-16 Thread Paul Moore
Paul Moore added the comment: Fair enough. I think we have to be careful here - people do rely on how the "internal" aspects of virtual environments work, like it or not, and we've definitely broken people's code in the past as a result of taking a hardline "it's not documented, so it's not

[issue42030] Drop support for dynload_aix

2020-10-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9 by Kevin Adler in branch 'master': closes bpo-42030: Remove legacy AIX dynload support (GH-22717) https://github.com/python/cpython/commit/1dd6d956a3ddf2cf6d4a69241dba8cd1379421b9 -- resoluti

[issue40341] Programming FAQ includes actively discouraged solutions; Should those be removed?

2020-10-16 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +21692 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22726 ___ Python tracker

[issue42041] venv subprocess call to python resolves to wrong interpreter

2020-10-16 Thread Steve Dower
Steve Dower added the comment: > The bit that I *do* think is a venv gotcha is that it's entirely reasonable > for a user to expect that if they run path\to\venv\Scripts\python.exe, then > their Python script will be run by that executable. This is still true, though, as much as it's ever be

[issue32549] Travis: Test with OpenSSL 1.1.0

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue32659] Solaris "stat" should support "st_fstype"

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue31878] Cygwin: _socket module does not compile due to missing ioctl declaration

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue33483] build system requires explicit compiler, but should discover it

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue40341] Programming FAQ includes actively discouraged solutions; Should those be removed?

2020-10-16 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +21693 pull_request: https://github.com/python/cpython/pull/22727 ___ Python tracker _

[issue40341] Programming FAQ includes actively discouraged solutions; Should those be removed?

2020-10-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset a22a19f3548f6064035e7c59a19cda1e9506db92 by Zackery Spytz in branch 'master': bpo-40341: Remove some "discouraged solutions" in Doc/faq/programming.rst (GH-22726) https://github.com/python/cpython/commit/a22a19f3548f6064035e7c59a19cda1e9506d

[issue33394] the build of the shared modules is quiet/non-visible when GNU make gets passed macros

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue33483] build system requires explicit compiler, but should discover it

2020-10-16 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue40341] Programming FAQ includes actively discouraged solutions; Should those be removed?

2020-10-16 Thread Raymond Hettinger
Change by Raymond Hettinger : -- versions: +Python 3.10 -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-16 Thread Gregory P. Smith
Gregory P. Smith added the comment: FWIW I think your numbers look good, a small needle cut-off is likely a good idea. -- ___ Python tracker ___ _

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-16 Thread Gregory P. Smith
Gregory P. Smith added the comment: Another potential algorithm to consider in large needle situations is a Rabin-Karp rolling hash string search. If used, it's the kind of algorithm that I'd probably bail out to an alternate method on if a run of Rabin-Karp started having a high percentage

[issue42054] email message get_content throws KeyError for content main types font and model

2020-10-16 Thread Mark Sapiro
New submission from Mark Sapiro : With Policy = email.policy.default, there are handlers for get_content() only for content types 'text', 'audio', 'image', 'video', 'application', 'message/rfc822', 'message/external-body' and 'message'. While these are the only main types listed in RFC 6838,

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-16 Thread Dennis Sweeney
Dennis Sweeney added the comment: I'm doing a couple more timing tests to try to understand exactly when the cutoff should be applied (based on some combination of needle and haystack lengths). Can the rolling hash algorithm be made to go sublinear like O(n/m)? It looked like it was pretty

[issue42046] Unable to write to file without elevated privileges

2020-10-16 Thread john_miller
john_miller added the comment: I changed the integrity-level of "C:\" to "Mandatory Label\High Mandatory Level:(OI)(NP)(IO)(NW)" which seems to have fixed the problem. Thanks for the help. I guess I must have directly or through some other application indirectly changed the integrity level

[issue42041] venv subprocess call to python resolves to wrong interpreter

2020-10-16 Thread Paul Moore
Paul Moore added the comment: > This is still true, though, as much as it's ever been. But it's *not*, if I understand the problem here. Windows resolves a bare "python" command by searching the directory containing the running executable first. I would reasonably assume that if I type

[issue19270] Document that sched.cancel() doesn't distinguish equal events and can break order

2020-10-16 Thread Bar Harel
Change by Bar Harel : -- pull_requests: +21694 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/22729 ___ Python tracker ___

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-16 Thread Gregory P. Smith
Gregory P. Smith added the comment: I assume a rolling hash is linear at best, even if you do add some skip ahead checks. -- ___ Python tracker ___ __

[issue42055] Python Nuget Packages for Windows Installation: Request for more versions

2020-10-16 Thread Matias Grioni
New submission from Matias Grioni : Hello, The python nuget feed here, https://www.nuget.org/packages/python, has a lot of the versions post 3.5. However, it is missing some bug fix and security fix versions. For example, it has no versions after 3.6.8, which had security fixes until 3.6.12.

[issue42028] Regression in mimetypes for image/bmp

2020-10-16 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue40341] Programming FAQ includes actively discouraged solutions; Should those be removed?

2020-10-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 0fbddb14dc03f61738af01af88e7d8aa8df07336 by Miss Skeleton (bot) in branch '3.9': bpo-40341: Remove some "discouraged solutions" in Doc/faq/programming.rst (GH-22726) (GH-22727) https://github.com/python/cpython/commit/0fbddb14dc03f61738af01a

[issue40341] Programming FAQ includes actively discouraged solutions; Should those be removed?

2020-10-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: Dominik, thanks for the suggestion. Zackery, thanks for the PR. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue41988] No hyphen in broken up word in documentation

2020-10-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am closing because word breakage when wrapping and justifying is an OS-browswer issue. I see the image as having two hyphenation bugs, but whoever wrote that viewer might disagree. The displayed paragraph is the first bullet point in the doc. With Firefox

[issue41988] No hyphen in broken up word in documentation

2020-10-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Raymond, what viewer are you using when you see unhyphenated word breaks? -- ___ Python tracker ___ _

[issue41966] datetime.time issue with pickling in PyPy

2020-10-16 Thread Dean
Change by Dean : -- keywords: +patch pull_requests: +21695 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22731 ___ Python tracker ___ ___

[issue41989] htmlparser unclosed script tag causes data loss

2020-10-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Waylan, 3.7 and before only get security fixes. To me, this might be considered an enhancement rather than bug fix, but I will leave that to Ezio. -- nosy: +terry.reedy versions: -Python 3.5, Python 3.6, Python 3.7, Python 3.8, Python 3.9 _

[issue42055] Python Nuget Packages for Windows Installation: Request for more versions

2020-10-16 Thread Paul Moore
Paul Moore added the comment: Python 3.6.9 and later were source-only security fix releases. We don't provide *any* binary releases for those versions, the nuget distribution is no different in that respect. The release schedule for Python 3.6 is at https://www.python.org/dev/peps/pep-0494/

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-16 Thread Tim Peters
Tim Peters added the comment: I don't think Rabin-Karp is worth trying here. The PR is provably worst-case linear time, and the constant factor is already reasonably small. Its only real weakness I can see is that it can be significantly (but seemingly not dramatically) slower than the statu

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-16 Thread Tim Peters
Tim Peters added the comment: Removed 3.8 from the Versions list. The code was functioning as designed, and the O(n*m) worst case bounds were always known to be possible, so there's no actual bug here. -- versions: -Python 3.8 ___ Python tracker

[issue42010] Generic types accept indexing/subscripting, causing confusion

2020-10-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Subscription of list and dict (only with '') and ??? is at least puzzling. Removal of a new feature after release is a bad idea. But this new feature, expansion of subscription, needs to documented in https://docs.python.org/3/reference/expressions.html#sub

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-16 Thread Tim Peters
Tim Peters added the comment: And changed the "Type" field to "performance", because speed is the only issue here. -- type: behavior -> performance ___ Python tracker ___ ___

[issue42010] Generic types accept indexing/subscripting, causing confusion

2020-10-16 Thread Guido van Rossum
Guido van Rossum added the comment: That sentence has been a lie for a long time (from the start?). Any type can define __getitem__ and get this behavior, though in this case it is done through __class_getitem__ (PEP NNN). -- ___ Python tracker <

[issue42028] Regression in mimetypes for image/bmp

2020-10-16 Thread Steve Dower
Steve Dower added the comment: Yep, looks like the extra entry can just be removed. Guess we missed it in issue4963 Care to submit a PR? -- versions: +Python 3.10 -Python 3.7 ___ Python tracker ___

[issue32215] sqlite3 400x-600x slower depending on formatting of an UPDATE statement in a string

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue31522] _mboxMMDF.get_string() fails to pass param to get_bytes()

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue31522] _mboxMMDF.get_string() fails to pass param to get_bytes()

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Well, the PR doesn't have a unit test so maybe not. -- ___ Python tracker ___ ___ Python-bugs-list

[issue35414] A reference counting bug in PyState_RemoveModule()

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42041] venv subprocess call to python resolves to wrong interpreter

2020-10-16 Thread Steve Dower
Steve Dower added the comment: > I'm not asking that we guarantee any behaviour, or that we commit ourselves > to anything. Just that we note that people ought not to be making a specific > assumption Which is a fine intent, it's just the running assumption is that if it's in the documentati

[issue35436] Add missing PyErr_NoMemory() calls

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? 2.7 is no longer relevant. -- nosy: +iritkatriel ___ Python tracker ___ ___ Py

[issue42055] Python Nuget Packages for Windows Installation: Request for more versions

2020-10-16 Thread Matias Grioni
Matias Grioni added the comment: Thanks Paul. I was confused by the 3.7.9 version on the feeds since it is a security fix version, but didn't do a more through check. -- ___ Python tracker _

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35847] RISC-V needs CTYPES_PASS_BY_REF_HACK

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42055] Python Nuget Packages for Windows Installation: Request for more versions

2020-10-16 Thread Steve Dower
Steve Dower added the comment: Python 3.7.9 was a special case, as mentioned on the download page: https://www.python.org/downloads/release/python-379/ -- ___ Python tracker

[issue36179] _hashopenssl has reference leaks in OOM case

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36285] Integer overflow in array.array.remove()

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? It was not backported to 3.7, but that's over now right? -- nosy: +iritkatriel ___ Python tracker ___ _

[issue36398] A possible crash in structseq.c's structseq_repr()

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36531] PyType_FromSpec wrong behavior with multiple Py_tp_members

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? Or did you keep it open in order to add a unit test? -- nosy: +iritkatriel ___ Python tracker ___ _

[issue36583] Do not swallow exceptions in the _ssl module

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue31922] Can't receive replies from multicast UDP with asyncio

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42041] venv subprocess call to python resolves to wrong interpreter

2020-10-16 Thread Paul Moore
Paul Moore added the comment: > We'd need Mark to weigh in (or possibly track down and ask a colleague), but > I expect the assumption is that subprocess.Popen("python") searches PATH > first. I'm sure it was, TBH. The executable directory side of things is really just on digging a bit deep

[issue26423] Integer overflow in wrap_lenfunc() on 64-bit build of Windows with len > 2**31-1

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35525] Incorrect keyword name in NNTP.starttls() documentation

2020-10-16 Thread Tal Einat
Tal Einat added the comment: Indeed, this can be closed :) Thanks for the report Colin, thanks for the PR Harmandeep, and thanks for the reminder to close this Irit! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed _

[issue37553] SendfileUsingSendTest tests timeout too short for Windows ARM32

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42056] Configure on Apple ARM: "Unexpected output of 'arch' on OSX"

2020-10-16 Thread Misty De Méo
New submission from Misty De Méo : Configure's `arch` check on Macs running with Apple Silicon CPUs will fail because the list of acceptable architectures is hardcoded to Intel and PowerPC: https://github.com/python/cpython/blob/master/configure.ac#L2486-L2496 This needs a clause that adds "ar

[issue37428] SSLContext.post_handshake_auth implicitly enables cert validation

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? 2.7 is no longer relevant. -- nosy: +iritkatriel ___ Python tracker ___ ___ Pyt

[issue42056] Configure on Apple ARM: "Unexpected output of 'arch' on OSX"

2020-10-16 Thread Misty De Méo
Change by Misty De Méo : -- keywords: +patch pull_requests: +21696 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22732 ___ Python tracker ___

[issue37440] httplib should enable post-handshake authentication for TLS 1.3

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? 2.7 is no longer relevant. -- nosy: +iritkatriel ___ Python tracker ___ ___ Pyt

[issue38094] unneeded assignment to wb.len in PyBytes_Concat using buffer protocol

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38041] IDLE Shell: Refine restart line

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37555] _CallList.__contains__ doesn't always respect ANY.

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Does this need a backport? It's in 3.9 but not 3.8. -- nosy: +iritkatriel ___ Python tracker ___ __

[issue38041] IDLE Shell: Refine restart line

2020-10-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yes, the further changes I am thinking about should be a new issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue32820] Add and document __format__ method for IPv[46]Address

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Do these PRs need to be backported? They're in 3.9 but not 3.8. -- nosy: +iritkatriel ___ Python tracker ___ __

[issue32498] urllib.parse.unquote raises incorrect errormessage when string parameter is bytes

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? (It's intended as a 3.9-only change). -- nosy: +iritkatriel ___ Python tracker ___

[issue42046] Unable to write to file without elevated privileges

2020-10-16 Thread Eryk Sun
Eryk Sun added the comment: > processtoken = win32security.OpenProcessToken(process, > win32con.MAXIMUM_ALLOWED) > win32security.GetTokenInformation(processtoken, > win32security.TokenMandatoryPolicy) FYI, starting with Windows 8, the system supports pseudo-handles for the access token of t

[issue31202] Windows pathlib.Path.glob(pattern) fixed part of the pattern changed to lowercase whereas it should be unchanged.

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue32820] Add and document __format__ method for IPv[46]Address

2020-10-16 Thread Eric V. Smith
Eric V. Smith added the comment: Re: backporting A quick test shows this feature is not in 3.8. We can't add new features to 3.8, so I'd say "no, it doesn't need to be backported". -- ___ Python tracker __

  1   2   >