mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-26 05:41:11 +08:00
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:
committed by
Łukasz Langa
parent
13dbbf9084
commit
7906059adb
@@ -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
|
||||
Reference in New Issue
Block a user