Update stubs

This commit is contained in:
Trinh Anh Ngoc
2023-07-17 15:16:32 +07:00
parent b574151228
commit 8deb1b34c2

View File

@@ -4,6 +4,7 @@ import unittest
from itertools import count from itertools import count
from re import Pattern from re import Pattern
from typing import Any, Callable, Generator, Generic, Iterator, Mapping, Match, TypeVar from typing import Any, Callable, Generator, Generic, Iterator, Mapping, Match, TypeVar
from unittest.mock import Mock
from xmlrpc import client as xmlrpclib from xmlrpc import client as xmlrpclib
import requests import requests
@@ -96,6 +97,7 @@ class BaseCase(unittest.TestCase, metaclass=MetaCase):
def assertHTMLEqual(self, original: str, expected: str) -> None: ... def assertHTMLEqual(self, original: str, expected: str) -> None: ...
profile_session: str profile_session: str
def profile(self, description: str = ..., **kwargs) -> Profiler: ... def profile(self, description: str = ..., **kwargs) -> Profiler: ...
def patch_requests(self) -> Mock: ...
savepoint_seq: count[int] savepoint_seq: count[int]