first version finished

This commit is contained in:
Maxim Kurnikov
2018-07-29 18:27:46 +03:00
parent a9f215bf64
commit c180555415
59 changed files with 2118 additions and 0 deletions

14
django/utils/six.pyi Normal file
View File

@@ -0,0 +1,14 @@
from _frozen_importlib_external import _NamespacePath
from typing import (
List,
Optional,
Union,
)
class _SixMetaPathImporter:
def find_module(
self,
fullname: str,
path: Optional[Union[List[str], _NamespacePath]] = ...
) -> None: ...