mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-18 01:45:59 +08:00
* stdlib/2.7./codecs.pyi: added missing __enter__() and __exit__() * stdlib/2.7/bisect.pyi * /stdlib/2.7/ConfigParser.pyi
7 lines
388 B
Python
7 lines
388 B
Python
def bisect(a: list, x: object, lo: int, hi: int) -> int: ...
|
|
def bisect_left(a: list, x: object, lo: int, hi: int) -> int: ...
|
|
def bisect_right(a: list, x: object, lo: int, hi: int) -> int: ...
|
|
def insort_left(a: list, x: object, lo: int, hi: int) -> int: ...
|
|
def insort_right(a: list, x: object, lo: int, hi: int) -> int: ...
|
|
def insort(a: list, x: object, lo: int, hi: int) -> int: ...
|