add docstring.
This commit is contained in:
2
setup.py
2
setup.py
@@ -1,6 +1,6 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
VERSION = "0.8.0"
|
VERSION = "0.9.0"
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
@@ -700,7 +700,9 @@ class WebSocketApp(object):
|
|||||||
|
|
||||||
def send(self, data, opcode = ABNF.OPCODE_TEXT):
|
def send(self, data, opcode = ABNF.OPCODE_TEXT):
|
||||||
"""
|
"""
|
||||||
send message. data must be utf-8 string or unicode.
|
send message.
|
||||||
|
data: message to send. If you set opcode to OPCODE_TEXT, data must be utf-8 string or unicode.
|
||||||
|
opcode: operation code of data. default is OPCODE_TEXT.
|
||||||
"""
|
"""
|
||||||
if self.sock.send(data, opcode) == 0:
|
if self.sock.send(data, opcode) == 0:
|
||||||
raise WebSocketConnectionClosedException()
|
raise WebSocketConnectionClosedException()
|
||||||
|
Reference in New Issue
Block a user