mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-12 02:42:29 +08:00
Add various missing generic arguments (#7702)
Co-authored-by: Akuli <akuviljanen17@gmail.com>
This commit is contained in:
co-authored by
Akuli
parent
ae09e4e866
commit
2d468966f5
@@ -1,5 +1,5 @@
|
||||
import typing
|
||||
from typing import Any, Match
|
||||
from typing import Any, ClassVar, Match
|
||||
from xml.etree.ElementTree import Element
|
||||
|
||||
def build_inlinepatterns(md, **kwargs): ...
|
||||
@@ -94,7 +94,7 @@ class LinkInlineProcessor(InlineProcessor):
|
||||
class ImageInlineProcessor(LinkInlineProcessor): ...
|
||||
|
||||
class ReferenceInlineProcessor(LinkInlineProcessor):
|
||||
NEWLINE_CLEANUP_RE: typing.Pattern
|
||||
NEWLINE_CLEANUP_RE: ClassVar[typing.Pattern[str]]
|
||||
def evalId(self, data, index, text): ...
|
||||
def makeTag(self, href, title, text): ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user