[issue38628] Issue with ctypes in AIX

2020-08-05 Thread Ronald Oussoren
Ronald Oussoren added the comment: Relevant libffi documentation: https://github.com/libffi/libffi/blob/4661ba7928b49588aec9e6976673208c8cbf0295/doc/libffi.texi#L505 -- ___ Python tracker

[issue41484] Overriding dictionary value under wrong key.

2020-08-05 Thread Admir Ljubijankić
New submission from Admir Ljubijankić : I'm writing a function that combines two dictionaries called "baseProducts" and "variantProducts". The logic behind is simple, I loop trough variantProducts, create a string that will be used as a key for that combined product. Add all values of

[issue38628] Issue with ctypes in AIX

2020-08-05 Thread Ronald Oussoren
Ronald Oussoren added the comment: As I mentioned earlier the code in sgtdict.c seems dodgy, the libffi representation for an array in a dict should be the same regardless of the size of the dictionary. That said, I haven't studied the ctypes code yet and am not sure if my analysis is

[issue41484] Overriding dictionary value under wrong key.

2020-08-05 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is expected behaviour. the assessment to retProduct[productKey] is not a copy. If those variants have the same parent and a different color you'll end up with a baseProduct where 'variants' refers to the same variant dict (and the second color seen

[issue41485] Repr of complex number with signed zero does not roundtrip

2020-08-05 Thread Eric Wieser
New submission from Eric Wieser : Python distinguishes signed zeros by their repr: # floats >>> 0.0 0.0 >>> -0.0 -0.0 # complex >>> complex(0.0, 0.0) # A 0j >>> complex(0.0, -0.0) # B -0j >>> complex(-0.0, 0.0) # C (-0+0j) >>> complex(-0.0, -0.0) # D (-0+0j) However, only one of these

[issue41483] Do not acquire lock in MemoryHandler.flush() if no target defined

