[issue41561] test_ssl fails in Ubuntu 20.04: test_min_max_version_mismatch

2020-09-19 Thread Christian Heimes
Christian Heimes added the comment: It's starting to look like a misconfiguration in either Ubuntu's OpenSSL build or your system. has_tls_version() checks compile time options and runtime configuration options. It should detect that TLS 1.1 and 1.0 are not available. "[SSL] internal error"

[issue39385] Add an assertNoLogs context manager to unittest TestCase

2020-09-19 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +mark.dickinson nosy_count: 8.0 -> 9.0 pull_requests: +21362 pull_request: https://github.com/python/cpython/pull/22317 ___ Python tracker _

[issue41811] pstats.SortKey enum is broken

2020-09-19 Thread Ethan Furman
Change by Ethan Furman : -- keywords: +patch pull_requests: +21361 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22316 ___ Python tracker ___ ___

[issue41810] Consider reintroducing `types.EllipsisType` for the sake of typing

2020-09-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Can not `type(Ellipsis)` be used for typing too? -- nosy: +gvanrossum, levkivskyi, serhiy.storchaka ___ Python tracker ___

[issue41811] pstats.SortKey enum is broken

2020-09-19 Thread Ethan Furman
New submission from Ethan Furman : Currently, __new__ creates each member as an empty string, then adds the _value_ attribute. Because of this, each member is equal to each other, and all appear the same to any data structure that relies on equality and hash as distinguishers (so, basically,

[issue32218] add __iter__ to enum.Flag members

2020-09-19 Thread Ethan Furman
Ethan Furman added the comment: Problem: What to do when the Flag has compound members? class Color(Flag): BLACK = 0 RED = 1 GREEN = 2 BLUE = 4 PURPLE = RED|BLUE WHITE = RED|GREEN|BLUE I think the answer is: only return the single members.

[issue40562] SEO: differentiate between Python 2 and Python 3 docs on Google SERP

2020-09-19 Thread Pinto
Pinto added the comment: Merci Julien j'ai reussi à régler le même problème rencontré sur mon site https://lesmarketing.fr/agence-seo-montpellier/ -- ___ Python tracker ___ __

<    1   2