We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f766b commit 8dc28ebCopy full SHA for 8dc28eb
stubs/pycurl/pycurl.pyi
@@ -1,5 +1,6 @@
1
import sys
2
from _typeshed import Incomplete
3
+from collections.abc import Sequence
4
from typing import Final, final
5
from typing_extensions import Self
6
@@ -22,8 +23,8 @@ class Curl:
22
23
def perform(self) -> None: ...
24
def perform_rb(self) -> bytes: ...
25
def perform_rs(self) -> str: ...
- def getinfo(self, info): ...
26
- def getinfo_raw(self, info): ...
+ def getinfo(self, info: int) -> int | float | str | list[str] | list[Sequence[tuple[str, str]]]: ...
27
+ def getinfo_raw(self, info: int) -> int | float | bytes | list[bytes] | list[Sequence[tuple[bytes, bytes]]]: ...
28
def reset(self) -> None: ...
29
def unsetopt(self, option: int): ...
30
def pause(self, bitmask): ...
0 commit comments