formating update, bumped version

This commit is contained in:
Brian Muller 2016-04-07 09:39:29 +03:00
parent 7b29c50c79
commit 87ea77d12d
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
""" """
Kademlia is a Python implementation of the Kademlia protocol for `Twisted <http://twistedmatrix.com>`_. Kademlia is a Python implementation of the Kademlia protocol for `Twisted <http://twistedmatrix.com>`_.
""" """
version_info = (0, 5) version_info = (0, 6)
version = '.'.join(map(str, version_info)) version = '.'.join(map(str, version_info))

View File

@ -47,7 +47,7 @@ class Server(object):
This is the same as calling:: This is the same as calling::
reactor.listenUDP(port, server.protocol) reactor.listenUDP(port, server.protocol)
Provide interface="::" to accept ipv6 address Provide interface="::" to accept ipv6 address
""" """
return reactor.listenUDP(port, self.protocol, interface) return reactor.listenUDP(port, self.protocol, interface)