2020-08-05 Thread Kostis Anagnostopoulos
New submission from Kostis Anagnostopoulos : The `logging.handlers.MemoryHandler.flush()` method acquire the lock even if target has not been set, and the method is a noop: ``` def flush(self): # (Docstring skipped) self.acquire() try: if self.target: for

[issue41485] Repr of complex number with signed zero does not roundtrip

2020-08-05 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- nosy: +remi.lapeyre versions: +Python 3.10, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list

[issue41480] python won't save

2020-08-05 Thread E. Paine
E. Paine added the comment: Sorry for this issue, IDLE 3.8.5 has a known (and now resolved) issue with saving if the file was empty when opened (see #41373). If this is not your problem, please do come back and say so, but otherwise this issue should be closed as a duplicate. --

[issue41485] Repr of complex number with signed zero does not roundtrip

2020-08-05 Thread Eric Wieser
Eric Wieser added the comment: This was reported and closed in https://bugs.python.org/issue17336, but it seems to me that this is easy to avoid - have `__repr__` return `complex(...)` for values which do not round-trip. -- ___ Python tracker

[issue41304] [CVE-2020-15801] python 38 embed ignore python38._pth file on windows

2020-08-05 Thread huangtaizhuo
huangtaizhuo added the comment: hi, since the affected system is not clearly stated on the NVD, I'd like to confirm with you that: Does the CVE-2020-15801 vulnerability affect only the Windows OS? thanks a lot! -- nosy: +owen.huang ___

[issue41411] Improve and consolidate f-strings docs

2020-08-05 Thread Ama Aje My Fren
Ama Aje My Fren added the comment: Hi, >The online docs seem updated, so I'm not sure why it's not working. Maybe you >could try So it seems that the .. index::[0] directive creates an index[1]. Both f-index and findex are available in it. Search is a bit different. A searchindex[2] is

[issue41458] Avoid overflow/underflow in math.prod()

2020-08-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: Two edits: - s.append(x) if side == s_side else t.append(y) + s.append(x) if side == s_side else t.append(x) - return prod(s, start=total) +for x in s: +total *= x +return total -- ___ Python

[issue39871] math.copysign raises SystemError with non-float x and custom y

2020-08-05 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +20893 pull_request: https://github.com/python/cpython/pull/21749 ___ Python tracker ___

[issue41458] Avoid overflow/underflow in math.prod()

2020-08-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: Here's variant (minimally tested) that has a fast path for the common case (no overflow or underflow), that uses a list instead of a deque, that keeps memory use small (only storing pending values that can't be combined without triggering an overflow or

[issue41232] Python `functools.wraps` doesn't deal with defaults correctly

2020-08-05 Thread Thor Whalen
Thor Whalen added the comment: You are the guardians of the great python, so we can leave it at that if you want. That said for posterity, I'll offer a defense. The same "the tools does what it does, and if you need something else, use another tool" argument could have been applied to vote

[issue40726] ast.Call end_lineno is defined and returns None

2020-08-05 Thread miss-islington
miss-islington added the comment: New changeset a1320989f5350439e0677450f49b36f2c10583d2 by Miss Islington (bot) in branch '3.9': bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-20312) https://github.com/python/cpython/commit/a1320989f5350439e0677450f49b36f2c10583d2

[issue41475] __future__.annotations set to become default in Python 4.0?

2020-08-05 Thread YoSTEALTH
YoSTEALTH added the comment: @cool-RR since your patch focuses on ``3.7`` there might be a merge issue. There might be other place where ``4.0`` is mentioned though. Its better to let core dev like Raymond make the call. -- ___ Python tracker

[issue41488] Unusable type hint should not be silently ignored

2020-08-05 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +gvanrossum, levkivskyi ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41488] Unusable type hint should not be silently ignored

2020-08-05 Thread Guido van Rossum
Guido van Rossum added the comment: No, that is up to the static type checker. With PEP 563 nearing completion in Python 3.10 we will in fact be ignoring all annotations silently. -- resolution: -> not a bug stage: -> resolved status: open -> closed

[issue41303] perf_counter result does not count system sleep time in Mac OS

2020-08-05 Thread Ronald Oussoren
Ronald Oussoren added the comment: @Nathaniel: I hadn't noticed that CLOCK_MONOTONIC on macOS behaves different from that clock on Linux. Sigh. That means there's little reason to switch to CLOCK_MONOTONIC on macOS, that would just result in different behaviour between Linux and macOS.

[issue40726] ast.Call end_lineno is defined and returns None

2020-08-05 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +20888 pull_request: https://github.com/python/cpython/pull/21742 ___ Python tracker ___

[issue41475] __future__.annotations set to become default in Python 4.0?

2020-08-05 Thread Ram Rachum
Ram Rachum added the comment: Thanks for linking that, YoStealth. Unless I'm missing anything, it looks like there's agreement that the right answer is 3.10, and my PR fixes a spot which was omitted in the PR from the previous issues. Agreed? --

[issue41303] perf_counter result does not count system sleep time in Mac OS

2020-08-05 Thread STINNER Victor
STINNER Victor added the comment: > (On which note: Please don't switch macOS to use > clock_gettime(CLOCK_MONOTONIC); that would be a breaking change for us!) Right, I propose to add new clock(s) since people may rely on the current clock(s) specifications. > At least Linux, macOS,

[issue41480] python won't save

2020-08-05 Thread LX Cubing
Change by LX Cubing : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41475] __future__.annotations set to become default in Python 4.0?

2020-08-05 Thread YoSTEALTH
YoSTEALTH added the comment: @rhettinger https://bugs.python.org/issue41314 -- nosy: +YoSTEALTH ___ Python tracker ___ ___

[issue41488] Unusable type hint should not be silently ignored

2020-08-05 Thread Andre Roberge
New submission from Andre Roberge : The following code is currently consistent with the type hint syntax but contains a line that is completely ignored. >>> d = {} >>> d['a']: int >>> d {} >>> __annotations__ {} >>> '__annotations__' in dir(d) False I believe that

[issue41485] Repr of complex number with signed zero does not roundtrip

2020-08-05 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: This is a known issue and I have a PR that does this that I could post but it was rejected when it was previously discussed: https://bugs.python.org/issue23229#msg233963 -- ___ Python tracker

[issue41485] Repr of complex number with signed zero does not roundtrip

2020-08-05 Thread Mark Dickinson
Mark Dickinson added the comment: Closing here; to the extent that it's possible, let's keep the discussion in one place (comments can still be posted on closed issues). I'll add a comment on #17336. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder:

[issue40726] ast.Call end_lineno is defined and returns None

2020-08-05 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +20887 pull_request: https://github.com/python/cpython/pull/21741 ___ Python tracker

[issue40726] ast.Call end_lineno is defined and returns None

2020-08-05 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 8f4380d2f5839a321475104765221a7394a9d649 by Batuhan Taskaya in branch 'master': bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-20312)

[issue40989] [C API] Remove _Py_NewReference() and _Py_ForgetReference() from the public C API

2020-08-05 Thread STINNER Victor
STINNER Victor added the comment: New changeset 15edaecd97a3f8e82895046462342d8ddd8b9f1b by Victor Stinner in branch 'master': bpo-40989: Fix compiler warning in winreg.c (GH-21722) https://github.com/python/cpython/commit/15edaecd97a3f8e82895046462342d8ddd8b9f1b --

[issue41486] Add _BlocksOutputBuffer for bz2/lzma/zlib module

2020-08-05 Thread Ma Lin
New submission from Ma Lin :  bz2/lzma module's current growth algorithm bz2/lzma module's initial output buffer size is 8KB [1][2], and they are using this output buffer growth algorithm [3][4]: newsize = size + (size >> 3) + 6 [1]

[issue41486] Add _BlocksOutputBuffer for bz2/lzma/zlib module

2020-08-05 Thread Ma Lin
Change by Ma Lin : -- keywords: +patch pull_requests: +20886 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21740 ___ Python tracker ___

[issue41485] Repr of complex number with signed zero does not roundtrip

2020-08-05 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41487] Builtin bigint modulo operation can be made faster when the base is divisible by a large power of 2 (i.e: has many trailing 0 digits in binary)

2020-08-05 Thread Shlomi Fish
New submission from Shlomi Fish : As the pure-Python code below demonstrates, when called as `python3 test.py jitshift` it is much faster than when called as `python3 test.py builtinops` (which takes many seconds/minutes past the 24th iteration). I am using fedora 32 x86-64 on a Cannon lake

[issue41265] lzma/bz2 module: inefficient buffer growth algorithm

2020-08-05 Thread Ma Lin
Ma Lin added the comment: A more thorough solution was used, see issue41486. So I close this issue. -- stage: -> resolved status: open -> closed ___ Python tracker ___

[issue17336] Complex number representation round-trip doesn't work with signed zero values

2020-08-05 Thread Mark Dickinson
Mark Dickinson added the comment: Also related: #40269 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41487] Builtin bigint modulo operation can be made faster when the base is divisible by a large power of 2 (i.e: has many trailing 0 digits in binary)

2020-08-05 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +lemburg, mark.dickinson, rhettinger, stutzbach ___ Python tracker ___ ___

[issue17336] Complex number representation round-trip doesn't work with signed zero values

2020-08-05 Thread Mark Dickinson
Mark Dickinson added the comment: The issue of changing the complex repr came up again in #41485, which has been closed as a duplicate of this issue. See also https://bugs.python.org/issue23229#msg233963, where Guido says: > BTW I don't want repr() of a complex number to use the

[issue40269] Inconsistent complex behavior with (-1j)

2020-08-05 Thread Mark Dickinson
Mark Dickinson added the comment: Updating resolution to "duplicate", in an effort to keep discussion in a single place. -- resolution: not a bug -> duplicate superseder: -> Complex number representation round-trip doesn't work with signed zero values

[issue41485] Repr of complex number with signed zero does not roundtrip

2020-08-05 Thread Mark Dickinson
Mark Dickinson added the comment: [META] @Eric: No apology needed. I find the issue tracker search hard to use well, and in general we don't do a great job of tracking duplicates properly. I'm trying to be better about that. -- ___ Python tracker

[issue41487] Builtin bigint modulo operation can be made faster when the base is divisible by a large power of 2 (i.e: has many trailing 0 digits in binary)

2020-08-05 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +tim.peters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41232] Python `functools.wraps` doesn't deal with defaults correctly

2020-08-05 Thread Dominic Davis-Foster
Dominic Davis-Foster added the comment: To me your examples seem like a misuse of functools.wraps. IIUC its purpose is to make a wrapper that accepts solely *args and **kwargs appear to be the wrapped function; it doesn't seem to be intended to be used when the wrapper takes arguments of

[issue41486] Add _BlocksOutputBuffer for bz2/lzma/zlib module

2020-08-05 Thread Ma Lin
Change by Ma Lin : Added file: https://bugs.python.org/file49364/0to2GB_step30MB.png ___ Python tracker ___ ___ Python-bugs-list mailing

[issue41487] Builtin bigint modulo operation can be made faster when the base is divisible by a large power of 2 (i.e: has many trailing 0 digits in binary)

2020-08-05 Thread Mark Dickinson
Mark Dickinson added the comment: I'd be opposed to changing Python's `int` implementation in this way: it adds complication to the codebase and potentially also slows down "normal" cases. If a user knows in advance (a) that they're using a divisor that's highly divisble by 2, and (b) that

[issue17336] Complex number representation round-trip doesn't work with signed zero values

2020-08-05 Thread Eric Wieser
Eric Wieser added the comment: > BTW I don't want repr() of a complex number to use the complex(..., ...) A compromise would be to only use this notation if signed zeros are involved. --- Another option would be to use slightly unusual reprs for these complex numbers, which at least

[issue41486] Add _BlocksOutputBuffer for bz2/lzma/zlib module

2020-08-05 Thread Ma Lin
Change by Ma Lin : Added file: https://bugs.python.org/file49365/0to200MB_step2MB.png ___ Python tracker ___ ___ Python-bugs-list mailing

[issue41486] Add _BlocksOutputBuffer for bz2/lzma/zlib module

2020-08-05 Thread Ma Lin
Change by Ma Lin : Added file: https://bugs.python.org/file49368/benchmark_real.py ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41486] Add _BlocksOutputBuffer for bz2/lzma/zlib module

2020-08-05 Thread Ma Lin
Change by Ma Lin : Added file: https://bugs.python.org/file49366/0to20MB_step64KB.png ___ Python tracker ___ ___ Python-bugs-list mailing

[issue41486] Add _BlocksOutputBuffer for bz2/lzma/zlib module

2020-08-05 Thread Ma Lin
Change by Ma Lin : Added file: https://bugs.python.org/file49367/benchmark.py ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41485] Repr of complex number with signed zero does not roundtrip

2020-08-05 Thread Eric Wieser
Eric Wieser added the comment: Apologies for not searching the issue tracker effectively until after filing this. -- ___ Python tracker ___

[issue41480] python won't save

2020-08-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: For anyone who finds this issue, it also affected 3.9.0b4/5. -- versions: +Python 3.9 ___ Python tracker ___

[issue41303] perf_counter result does not count system sleep time in Mac OS

2020-08-05 Thread STINNER Victor
STINNER Victor added the comment: > There is a clock with similar behaviour as the Linux clock: CLOCK_UPTIME_RAW On Linux, CLOCK_UPTIME_RAW is not adjusted by NTP and it should not be used for a clock using *seconds*. NTP ensures that a clock provides seconds and is not slower or faster.

[issue41232] Python `functools.wraps` doesn't deal with defaults correctly

2020-08-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thor, in the future, when you reply by email, snip off the messages you are replying to. When you your message is added to the webpage below the earlier message, the copy become extraneous noise. Quoting the hidden boilerplate on PRs is also useless. For

[issue41490] Update bundled pip to 20.2.1 and setuptools to 49.2.1

2020-08-05 Thread Steve Dower
New submission from Steve Dower : I'm doing the PR now, based on the latest versions available today: https://pypi.org/project/pip/20.2.1/ https://pypi.org/project/setuptools/49.2.1/ If you're a maintainer and there's a reason to not update to to the latest, please let me know asap. All of

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +20891 pull_request: https://github.com/python/cpython/pull/21747 ___ Python tracker ___

[issue37293] concurrent.futures.InterpreterPoolExecutor

2020-08-05 Thread jakirkham
Change by jakirkham : -- nosy: +jakirkham ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread Terry J. Reedy
Change by Terry J. Reedy : -- type: enhancement -> behavior versions: -Python 3.5, Python 3.6, Python 3.7 ___ Python tracker ___

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: The issue resulting in the addition of a "backport-52f9842-3.9" branch to the main python/cpython repository. I believe that this is a mistake and should be removed, but I don't know how. When miss-islington fails to backport for reasons other than a merge

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread miss-islington
miss-islington added the comment: New changeset b5789a7419655f66692fab463320048bd2290e81 by Miss Islington (bot) in branch '3.8': bpo-41482: Fix error in ipaddress.IPv4Network docstring (GH-21736) https://github.com/python/cpython/commit/b5789a7419655f66692fab463320048bd2290e81 --

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: Since this is a trivial typo fix, I approved the backport for auto-merge. -- ___ Python tracker ___

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: I was able to delete the spurious branch because it was not protected. -- ___ Python tracker ___

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread miss-islington
miss-islington added the comment: New changeset b49b88a93a06b656d7f6a64d9d9e4828921d86eb by Miss Islington (bot) in branch '3.9': bpo-41482: Fix error in ipaddress.IPv4Network docstring (GH-21736) https://github.com/python/cpython/commit/b49b88a93a06b656d7f6a64d9d9e4828921d86eb --

[issue41467] asyncio: recv_into() must not return b'' if the socket/pipe is closed

2020-08-05 Thread David Bolen
David Bolen added the comment: Just for the record, this fix also appears to have resolved the issue with the Win10 buildbot from bpo-41273, which was related to the same unraisable exceptions mentioned in bpo-38912. -- nosy: +db3l ___ Python

[issue41273] asyncio: proactor read transport: use recv_into instead of recv

2020-08-05 Thread David Bolen
David Bolen added the comment: It looks like there was an underlying asyncio.recv_into bug that was the likely root issue here. It's recently been fixed in bpo-41467, and test_asyncio is passing on at least the Win10 buildbot. -- ___ Python

[issue41129] Python extension modules fail to build on Mac 10.15.1 (Catalina)

2020-08-05 Thread Andrew
Andrew added the comment: So I believe I've found the problem as to why we can't get the extension modules to build in our network area. It seems to be a problem with setup.py's find_file() and is_macosx_sdk_path() functions when the extension modules are building. You can find these

[issue40726] ast.Call end_lineno is defined and returns None

2020-08-05 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- pull_requests: +20889 pull_request: https://github.com/python/cpython/pull/21745 ___ Python tracker ___

[issue40726] ast.Call end_lineno is defined and returns None

2020-08-05 Thread miss-islington
miss-islington added the comment: New changeset b24c9d2b0656764bef48120d9511faf833bd7ead by Batuhan Taskaya in branch '3.8': [3.8] bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-21745) https://github.com/python/cpython/commit/b24c9d2b0656764bef48120d9511faf833bd7ead

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +20890 pull_request: https://github.com/python/cpython/pull/21746 ___ Python tracker

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread Eric V. Smith
Eric V. Smith added the comment: New changeset 52f98424a55e14f05dfa7483cc0faf634a61c9ff by Eric L. Frederich in branch 'master': bpo-41482: Fix error in ipaddress.IPv4Network docstring (GH-21736) https://github.com/python/cpython/commit/52f98424a55e14f05dfa7483cc0faf634a61c9ff --

[issue41303] perf_counter result does not count system sleep time in Mac OS

2020-08-05 Thread Ronald Oussoren
Ronald Oussoren added the comment: On macOS CLOCK_UPTIME_RAW is the same as mach_absolute_time (according to the manpage). -- ___ Python tracker ___

[issue40726] ast.Call end_lineno is defined and returns None

2020-08-05 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41489] HTMLParser : HTMLParser.error creating multiple errors.

2020-08-05 Thread AbcSxyZ

New submission from AbcSxyZ :

Coming from deprecated feature. Using python 3.7.3

Related and probably fixed with https://bugs.python.org/issue31844
Just in case.

I've got 2 different related problems, 

[issue41482] docstring errors in ipaddress.IPv4Network

2020-08-05 Thread Eric V. Smith
Eric V. Smith added the comment: Thanks, Terry. That was my fault, trying to cherry pick manually. I'm not sure why the original backport failed, and once I did the manual cherry pick as suggested I got called away for real work. As you say, I should have tried deleting the tag and

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-08-05 Thread Wesley Whetstone
New submission from Wesley Whetstone : When attempting to load the new LaunchAgent at `/System/Library/LaunchAgents/com.apple.cvmsCompAgent3600_arm64.plist` plistlib Raises a ValueError of File "/opt/salt/lib/python3.7/plistlib.py", line 272, in handle_end_element handler() File

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-08-05 Thread Wesley Whetstone
Change by Wesley Whetstone : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list

[issue41490] Update bundled pip to 20.2.1 and setuptools to 49.2.1

2020-08-05 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +20892 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21748 ___ Python tracker

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41477] test_genericalias fails if ctypes is missing

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41470] smtplib.SMTP should reset internal 'helo' and 'ehlo' state within 'connect()'

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41490] Update bundled pip to 20.2.1 and setuptools to 49.2.1

2020-08-05 Thread Steve Dower
Steve Dower added the comment: Test failure on Windows. I'll take a look tomorrow. == FAIL: test_with_pip (test.test_venv.EnsurePipTest) -- Traceback (most

[issue41398] cgi module, parse_multipart fails

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41465] io.TextIOWrapper.errors not writable

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41489] HTMLParser : HTMLParser.error creating multiple errors.

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41492] Fix signing description for Windows release builds

2020-08-05 Thread Steve Dower
New submission from Steve Dower : At some point, Windows started displaying an authenticated certificate property as the display name in UAC prompts, rather than the file properties. Currently our SigningDescription is set to the build identifier, which is not a nice display name. We should

[issue41465] io.TextIOWrapper.errors not writable

2020-08-05 Thread Jeffrey Kintscher
Jeffrey Kintscher added the comment: I looked at the implementation in Lib/_pyio.py. The only way to change the error handler is by calling TextIOWrapper.reconfigure() and supply the new error handler as the "errors" parameter. For example: >>> import io >>> s =

[issue41458] Avoid overflow/underflow in math.prod()

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41450] OSError is not documented in ssl library, but still can be thrown

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41456] loop.run_in_executor creat thread but not destory it after the task run over

2020-08-05 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: