Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Python Type Hints
Search
José Padilla
March 15, 2018
0
580
Python Type Hints
5min talk on Python Type Hints. Presented at newhaven.io
José Padilla
March 15, 2018
Tweet
Share
More Decks by José Padilla
See All by José Padilla
Python, Government, and Contracts
jpadilla
0
57
Python, Government, and Contracts
jpadilla
0
5k
Developer Ergonomics
jpadilla
0
2.1k
DjangoCon - JSON Web Tokens
jpadilla
15
11k
BFTW: The Backend
jpadilla
4
220
eventos
jpadilla
0
190
JWT
jpadilla
2
450
Ember.js + Django
jpadilla
3
2.1k
UPRB Basic Workshop
jpadilla
2
220
Featured
See All Featured
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
240
From π to Pie charts
rasagy
0
110
Optimizing for Happiness
mojombo
379
70k
What does AI have to do with Human Rights?
axbom
PRO
0
1.9k
Kristin Tynski - Automating Marketing Tasks With AI
techseoconnect
PRO
0
120
Information Architects: The Missing Link in Design Systems
soysaucechin
0
740
The Spectacular Lies of Maps
axbom
PRO
1
430
Into the Great Unknown - MozCon
thekraken
40
2.2k
Abbi's Birthday
coloredviolet
0
4.3k
Mind Mapping
helmedeiros
PRO
0
49
Darren the Foodie - Storyboard
khoart
PRO
2
2.1k
Principles of Awesome APIs and How to Build Them.
keavy
127
17k
Transcript
Type Hints
José Padilla
Work Training
Work Open Source
PEP 3107
None
PEP 484
None
no type checking happens at runtime
static analysis refactoring runtime type checking code generation
static analysis refactoring runtime type checking code generation
None
Common built-in types
None
None
None
None
None
None
None
None
None
None
None
None
None
Generics
None
None
mypy
static type checker
$ pip install mypy
$ python app.py
None
$ python app.py f 1 Traceback (most recent call last):
File "app.py", line 12, in <module> print(first(1)) # TypeError File "app.py", line 7, in first return seq[0] TypeError: 'int' object is not subscriptable
$ mypy app.py
$ mypy app.py main.py:12: error: Argument 1 to "first" has
incompatible type "int"; expected "Sequence[<nothing>]"
None
mypy-lang.org
Python will remain a dynamically typed language
Thanks! jpadilla.com twitter.com/@jpadilla_ github.com/jpadilla