[Python-Dev] Re: v3.8b1 Breaks PyQt on Windows (Issue 36085/os.add_dll_directory())

2019-06-22 Thread Carol Willing
Hi Phil, Thanks for trying the beta. Please file this as an issue at bugs.python.org. Doing so would be helpful for folks who can look into the issue. Thanks, Carol On 6/22/19 2:04 PM, Phil Thompson wrote: The implementation of issue 36085 breaks PyQt on Windows as it relies on PATH to fin

[Python-Dev] Re: v3.8b1 Breaks PyQt on Windows (Issue 36085/os.add_dll_directory())

2019-06-22 Thread Steve Dower
On 22Jun.2019 1404, Phil Thompson wrote: > The implementation of issue 36085 breaks PyQt on Windows as it relies on > PATH to find the Qt DLLs. The problem is that PyQt is built using the > stable ABI and a single wheel is supposed to support all versions of > Python starting with v3.5. On the assu

[Python-Dev] v3.8b1 Breaks PyQt on Windows (Issue 36085/os.add_dll_directory())

2019-06-22 Thread Phil Thompson
The implementation of issue 36085 breaks PyQt on Windows as it relies on PATH to find the Qt DLLs. The problem is that PyQt is built using the stable ABI and a single wheel is supposed to support all versions of Python starting with v3.5. On the assumption (perhaps naive) that using the stable

[Python-Dev] Re: Preserve keyword argument order in unittest.mock call repr output

2019-06-22 Thread Michael Foord
Sent from my iPhone > On 22 Jun 2019, at 08:15, Karthikeyan Singaravelan > wrote: > > From Python 3.6 the order of keyword arguments to a function is preserved. In > https://bugs.python.org/issue21256 the order of keyword arguments for > unittest.mock's repr were sorted to return determini

[Python-Dev] Preserve keyword argument order in unittest.mock call repr output

2019-06-22 Thread Karthikeyan Singaravelan
>From Python 3.6 the order of keyword arguments to a function is preserved. In >https://bugs.python.org/issue21256 the order of keyword arguments for >unittest.mock's repr were sorted to return deterministic output for usage in >doctest and other use cases. This currently gives little inconsiste