pyclbr: move to 2and3 (#1034)

* pyclbr: move to 2and3

This module is completely identical between 2 and 3 in CPython (apart from a small few syntax changes).

* fix typo
This commit is contained in:
Jelle Zijlstra
2017-03-19 13:05:07 -07:00
committed by Łukasz Langa
parent 13dbbf9084
commit 7906059adb

View File

@@ -4,7 +4,7 @@ from typing import List, Union, Sequence, Optional, Dict
class Class:
module = ... # type: str
name = ... # type: str
super = Optional[List[Union["Class", str]]]
super = ... # type: Optional[List[Union["Class", str]]]
methods = ... # type: Dict[str, int]
file = ... # type: int
lineno = ... # type: int