mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Added bisect.pyi and ConfigParser.pyi (#171)
* stdlib/2.7./codecs.pyi: added missing __enter__() and __exit__() * stdlib/2.7/bisect.pyi * /stdlib/2.7/ConfigParser.pyi
This commit is contained in:
committed by
Guido van Rossum
parent
f5bfee6f35
commit
8dff6e481e
6
stdlib/2.7/bisect.pyi
Normal file
6
stdlib/2.7/bisect.pyi
Normal file
@@ -0,0 +1,6 @@
|
||||
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: ...
|
||||
Reference in New Issue
Block a user