Files
typeshed/stdlib/@python2/rlcompleter.pyi
2021-05-15 01:08:37 +02:00

8 lines
242 B
Python

from typing import Any, Dict, Optional, Union
_Text = Union[str, unicode]
class Completer:
def __init__(self, namespace: Optional[Dict[str, Any]] = ...) -> None: ...
def complete(self, text: _Text, state: int) -> Optional[str]: ...