Oursky

BLOG

Type Hints - Better type at Python

Rick Mak

Python is known as a dynamic, [strong-typed](https://wiki.python.org/moin/Why is Python a dynamic language and also a strongly typed language) language. Most developers love it but some feel mad without type checking or type-hinted auto-completion. In Python3.5, Type Hints is introduced to further delight developers who want those features.

Type Hints offers type checking on function parameters, return values and class attributes, as if it's static-typed. If you pass something does not match the expected type, a warning will be given.

According to The Theory of Type Hints, here's an example showing how the rules work out in practice:

Say there is an Employee class, and a subclass Manager:

class Employee:
    pass
 
class Manager(Employee):
    pass

Let's say variable e is declared with type Employee:

e = Employee() # type: Employee

Now it's OK to assign a Manager instance to e:

e = Manager()

It's not OK to assign an Employee instance to a variable declared with type Manager:

m = Manager() # type: Manager
 
m = Employee() # Fails static check

Now, suppose we have a variable whose type is Any:

a = some_func() # type: Any

It's OK to assign a to Employee e:

e = a # OK

Of course it's also OK to assign Employee e to a:

a = e # OK

Benefits

By introducing Type Hints in Python, it makes Python even more friendly to programmers. At least it helps prevents premature-idiot bugs regarding type errors. And there are more benefits we might consider:

Make IDE to work better

IDE like PyCharm can perform type checking on variable assignments and return values in local functions. Since type information is crucial for static code analysis, this also make code completion easier.

[caption id="attachment_174" align="aligncenter" width="448"]

pycharm

Warning on wrong type - PyCharm[/caption]

Improve code readabilty

We often emphasize Code as documentation. Type Hints makes code more readable to both human and tools. Let's spend less time to figure out what type to pass and return as the information is clearly written in the func type annotation.

Serve as Documentation

Now you can get rid of specifying argument types in the wordy docs. Some documentation generation tool like Sphinx reads Type Hints annotation as information.

Previously:

def hello(name='nobody'):
    """Say hello to a person
 
    :param name: string value
    :rtype: string value
    """
    return 'Hello' + name

with Type Hints:

def hello(name: str = 'nobody') -> str:
    '''Say hello to a person
    '''
    return 'Hello' + name

What Type Hints is NOT

Type Hints works on code level and involves syntax, yet it is not about the followings:

It's not about code generation

It's not going to affect how your compiler complies your code.

It's not going to fix all code issues

Your code can still break during run time after type checking.

It's not about runtime type checking, nor performance overhead

Since there's no effect on the compiled code, you won't get a faster nor slower program with Type Hints on.

It's not going to make Python static-typed

This might be concerned by Python-lovers. In PEP-0484, the authors put the following disclaimer to clam the over-reacted Python fans:

It should also be emphasized that Python will remain a dynamically typed language, and the authors have no desire to ever make type hints mandatory, even by convention.

Those who worried about Python will be made static-typed can now relax :)

When using Type Hints

To use the max power of Type Hints, take this piece of advice:

“Be liberal in what you accept, and conservative in what you return”

Example:

from typing import Iterable, List
 
def even(numbers: Iterable) -> List:
    return list(n for n in numbers if n % 2 == 0)

Get Type Hints in your Python

For Python 3.5

just import typing

For Python 3.2 - 3.4

you will need to pip install typing before importing

For Python2

you can enable type checking with pyi stub: python/typeshed

More

Share

Discuss what we could do for you.