Mercurial > code > home > repos > light9
view stubs/rdfdb/autodepgraphapi.pyi @ 1865:1aa91a31c0e2
reformat some missed files
Ignore-this: f13152975437adeb48ed619ab676365e
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Sat, 25 May 2019 12:06:01 +0000 |
parents | 0f0ff27e55a3 |
children |
line wrap: on
line source
# Stubs for rdfdb.autodepgraphapi (Python 3) # # NOTE: This dynamically typed stub was automatically generated by stubgen. from typing import Any, Callable, Optional, Set log: Any class AutoDepGraphApi: currentFuncs: Any = ... def __init__(self) -> None: ... def addHandler(self, func: Any) -> None: ... def runDepsOnNewPatch(self, p: Any) -> None: ... def value(self, subject: Optional[Any] = ..., predicate: Any = ..., object: Optional[Any] = ..., default: Optional[Any] = ..., any: bool = ...): ... def objects(self, subject: Optional[Any] = ..., predicate: Optional[Any] = ...): ... def label(self, uri: Any): ... def subjects(self, predicate: Optional[Any] = ..., object: Optional[Any] = ...): ... def predicate_objects(self, subject: Any): ... def items(self, listUri: Any) -> None: ... def contains(self, triple: Any): ... def contextsForStatement(self, triple: Any): ... HandlerSet = Set[Callable[[], None]] class _GraphWatchers: def __init__(self) -> None: ... def addSubjPredWatcher(self, func: Any, s: Any, p: Any) -> None: ... def addPredObjWatcher(self, func: Any, p: Any, o: Any) -> None: ... def addTripleWatcher(self, func: Any, triple: Any) -> None: ... def addSubjectWatcher(self, func: Any, s: Any) -> None: ... def whoCares(self, patch: Any): ... def dependencies(self) -> None: ...