Index: twisted/topfiles/6483.misc =================================================================== --- twisted/topfiles/6483.misc (revision 0) +++ twisted/topfiles/6483.misc (working copy) @@ -0,0 +1 @@ + Index: twisted/internet/iocpreactor/reactor.py =================================================================== --- twisted/internet/iocpreactor/reactor.py (revision 38280) +++ twisted/internet/iocpreactor/reactor.py (working copy) @@ -149,18 +149,12 @@ def listenTCP(self, port, factory, backlog=50, interface=''): - """ - @see: twisted.internet.interfaces.IReactorTCP.listenTCP - """ p = tcp.Port(port, factory, backlog, interface, self) p.startListening() return p def connectTCP(self, host, port, factory, timeout=30, bindAddress=None): - """ - @see: twisted.internet.interfaces.IReactorTCP.connectTCP - """ c = tcp.Connector(host, port, factory, timeout, bindAddress, self) c.connect() return c @@ -169,7 +163,7 @@ if TLSMemoryBIOFactory is not None: def listenSSL(self, port, factory, contextFactory, backlog=50, interface=''): """ - @see: twisted.internet.interfaces.IReactorSSL.listenSSL + @see: L{twisted.internet.interfaces.IReactorSSL.listenSSL} """ port = self.listenTCP( port, @@ -181,7 +175,7 @@ def connectSSL(self, host, port, factory, contextFactory, timeout=30, bindAddress=None): """ - @see: twisted.internet.interfaces.IReactorSSL.connectSSL + @see: L{twisted.internet.interfaces.IReactorSSL.connectSSL} """ return self.connectTCP( host, port,