-
-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-100129: Make the names of all classes in the types module resolvable #100130
base: main
Are you sure you want to change the base?
Conversation
serhiy-storchaka
commented
Dec 9, 2022
•
edited by bedevere-bot
Loading
edited by bedevere-bot
- Issue: Change names of builtin types exposed in the types module #100129
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like how this change makes the builtin types more consistent and easy to resolve. However, I have two concerns:
- When the new type names appear in error messages, they make the errors harder to understand for new users. This is especially important with core types like module, function, and None.
- We'll surely break some external tools that rely on the names of these classes.
I think the case for changing is strongest for the various descriptor types, where it's otherwise difficult right now to map a type to the entry in the types
module, and weakest for core builtins like module, function, and NoneType.
Agreed. I'm broadly supportive of this change, but the change to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a few nits -- feel free to address or ignore those.
I'd like @JelleZijlstra or another typeshed/mypy dev to have a quick look here to see whether changing a few names like function
, ellipsis
would cause any issues for static type checkers (though I doubt it).
@@ -890,7 +890,7 @@ object:: | |||
... | |||
>>> mock = MagicMock(async_func) | |||
>>> mock | |||
<MagicMock spec='function' id='...'> | |||
<MagicMock spec='FunctionType' id='...'> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not types.FunctionType
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because the MagicMock repr contains only spec_class.__name__
, not the fully qualified name.
@@ -100,7 +100,7 @@ def test_non_string_keys_dict(self): | |||
def test_not_serializable(self): | |||
import sys | |||
with self.assertRaisesRegex(TypeError, | |||
'Object of type module is not JSON serializable'): | |||
'Object of type ModuleType is not JSON serializable'): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this not types.ModuleType
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same as above. It outputs type(obj).__name__
.
@@ -35,11 +35,11 @@ cell_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) | |||
PyObject *return_value = NULL; | |||
PyObject *obj = NULL; | |||
|
|||
if (!_PyArg_NoKeywords("cell", kwargs)) { | |||
if (!_PyArg_NoKeywords("CellType", kwargs)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's debatable whether this should have the types.
prefix -- what do we do in other similar situations?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only short name is used in almost all of other similar situations (over 50 uses of this function, around 1700 uses of all PyArg_*
functions). The only known exceptions are array.array
, sqlite3.Connection
, type.__new__
, and deque.rotate
.
Fully static type checkers like mypy never look at the runtime type objects so it shouldn't matter. Tools like stubtest or my pyanalyze typechecker might need to adapt a little but that's pretty easy. |
I was thinking about it slightly differently. Typeshed defines classes def f():
pass
func: function = f There was some precedent for this when import types
func: types.FunctionType = f which currently produces an error in mypy. (In a sense, this PR finally resolves a problem that mypy experienced from its creation: what is the name of the type of a function object. Grepping shows dozens of occurrences of I agree that we shouldn't stop this PR because it exposes mypy's "lie". :-) |
Thanks for the answers, go ahead and merge. |
What do you think about omitting the |
This is going to break things. Changing the names There are a lot of changes to the tests. If this change breaks our tests, it is reasonable to assume it will break other people's tests. |
I'm happy to retract my approval in favor of more discussion -- maybe we should do that on Discourse though, where we can get the view of more people whose code actually will break. I agree that the amount of change needed in our own tests doesn't bode well. |
Just to note: the new-in-3.13 |