This commit is contained in:
liris 2016-04-14 09:27:13 +09:00
parent fa97b1727f
commit 3ca245de52
4 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
ChangeLog
============
- 0.37.0
- fixed fialer that `websocket.create_connection` does not accept `origin` as a parameter (#246 )
- 0.36.0
- added support for using custom connection class (#235)
- use Named logger (#238)

View File

@ -1,7 +1,7 @@
from setuptools import setup
import sys
VERSION = "0.36.0"
VERSION = "0.37.0"
NAME="websocket_client"
install_requires = ["six"]

View File

@ -22,4 +22,4 @@ Copyright (C) 2010 Hiroki Ohtani(liris)
from ._core import *
from ._app import WebSocketApp
__version__ = "0.36.0"
__version__ = "0.37.0"

View File

@ -83,7 +83,7 @@ class WebSocket(object):
def __init__(self, get_mask_key=None, sockopt=None, sslopt=None,
fire_cont_frame=False, enable_multithread=False,
skip_utf8_validation=False):
skip_utf8_validation=False, **options):
"""
Initialize WebSocket object.
"""