[issue44342] enum with inherited type won't pickle

2021-06-11 Thread Ethan Furman
Ethan Furman added the comment: Also fixing the search for the data type so that in A -> B -> C the data type is C and not B. -- ___ Python tracker ___

[issue44356] Multiple enum mixins not allowed even when they have the same datatype

2021-06-11 Thread Jordan Ephron
Jordan Ephron added the comment: Oops, still getting used to the Python mailing list format. Learned something new! Thanks for all your awesome work on Python. On 11.06.2021 08:19, Ethan Furman wrote: > >Ethan Furman added the comment: > >Glad you like it! > >Please don't change the title

[issue44342] enum with inherited type won't pickle

2021-06-11 Thread Ethan Furman
Ethan Furman added the comment: New changeset 3a7cccfd6cd3693e1a2ab65ee05d7f45f8501dfa by Ethan Furman in branch 'main': bpo-44342: [Enum] fix data type search (GH-26667) https://github.com/python/cpython/commit/3a7cccfd6cd3693e1a2ab65ee05d7f45f8501dfa --

[issue44389] Modules/_ssl.c, repeated 'SSL_OP_NO_TLSv1_2'

2021-06-11 Thread Brother Beer
New submission from Brother Beer : cpython-3.10.0b2/Modules/_ssl.c line 3576 3570 static int 3571 set_options(PySSLContext *self, PyObject *arg, void *c) 3572 { 3573 long new_opts, opts, set, clear; 3574 long opt_no = ( 3575 SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_TLSv1

[issue44356] Multiple enum mixins not allowed even when they have the same datatype

2021-06-11 Thread Ethan Furman
Ethan Furman added the comment: Glad you like it! Please don't change the title back. :-) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed title: Abstract enum mixins not allowed -> Multiple enum mixins not allowed even when they have the same

[issue44342] enum with inherited type won't pickle

2021-06-11 Thread Ethan Furman
Change by Ethan Furman : -- pull_requests: +25254 pull_request: https://github.com/python/cpython/pull/26667 ___ Python tracker ___

[issue44356] Abstract enum mixins not allowed

2021-06-11 Thread Jordan Ephron
Jordan Ephron added the comment: On 10.06.2021 15:33, Ethan Furman wrote: >Since I like puzzles, here is a working LenientStrEnum: >... Oh indeed, that's really cool! -- title: Multiple enum mixins not allowed even when they have the same datatype -> Abstract enum mixins not allowed

[issue44342] enum with inherited type won't pickle

2021-06-11 Thread Ethan Furman
Ethan Furman added the comment: Changing `__reduce_ex__` is too big a change for 3.9, so making the search for pickle support more robust there. -- ___ Python tracker ___

[issue44342] enum with inherited type won't pickle

2021-06-11 Thread Ethan Furman
Change by Ethan Furman : -- pull_requests: +25253 pull_request: https://github.com/python/cpython/pull/2 ___ Python tracker ___

[issue44362] improve documentation of SSL deprecations

2021-06-11 Thread miss-islington
miss-islington added the comment: New changeset d7930fb720b5e9db2076b116dffcd52b6ca71438 by Miss Islington (bot) in branch '3.10': bpo-44362: ssl: improve deprecation warnings and docs (GH-26646) https://github.com/python/cpython/commit/d7930fb720b5e9db2076b116dffcd52b6ca71438 --

[issue44387] Not obvious that locale.LC_MESSAGES may not exist sometimes (e.g. on Windows)

2021-06-11 Thread Richard Mines
Richard Mines added the comment: If you need a proof that it is possible that locale.LC_MESSAGES doesn't exist, I've attached a screenshot. Even more I'm showing that locale.LC_TIME may be equal to 5 which is a placeholder for locale.LC_MESSAGES if there is an ImportError:

[issue44362] improve documentation of SSL deprecations

2021-06-11 Thread Christian Heimes
Christian Heimes added the comment: New changeset e26014f1c47d26d6097ff7a0f25384bfbde714a9 by Christian Heimes in branch 'main': bpo-44362: ssl: improve deprecation warnings and docs (GH-26646) https://github.com/python/cpython/commit/e26014f1c47d26d6097ff7a0f25384bfbde714a9 --

[issue44362] improve documentation of SSL deprecations

2021-06-11 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +25252 pull_request: https://github.com/python/cpython/pull/26665 ___ Python tracker

[issue40320] Add ability to specify instance of contextvars context to Task() & asyncio.create_task()

2021-06-11 Thread Mark Gordon
Change by Mark Gordon : -- keywords: +patch nosy: +msg555 nosy_count: 3.0 -> 4.0 pull_requests: +25251 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26664 ___ Python tracker

<    1   2