Skip to content

Commit

Permalink
add stub for bitarray.test()
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed Jun 10, 2021
1 parent 484bc69 commit 695c180
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bitarray/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from collections.abc import Iterable, Iterator
from unittest.runner import TextTestResult

from typing import Any, BinaryIO, Union, overload
from typing_extensions import Literal
Expand Down Expand Up @@ -113,5 +114,6 @@ class frozenbitarray(bitarray):

def bits2bytes(n: int, /) -> int: ...
def get_default_endian() -> str: ...
def test(verbosity: int = ..., repeat: int = ...) -> TextTestResult: ...
def _set_default_endian(endian: str) -> None: ...
def _sysinfo() -> tuple: ...

0 comments on commit 695c180

Please sign in to comment.