From 7906059adb5e83fc26aaf5efb7e3e9add61ccdbb Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sun, 19 Mar 2017 13:05:07 -0700 Subject: [PATCH] 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 --- stdlib/{3 => 2and3}/pyclbr.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename stdlib/{3 => 2and3}/pyclbr.pyi (94%) diff --git a/stdlib/3/pyclbr.pyi b/stdlib/2and3/pyclbr.pyi similarity index 94% rename from stdlib/3/pyclbr.pyi rename to stdlib/2and3/pyclbr.pyi index 03c83f9e7..8dad523fb 100644 --- a/stdlib/3/pyclbr.pyi +++ b/stdlib/2and3/pyclbr.pyi @@ -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