When Address is being created with an argument which is not an instance of bytes, pyenet will through and error.
Because of the following:
https://github.com/aresch/pyenet/blob/master/enet.pyx#L226
bytes() only takes in 1 argument.
Also, there's no way to specify host as None with this bytes() conversion...
When Address is being created with an argument which is not an instance of
bytes, pyenet will through and error.Because of the following:
https://github.com/aresch/pyenet/blob/master/enet.pyx#L226
bytes() only takes in 1 argument.
Also, there's no way to specify host as
Nonewith this bytes() conversion...