Issue #25603: Add missing parenthesis.

This commit is contained in:
Zachary Ware 2015-11-11 22:59:44 -06:00
parent ccbc8dedec
commit c730931fa1
1 changed files with 1 additions and 1 deletions

View File

@ -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::