Mercurial > code > home > repos > light9
comparison stubs/rdfdb/grapheditapi.pyi @ 1863:0f0ff27e55a3
stubs, mostly autogen or empty
Ignore-this: bc70818d2bc92bf022c65c3572b9775e
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Sat, 25 May 2019 12:01:26 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1862:d92757c88817 | 1863:0f0ff27e55a3 |
---|---|
1 # Stubs for rdfdb.grapheditapi (Python 3) | |
2 # | |
3 # NOTE: This dynamically typed stub was automatically generated by stubgen. | |
4 | |
5 import unittest | |
6 from typing import Any | |
7 | |
8 log: Any | |
9 | |
10 class GraphEditApi: | |
11 def getObjectPatch(self, context: Any, subject: Any, predicate: Any, newObject: Any): ... | |
12 def patchObject(self, context: Any, subject: Any, predicate: Any, newObject: Any) -> None: ... | |
13 def patchSubgraph(self, context: Any, newGraph: Any): ... | |
14 def patchMapping(self, context: Any, subject: Any, predicate: Any, nodeClass: Any, keyPred: Any, valuePred: Any, newKey: Any, newValue: Any) -> None: ... | |
15 def removeMappingNode(self, context: Any, node: Any) -> None: ... | |
16 | |
17 class TestPatchSubgraph(unittest.TestCase): | |
18 def testCollapsesIdenticalQuads(self) -> None: ... |