Changeset - f1f426af34ed
[Not reviewed]
default
0 3 0
Drew Perttula - 6 years ago 2019-06-01 20:04:53
drewp@bigasterisk.com
3 files changed with 8 insertions and 3 deletions:
0 comments (0 inline, 0 general)
stubs/rdflib/__init__.pyi
Show inline comments
 
@@ -9,6 +9,7 @@ Namespace = _n.Namespace
 

	
 
RDF: Namespace
 
RDFS: Namespace
 
XSD: Namespace
 

	
 
import rdflib.term as _t
 
URIRef = _t.URIRef
stubs/rdflib/plugins/serializers/turtle.pyi
Show inline comments
 
@@ -3,7 +3,7 @@
 
# NOTE: This dynamically typed stub was automatically generated by stubgen.
 

	
 
from rdflib.serializer import Serializer
 
from typing import Any, Optional
 
from typing import Any, Optional, Callable
 

	
 
class RecursiveSerializer(Serializer):
 
    topClasses: Any = ...
 
@@ -56,3 +56,5 @@ class TurtleSerializer(RecursiveSerializ
 
    def objectList(self, objects: Any) -> None: ...
 

	
 
OBJECT: Any
 
VERB: Any
 
_GEN_QNAME_FOR_DT: Callable
stubs/twisted/internet/__init__.pyi
Show inline comments
 
@@ -4,9 +4,11 @@
 

	
 
from typing import Any, Optional
 
from .interfaces import IDelayedCall, IAddress, IListeningPort
 
    
 
import twisted.internet.protocol
 

	
 
class ReactorType: # abridged
 
    def listenTCP(self, port: Any, factory: Any, backlog: int = ..., interface: str = ...) -> IListeningPort: ...
 
    def listenTCP(self, port: int, factory: twisted.internet.protocol.ServerFactory, backlog: Optional[int] =50, interface: str = ...) -> IListeningPort: ...
 
    def connectTCP(self, host :bytes, port: int, factory: twisted.internet.protocol.ClientFactory, timeout: Optional[float] = 30): ...
 
    def seconds(self) -> None: ...
 
    def callLater(self, delay: Any, callable: Any, *args: Any, **kw: Any) -> IDelayedCall: ...
 
    def getDelayedCalls(self) -> None: ...
0 comments (0 inline, 0 general)