tl;dr: the proposed type hinting for Python is done to help tools analyze code better (which can be very useful for programmers) but at the cost of reduced readability. A different idea is discussed which focuses on readability.
----
So, Python is going to have some type hinting [PEP484].
I agree with the idea that lead to this addition to Python; however, I find that the syntax proposed is less than optimal. Thinking about how it came about, it is not entirely surprising.
- Functions annotations were introduced in 2006 [PEP3107].
- Various libraries worked within the constraints and limitations imposed by this new addition, including mypy [mypy].
- PEP 484 is "strongly inspired by mypy" essentially using it as a starting point. However, it indirectly acknowledges that the syntax chosen is less than optimal:
If type hinting proves useful in general, a syntax for typing variables may be provided in a future Python version. [PEP484]
What if [PEP3107] had never been introduced nor accepted and implemented, and we wanted to consider type hinting in Python?...
Why exactly is type hinting introduced?
As stated in [PEP484]:
"This PEP aims to provide a standard syntax for type annotations, opening up Python code to easier static analysis and refactoring, potential runtime type checking, and performance optimizations utilizing type information."
The way I read this is as follows: type hinting is primarily introduced to help computerized tools analyze Python code.
I would argue that, a counterpart to this would be that type hinting should not be a hindrance to humans; in particular, it should have a minimal impact on readability. I would also argue that type hinting, as it is proposed and discussed, does reduce readability significantly. Now, let's first have a look at some specific examples given, so that you can make your own opinion as to how it would affect readability.
Simple example (from [PEP484]):
I will start with a very simple examples for those who might not have seen
the syntax discussed.
def greeting(name: str) -> str:
return 'Hello ' + name
Within the function arguments, the type annotation is denoted by
a colon (:); the type of the return value of the function is done
by a special combination of characters (->) that precede the colon which
indicates the beginning of a code block.
Slightly more complicated example (from [mypy])
def twice(i: int, next: Function[[int], int]) -> int:
return next(next(i))
We now have two arguments; it becomes a bit more difficult to see at a
glance what the arguments for the function are. We can improve upon this
by formatting the code as follows:
def twice(i: int,
next: Function[[int], int]) -> int:
return next(next(i))
What about keyword-based arguments?
From [PEP483]
"There is no way to indicate optional or keyword arguments, nor varargs (we don't need to spell those often enough to complicate the syntax)"
From [PEP484]
"Since using callbacks with keyword arguments is not perceived as a common use case, there is currently no support for specifying keyword arguments with Callable."
However, some discussions are taking place; here is an example taken from https://github.com/ambv/typehinting/issues/18 (formatted in a more readable way than found on that site)
def retry(callback: Callable[AnyArgs, Any[int, None]],
timeout: Any[int, None]=None,
retries=Any[int, None]=None) -> None:
Can you easily read off the arguments of this function? Did I forget one argument when I split the argument lists over three lines? Can you quickly confirm that the formatting is not misleading?
Type Hints on Local and Global Variables
The following is verbatim from [PEP484]
No first-class syntax support for explicitly marking variables as being of a specific type is added by this PEP. To help with type inference in complex cases, a comment of the following format may be used:
x = [] # type: List[Employee]
In the case where type information for a local variable is needed before if was declared, an Undefined placeholder might be used:
from typing import Undefined
x = Undefined # type: List[Employee]
y = Undefined(int)
If type hinting proves useful in general, a syntax for typing variables may be provided in a future Python version.(emphasis added)
Edit: why not bite the bullet and do it now? Considering what this syntax, if it were introduced, should look like, might reassure people who see type information in comments as problematic and ensure that the limited syntax decided upon in this PEP will not have to be changed to be made coherent with the new addition(s).
What about class variables?
I have yet to see them being discussed. I assume that they would be treated the same as local and global variables, with an as yet undefined syntax.
A different proposal for type hinting.
Let's forget for a moment the syntax introduced by [PEP3107] for functions annotations, and imagine that we are considering everything from the beginning.
Type hinting is introduced for tools (linters, etc.). As such, I would assume the following:
When reading/parsing code:
- type hinting information should be easily identifiable by tools
- type hinting information should be easily ignorable by humans (if they so desire)
By this, I mean that the type hinting information should not decrease significantly the readability of the code.
Let me start with an obvious observation about Python: indentation based code-blocks indicate the structure. Code blocks are identified by their indentation level, which is the same within a code block.
Tools, like the Python interpreter, are very good at identifying code blocks. Adding an new type of code block to take into account by these tools should be straightforward.
A secondary observation is that comments, which are ignored by Python, are allowed to deviate from the vertical alignment within a given code block as illustrated below.
def f():
x = 1
y = 2
# this comment is not aligned
# with the rest of the code.
if z:
pass
Now, suppose that we could use a syntax where type annotation was structured around code-blocks defined by their indentation. Since type annotation are meant to be ignored by the interpreter (non executable, like comments), let us also give the freedom to have additional indentation for those ignorable code-blocks, like we do for comments.
The specific proposal
Add where as a new Python keyword; the purpose of this keyword is to introduce a code block in which type hinting information is given.
To see how this would work in practice, I will show screenshots of code from a syntax-aware editor containing type hinting information as it is proposed and contrasted with how it might look when using the "where code blocks". I'm using screenshots as it provides a truer picture of what code would really look like in real life situations.
First, the example from [mypy] shown above:
Now, the same example using the "where" code-block.
I used "return" instead of "->" as I find it more readable; however, "->" could be used just as well.
Having a code-block, I can use the code-folding feature of my editor to reduced greatly the visibility of the type hinting information; such code-folding could presumably be done automatically for all type-hinting code blocks.
Moving on to a more complicated example, also given above. First, the screenshot with the currently proposed syntax.
Next, using the proposed code-block; notice how keyword-based arguments are treated just the same as any other arguments. [Note: I was not sure if timeout above was a keyword based argument assigned a default value or not, since it used a different syntax from retries which is a keyword based argument.]
Again, using code-folding, the visual noise added by the type-hinting information essentially disappears.
Finally, the example with the "global variable", first with the proposed type hinting information added in a comment:
Next, using a code block; no need to import a special "type" to assign a special "Undefined" value: the standard None does the job.
A similar notation could easily be used for class variables, something which is not addressed by the current type-hinting PEP.
Type hinting information is going to be a useful feature for future Python programmers. I believe that using indentation based code blocks to indicate type hinting information would be much more readable that what has been discussed so far. Unfortunately, I also believe that it has no chance of being accepted, let alone considered seriously.
[PEP483] https://www.python.org/dev/peps/pep-0483/
[PEP484] https://www.python.org/dev/peps/pep-0484/
[PEP3107] https://www.python.org/dev/peps/pep-3107/
[mypy] http://mypy-lang.org/
This blog post is licensed under CC0 and was written purely with the intention to entertain.