All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.python.types.typeshed.stdlib.2and3.rlcompleter.pyi Maven / Gradle / Ivy

There is a newer version: 4.17.0.14845
Show newest version
# Stubs for rlcompleter

from typing import Any, Dict, Optional, Union
import sys

if sys.version_info >= (3,):
    _Text = str
else:
    _Text = Union[str, unicode]


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy