There was a problem hiding this comment.
I like how this change makes the builtin types more consistent and easy to resolve. However, I have two concerns:
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.
Sorry, something went wrong.
|
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 None in particular makes me feel pretty queasy. |
Sorry, something went wrong.
There was a problem hiding this comment.
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).
Sorry, something went wrong.
| >>> mock = MagicMock(async_func) | ||
| >>> mock | ||
| <MagicMock spec='function' id='...'> | ||
| <MagicMock spec='FunctionType' id='...'> |
There was a problem hiding this comment.
Why not types.FunctionType?
Sorry, something went wrong.
There was a problem hiding this comment.
Because the MagicMock repr contains only spec_class.__name__, not the fully qualified name.
Sorry, something went wrong.
| 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.
Why is this not types.ModuleType?
Sorry, something went wrong.
There was a problem hiding this comment.
The same as above. It outputs type(obj).__name__.
Sorry, something went wrong.
| PyObject *obj = NULL; | ||
|
|
||
| if (!_PyArg_NoKeywords("cell", kwargs)) { | ||
| if (!_PyArg_NoKeywords("CellType", kwargs)) { |
There was a problem hiding this comment.
It's debatable whether this should have the types. prefix -- what do we do in other similar situations?
Sorry, something went wrong.
There was a problem hiding this comment.
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.
Sorry, something went wrong.
|
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). 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. |
Sorry, something went wrong.
|
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 builtins.function and builtins.ellipsis (and maybe others). Those were always a typeshed-only fiction, but mypy does recognize it -- e.g. this program shows no errors: def f():
pass
func: function = f
There was some precedent for this when type(f) would return <class 'function'> at runtime. But the new regime would suggest that instead the variable func above should be typed as 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 builtins.function in the mypy source code.) I agree that we shouldn't stop this PR because it exposes mypy's "lie". :-) |
Sorry, something went wrong.
|
Thanks for the answers, go ahead and merge. |
Sorry, something went wrong.
|
What do you think about omitting the "types." prefix like the "builtins." prefix and, in some cases, the "__main__." prefix, in error messages and type reprs? |
Sorry, something went wrong.
|
This is going to break things. Changing the names NoneType, the type of generators and functions is going to break someone's code. Maybe they shouldn't be relying on those names and those are acceptable breakages, but I think we should take a bit more care here. 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. |
Sorry, something went wrong.
|
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. |
Sorry, something went wrong.
|
Just to note: the new-in-3.13 types.CapsuleType / PyCapsule is not included in the current state of this MR, and should also be updated if this gets picked up again. |
Sorry, something went wrong.
|
This PR is stale because it has been open for 30 days with no activity. |
Sorry, something went wrong.
Documentation build overview📚 cpython-previews | 🛠️ Build #32994241 | 📁 Comparing f74b4b2 against main (038495d) 8 files changed · ± 8 modified± Modified |
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.