add docstring.

This commit is contained in:
liris
2013-02-12 12:01:53 +09:00
parent 8956cee30b
commit 46624e2ac6
2 changed files with 5 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
from setuptools import setup
VERSION = "0.8.0"
VERSION = "0.9.0"
setup(
@@ -12,7 +12,7 @@ setup(
author_email="liris.pp@gmail.com",
license="LGPL",
url="https://github.com/liris/websocket-client",
classifiers = [
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",

View File

@@ -700,7 +700,9 @@ class WebSocketApp(object):
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:
raise WebSocketConnectionClosedException()