Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Check return value of read callback in dispatchers | shdown | 2018-03-22 | 1 | -2/+4 | |
| | | ||||||
* | | Fix waiting forever on ping/pong timeout | shdown | 2018-03-14 | 1 | -5/+10 | |
|/ | ||||||
* | fix #395 | Tianhu Yang | 2018-02-13 | 1 | -0/+2 | |
| | ||||||
* | fixed #386 | Hiroki Ohtani | 2018-02-09 | 1 | -8/+28 | |
| | ||||||
* | refactor | Hiroki Ohtani | 2018-02-09 | 1 | -9/+15 | |
| | ||||||
* | rmed Dispatcher.dispatch() and dispatcher.dispatch(), simplifying api | bubbleboy14 | 2018-01-24 | 1 | -5/+0 | |
| | ||||||
* | refs #375 | Hiroki Ohtani | 2018-01-24 | 1 | -5/+21 | |
| | ||||||
* | friendlier KeyboardInterrupt | bubbleboy14 | 2017-12-24 | 1 | -0/+1 | |
| | ||||||
* | teardown(): return out if not running; call on close frame | bubbleboy14 | 2017-12-24 | 1 | -1/+3 | |
| | ||||||
* | moved teardown code into function called on close or exception | bubbleboy14 | 2017-12-24 | 1 | -11/+13 | |
| | ||||||
* | WebSocketApp.run_forever(): replaced select() loop with rel.read() event ↵ | bubbleboy14 | 2017-12-24 | 1 | -26/+28 | |
| | | | | registration; no_dispatch kwarg (default False), for switching off immediate dispatch (thus supporting multiple simultaneous clients). added rel import. | |||||
* | Another typo, same deal | Peter "Marenthyu" Fredebold | 2017-12-09 | 1 | -1/+1 | |
| | | | should be True not true | |||||
* | Fix typo | Peter "Marenthyu" Fredebold | 2017-12-09 | 1 | -1/+1 | |
| | | | should be False not false | |||||
* | fixed #365 | Hiroki Ohtani | 2017-12-09 | 1 | -4/+4 | |
| | ||||||
* | Fix undefined variable | mckelvin | 2017-09-01 | 1 | -1/+1 | |
| | ||||||
* | fixed #327v0.43.0 | liris | 2017-06-21 | 1 | -0/+1 | |
| | | | | revert #301 | |||||
* | fixed #325v0.41.1 | liris | 2017-06-18 | 1 | -1/+2 | |
| | ||||||
* | Merge pull request #323 from dannywillems/fix_warning | liris | 2017-06-18 | 1 | -4/+4 | |
|\ | | | | | Fix warning is not defined. | |||||
| * | Fix warning is not defined. | Danny Willems | 2017-06-12 | 1 | -4/+4 | |
| | | ||||||
* | | Merge pull request #320 from LAlbertalli/patch-1 | liris | 2017-06-18 | 1 | -1/+1 | |
|\ \ | | | | | | | Avoid the app to block on close on certain systems | |||||
| * | | Avoid the app to block on close on certain systems | Luca Albertalli | 2017-05-30 | 1 | -1/+1 | |
| |/ | | | | | | | | | | | | | | | | | This relates to issues #317 From the man page of libc/select: ' Multithreaded applications ' If a file descriptor being monitored by select() is closed in another thread, the result is unspecified. On some UNIX systems, select() unblocks and returns, with an indication that the file descriptor is ready (a subsequent I/O operation will likely fail with an error, unless another the file descriptor reopened between the time select() returned and the I/O operations was performed). On Linux (and some other systems), closing the file descriptor in another thread has no effect on select(). In summary, any application that relies on a particular behavior in this scenario must be considered buggy. This change ensures that select unlock at least every 10 sec | |||||
* | | Merge pull request #301 from lujinda/master | liris | 2017-06-18 | 1 | -1/+0 | |
|\ \ | |/ |/| | fix: when using pppoe redial will block. | |||||
| * | fix: when using pppoe redial will block. | 疯狂的小企鹅 | 2016-08-01 | 1 | -1/+0 | |
| | | ||||||
* | | Fix opcode -> op_code | Richard Wong | 2016-12-07 | 1 | -1/+1 | |
| | | ||||||
* | | fixed #261 Incorrect encoding in continued messages python3 | liris | 2016-10-03 | 1 | -1/+1 | |
| | | ||||||
* | | Merge pull request #265 from drew-gross/patch-1 | liris | 2016-10-03 | 1 | -2/+2 | |
|\ \ | | | | | | | Allow closing WebSocketApp with status/reason/timeout | |||||
| * | | Allow closing WebSocketApp with status/reason/timeout | Drew | 2016-08-18 | 1 | -2/+2 | |
| |/ | ||||||
* | | Logging warnings when send_ping routine fails, send_ping exc should not hit ↵ | Krzysztof Rosinski | 2016-07-01 | 1 | -1/+5 | |
|/ | | | | sys.excepthook | |||||
* | fixed #253 | liris | 2016-05-10 | 1 | -1/+1 | |
| | ||||||
* | wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise imports | Allan Lewis | 2016-04-27 | 1 | -3/+4 | |
| | | | | | | | | | | | | | | Previously, because of the multiple instances of `from foo import *`, names were imported from modules that had themselves imported them, instead of from the place of definition. This commit therefore does the following: - Declares `__all__` in every module that imports anything, so that `from foo import *` is sane. - Sorts the imports based on conventions, similar to the output of `isort`. - Places all conditional imports after unconditional imports, except where that isn't valid. - Imports local names from the modules where they are defined, except when importing the package itself. | |||||
* | websocket.*: [PEP 8] Use conventional line-length limit | Allan Lewis | 2016-04-27 | 1 | -5/+10 | |
| | | | | Line length is set to 80 characters; tests are excluded. | |||||
* | wsdump, websocket.*: [PEP 8] Use conventional vertical spacing | Allan Lewis | 2016-04-27 | 1 | -0/+1 | |
| | ||||||
* | wsdump, examples, setup, _abnf, _http, _utils: [PEP 8] Fix spacing | Allan Lewis | 2016-04-27 | 1 | -1/+1 | |
| | ||||||
* | _abnf, _app, _http, _url: [PEP 8] Fix indents | Allan Lewis | 2016-04-27 | 1 | -8/+9 | |
| | ||||||
* | _app: Don't use mutable default argument value | Allan Lewis | 2016-04-27 | 1 | -2/+2 | |
| | ||||||
* | fixed #242v0.36.0 | liris | 2016-04-12 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #241 from mkonecny/master | liris | 2016-04-12 | 1 | -3/+9 | |
|\ | | | | | implement ping/pong timeout | |||||
| * | implement ping/pong timeout | Martin Konecny | 2016-03-21 | 1 | -3/+9 | |
| | | ||||||
* | | Fix typos in docstring | Johannes Laire | 2016-02-19 | 1 | -2/+2 | |
|/ | ||||||
* | Propagate SystemExit exception further | Vasily | 2016-01-18 | 1 | -0/+3 | |
| | ||||||
* | Handle more built-in exceptions that are not derived from Exception in ↵ | Vasily | 2016-01-15 | 1 | -1/+1 | |
| | | | | WebSocketApp.run_forever() | |||||
* | Merge branch 'fix_argspec' of https://github.com/oklahomer/websocket-client ↵ | liris | 2016-01-04 | 1 | -2/+6 | |
|\ | | | | | | | into oklahomer-fix_argspec | |||||
| * | use inspect.getfullargspec with Python 3.x | Oklahomer | 2015-11-08 | 1 | -2/+6 | |
| | | ||||||
* | | fix typos | Jakub Wilk | 2016-01-03 | 1 | -17/+17 | |
|/ | ||||||
* | fixed #203 | liris | 2015-10-28 | 1 | -2/+2 | |
| | ||||||
* | Merge remote-tracking branch 'origin/master' into tweaks | Noah Levitt | 2015-09-23 | 1 | -1/+13 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | * origin/master: fixed #192 introduced close timeout fixed #199 WebSocketBadStatusException for handshake error fixed #198 introduce on_data callback to pass data type. documentation add space. Typo fix in README.rst Fix string formatting in exception add support for ssl cert chains to support client certs | |||||
| * | fixed #198 | liris | 2015-07-30 | 1 | -1/+13 | |
| | | | | | | | | introduce on_data callback to pass data type. | |||||
* | | improve logging of error from callback | Noah Levitt | 2015-07-20 | 1 | -1/+1 | |
|/ | ||||||
* | fixed #173 | liris | 2015-04-17 | 1 | -1/+1 | |
| | ||||||
* | fixed #171 | liris | 2015-04-14 | 1 | -2/+6 | |
| |