Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pytype / typeshed / stdlib / @python2 / rlcompleter.pyi
Size: Mime:
from typing import Any, Dict, Union

_Text = Union[str, unicode]

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