mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-02 22:18:28 +08:00
fix directory hierarchy in third_party/3/
This commit is contained in:
Vendored
+1
@@ -0,0 +1 @@
|
||||
...
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
from typing import Any
|
||||
|
||||
html_parts = ... # type: Any
|
||||
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
from typing import Any, List
|
||||
|
||||
class reference:
|
||||
def __init__(self,
|
||||
rawsource: str = '',
|
||||
text: str = '',
|
||||
*children: List[Any],
|
||||
**attributes) -> None: ...
|
||||
+1
@@ -0,0 +1 @@
|
||||
...
|
||||
@@ -0,0 +1 @@
|
||||
...
|
||||
+10
@@ -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:
|
||||
...
|
||||
@@ -0,0 +1,5 @@
|
||||
import typing
|
||||
|
||||
class Inliner:
|
||||
def __init__(self) -> None:
|
||||
...
|
||||
Vendored
Vendored
Vendored
Vendored
Vendored
Vendored
Reference in New Issue
Block a user