Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions stubs/pycurl/pycurl.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import sys
from _typeshed import Incomplete
from collections.abc import Sequence
from typing import Final, final
from typing_extensions import Self

Expand All @@ -22,8 +23,8 @@ class Curl:
def perform(self) -> None: ...
def perform_rb(self) -> bytes: ...
def perform_rs(self) -> str: ...
def getinfo(self, info): ...
def getinfo_raw(self, info): ...
def getinfo(self, info: int) -> int | float | str | list[str] | list[Sequence[tuple[str, str]]]: ...
def getinfo_raw(self, info: int) -> int | float | bytes | list[bytes] | list[Sequence[tuple[bytes, bytes]]]: ...
def reset(self) -> None: ...
def unsetopt(self, option: int): ...
def pause(self, bitmask): ...
Expand Down