mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
committed by
Matthias Kramm
parent
fac745c90b
commit
9f1e90b33f
@@ -1,12 +0,0 @@
|
||||
from typing import Sequence, TypeVar
|
||||
|
||||
_T = TypeVar('_T')
|
||||
|
||||
def insort_left(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...): pass
|
||||
def insort_right(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...): pass
|
||||
|
||||
def bisect_left(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...): pass
|
||||
def bisect_right(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...): pass
|
||||
|
||||
insort = insort_right
|
||||
bisect = bisect_right
|
||||
Reference in New Issue
Block a user