Mercurial > code > home > repos > rdfdb
comparison stubs/rdflib/plugins/serializers/turtle.pyi @ 67:099c0a815bb7
stubs
Ignore-this: c084e54b4fa9a6a8bd692add7e646f10
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Sat, 01 Jun 2019 20:02:47 +0000 |
parents | 4f71d2a7a8d1 |
children |
comparison
equal
deleted
inserted
replaced
66:109fefea80a7 | 67:099c0a815bb7 |
---|---|
1 # Stubs for rdflib.plugins.serializers.turtle (Python 3) | 1 # Stubs for rdflib.plugins.serializers.turtle (Python 3) |
2 # | 2 # |
3 # NOTE: This dynamically typed stub was automatically generated by stubgen. | 3 # NOTE: This dynamically typed stub was automatically generated by stubgen. |
4 | 4 |
5 from rdflib.serializer import Serializer | 5 from rdflib.serializer import Serializer |
6 from typing import Any, Optional | 6 from typing import Any, Optional, Callable |
7 | 7 |
8 class RecursiveSerializer(Serializer): | 8 class RecursiveSerializer(Serializer): |
9 topClasses: Any = ... | 9 topClasses: Any = ... |
10 predicateOrder: Any = ... | 10 predicateOrder: Any = ... |
11 maxDepth: int = ... | 11 maxDepth: int = ... |
54 def predicateList(self, subject: Any, newline: bool = ...) -> None: ... | 54 def predicateList(self, subject: Any, newline: bool = ...) -> None: ... |
55 def verb(self, node: Any, newline: bool = ...) -> None: ... | 55 def verb(self, node: Any, newline: bool = ...) -> None: ... |
56 def objectList(self, objects: Any) -> None: ... | 56 def objectList(self, objects: Any) -> None: ... |
57 | 57 |
58 OBJECT: Any | 58 OBJECT: Any |
59 VERB: Any | |
60 _GEN_QNAME_FOR_DT: Callable |