uuid
has a bunch of deprecated functions: let's decide what to do with them
#113308
Labels
uuid
has a bunch of deprecated functions: let's decide what to do with them
#113308
Feature or enhancement
uuid.py
has several protected deprecated functions which are no longer in use:cpython/Lib/uuid.py
Lines 591 to 594 in 4afa7be
cpython/Lib/uuid.py
Lines 567 to 575 in 4afa7be
And one unused module-level var:
cpython/Lib/uuid.py
Line 583 in 4afa7be
The problem is that they were not deprecated with a warning. Only with docs.
But, right now they are deprecated since 2020.
This has a big history:
Some projects in the wild use
_load_system_functions
, despite the fact it is deprecated and was never documented and always was protected.Examples:
So, what should we do?
I think that
1.
is safer.I would like to work on it after the decision is made.
The text was updated successfully, but these errors were encountered: