fix directory hierarchy in third_party/3/

This commit is contained in:
Matthias Kramm
2015-10-01 18:04:49 -07:00
parent 001e5af0fa
commit ec67428914
44 changed files with 0 additions and 0 deletions

1
third_party/3/docutils/__init__.pyi vendored Normal file
View File

@@ -0,0 +1 @@
...

3
third_party/3/docutils/examples.pyi vendored Normal file
View File

@@ -0,0 +1,3 @@
from typing import Any
html_parts = ... # type: Any

8
third_party/3/docutils/nodes.pyi vendored Normal file
View File

@@ -0,0 +1,8 @@
from typing import Any, List
class reference:
def __init__(self,
rawsource: str = '',
text: str = '',
*children: List[Any],
**attributes) -> None: ...

View File

@@ -0,0 +1 @@
...

View File

View File

@@ -0,0 +1 @@
...

View File

@@ -0,0 +1,10 @@
import docutils.nodes
import docutils.parsers.rst.states
from typing import Callable, Any, List, Dict, Tuple
def register_local_role(name: str,
role_fn: Callable[[str, str, str, int, docutils.parsers.rst.states.Inliner, Dict, List],
Tuple[List[docutils.nodes.reference], List[docutils.nodes.reference]]]
) -> None:
...

View File

@@ -0,0 +1,5 @@
import typing
class Inliner:
def __init__(self) -> None:
...