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:
Dakkaron
2016-05-04 19:39:52 +02:00
committed by Guido van Rossum
parent f5bfee6f35
commit 8dff6e481e
2 changed files with 109 additions and 0 deletions

6
stdlib/2.7/bisect.pyi Normal file
View 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: ...