projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ccbc8de
)
Issue #25603: Add missing parenthesis.
author
Zachary Ware
<zachary.ware@gmail.com>
Thu, 12 Nov 2015 04:59:44 +0000
(22:59 -0600)
committer
Zachary Ware
<zachary.ware@gmail.com>
Thu, 12 Nov 2015 04:59:44 +0000
(22:59 -0600)
Doc/library/typing.rst
patch
|
blob
|
history
diff --git
a/Doc/library/typing.rst
b/Doc/library/typing.rst
index 668523b52d9bacb85354a8973f1d99857c5426c3..0fe11671373f3360d43698985f684613b6e40f7c 100644
(file)
--- a/
Doc/library/typing.rst
+++ b/
Doc/library/typing.rst
@@
-478,7
+478,7
@@
The module defines the following classes, functions and decorators:
Usage::
- Employee = typing.NamedTuple('Employee', [('name', str), 'id', int)])
+ Employee = typing.NamedTuple('Employee', [('name', str),
(
'id', int)])
This is equivalent to::