| Commit message (Expand) | Author | Age | Files | Lines |
* | PEP8 style compliance fixes | engn33r | 2021-05-04 | 1 | -4/+4 |
* | Fix #639 by adding close branch for reserved custom status codes | engn33r | 2021-03-07 | 1 | -1/+3 |
* | Fix #546 by removing comments introduced by PR #513 | engn33r | 2021-02-22 | 1 | -2/+0 |
* | Fix #526 by reverting invalid BSD license migration in commit e94ed9e to retu... | engn33r | 2021-02-22 | 1 | -2/+1 |
* | Edit documentation to clarify timeout can be int or float (#654) | engn33r | 2021-02-16 | 1 | -1/+1 |
* | Allow optional, not mandatory, argument for pong() in WebSocket | engn33r | 2021-02-14 | 1 | -1/+1 |
* | Improve documentation, mostly new examples but some code comment upgrades | engn33r | 2021-02-06 | 1 | -12/+17 |
* | Add first draft of Sphinx documentation | engn33r | 2021-01-31 | 1 | -102/+177 |
* | Fix minor typo - getdefauttimeout to getdefaulttimeout | engn33r | 2021-01-25 | 1 | -1/+1 |
* | fix documentation: create_connection, settimeout | Dan Robinson | 2021-01-14 | 1 | -2/+2 |
* | avoid calling repr(data) if tracing is not enabled | Yehiyam Livneh | 2019-11-24 | 1 | -1/+2 |
* | Merge pull request #529 from comet-ml/fix-closing-thread-safety | liris | 2019-02-23 | 1 | -1/+1 |
|\ |
|
| * | Fix `WebSocket.close` in multi-threaded environments | Boris Feld | 2019-02-20 | 1 | -1/+1 |
* | | Ensure that "timeout" is passed down, when calling WebSocket.connect() | jhtitor | 2018-12-18 | 1 | -0/+3 |
|/ |
|
* | Merge branch 'master' into suppress_origin_fix | liris | 2018-10-28 | 1 | -0/+9 |
|\ |
|
| * | Rename 'redirect_threshold' to 'redirect_limit' | Pär Tojkander | 2018-10-11 | 1 | -3/+3 |
| * | Handle redirects in handshake | Pär Tojkander | 2018-10-11 | 1 | -0/+9 |
* | | Fix typo in supress_origin | Instance | 2018-09-22 | 1 | -2/+2 |
|/ |
|
* | Merge pull request #446 from nneonneo/master | liris | 2018-08-14 | 1 | -8/+14 |
|\ |
|
| * | Fix #414: proper handling of close method. | Robert Xiao | 2018-06-19 | 1 | -8/+14 |
* | | fixed #HC-459 | liris | 2018-08-14 | 1 | -0/+2 |
|/ |
|
* | Fixed issue #397 with ssl import | Dmitry Mottl | 2018-02-14 | 1 | -0/+1 |
* | fixed #386 | Hiroki Ohtani | 2018-02-09 | 1 | -0/+3 |
* | Merge branch 'master' of https://github.com/eendebakpt/websocket-client into ... | Hiroki Ohtani | 2017-12-09 | 1 | -1/+4 |
|\ |
|
| * | use separate lock for recv | Pieter Eendebak | 2017-09-28 | 1 | -1/+3 |
| * | add lock to recv function | Pieter Eendebak | 2017-09-26 | 1 | -1/+2 |
* | | Parse close frame response correctly when reason present | Mike Sutjipto | 2017-09-14 | 1 | -1/+1 |
|/ |
|
* | wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise imports | Allan Lewis | 2016-04-27 | 1 | -11/+9 |
* | websocket.*: [PEP 8] Use conventional line-length limit | Allan Lewis | 2016-04-27 | 1 | -4/+8 |
* | _core, test_websocket: Remove unused locals | Allan Lewis | 2016-04-27 | 1 | -1/+1 |
* | _core, _handshake: Remove unused imports | Allan Lewis | 2016-04-27 | 1 | -4/+0 |
* | _core.WebSocket.shutdown: Triple-quote docstring | Allan Lewis | 2016-04-27 | 1 | -1/+1 |
* | wsdump, _core, _url, _utils: Remove redundant parentheses | Allan Lewis | 2016-04-27 | 1 | -3/+3 |
* | fixed #246v0.37.0 | liris | 2016-04-14 | 1 | -1/+1 |
* | added support for using custom connection class | michal.nowacki | 2016-02-10 | 1 | -53/+55 |
* | Merge branch 'init-with-socket' of https://github.com/ilysym/websocket-client... | liris | 2016-01-04 | 1 | -1/+4 |
|\ |
|
| * | Use pre-initialized stream socket | Ilya Semyonov | 2015-12-08 | 1 | -1/+4 |
* | | fix typos | Jakub Wilk | 2016-01-03 | 1 | -16/+16 |
|/ |
|
* | ref #204 | liris | 2015-10-27 | 1 | -2/+2 |
* | fixed #192 | liris | 2015-07-30 | 1 | -4/+7 |
* | Add `__iter__`, `__next__`, and `next` methods to WebSocket, allowing them to... | Stuart Axel Owen | 2015-04-20 | 1 | -0/+13 |
* | fixed #173 | liris | 2015-04-17 | 1 | -1/+1 |
* | fixed #171 | liris | 2015-04-14 | 1 | -0/+3 |
* | fixed some errorv0.27.0 | liris | 2015-03-26 | 1 | -3/+3 |
* | Fix exception in recv() when ssl module is not available | Andrey Kosyakov | 2015-03-25 | 1 | -17/+1 |
* | refactoring. pack continuous frame info into one class. | liris | 2015-03-25 | 1 | -54/+7 |
* | refactoring. continuous status is packed into frame_buffer | liris | 2015-03-25 | 1 | -28/+7 |
* | Merge branch 'master' of https://github.com/liris/websocket-client | liris | 2015-03-25 | 1 | -2/+1 |
|\ |
|
| * | Merge pull request #159 from samueltardieu/patch-1 | liris | 2015-03-25 | 1 | -1/+1 |
| |\ |
|
| | * | fix typo in function documentation | Samuel Tardieu | 2015-03-23 | 1 | -1/+1 |