Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | Allow closing WebSocketApp with status/reason/timeout | Drew | 2016-08-18 | 1 | -2/+2 | |
| |/ / | ||||||
* | | | Merge pull request #262 from krosinski/master | liris | 2016-10-03 | 2 | -1/+9 | |
|\ \ \ | | | | | | | | | _send_ping graceful error handling | |||||
| * | | | Logging warnings when send_ping routine fails, send_ping exc should not hit ↵ | Krzysztof Rosinski | 2016-07-01 | 2 | -1/+9 | |
| |/ / | | | | | | | | | | sys.excepthook | |||||
* | | | Merge pull request #256 from objarni/master | liris | 2016-10-03 | 1 | -42/+48 | |
|\ \ \ | |/ / |/| | | Shuffled around example code | |||||
| * | | Shuffled around example code | Olof Bjarnason | 2016-05-11 | 1 | -42/+48 | |
|/ / | | | | | I re-ordered the examples and tried to give succint explanations of use cases for each. | |||||
* | | fixed #253 | liris | 2016-05-10 | 2 | -1/+2 | |
| | | ||||||
* | | add document | liris | 2016-05-10 | 3 | -2/+7 | |
| | | ||||||
* | | Merge pull request #250 from c-bata/modify-a-code-block-directive | liris | 2016-05-10 | 1 | -1/+1 | |
|\ \ | | | | | | | Modify a code block directive in README | |||||
| * | | Modify a code block directive in README | MASASHI Shibata | 2016-04-28 | 1 | -1/+1 | |
| |/ | ||||||
* | | git push origin masteMerge branch 'youviewtv-cleanup' | liris | 2016-05-10 | 18 | -216/+273 | |
|\ \ | ||||||
| * \ | erge #249 | liris | 2016-05-10 | 18 | -216/+273 | |
| |\ \ |/ / / | ||||||
| * | | fixup! websocket.*: [PEP 8] Use conventional line-length limit | Allan Lewis | 2016-04-28 | 1 | -1/+2 | |
| | | | ||||||
| * | | fixup! wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise imports | Allan Lewis | 2016-04-28 | 1 | -0/+1 | |
| | | | ||||||
| * | | wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise imports | Allan Lewis | 2016-04-27 | 14 | -67/+82 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | 7 | -21/+40 | |
| | | | | | | | | | | | | Line length is set to 80 characters; tests are excluded. | |||||
| * | | wsdump, websocket.*: [PEP 8] Use conventional vertical spacing | Allan Lewis | 2016-04-27 | 8 | -4/+29 | |
| | | | ||||||
| * | | echoapp_client: [PEP 8] Add space before comment | Allan Lewis | 2016-04-27 | 1 | -1/+1 | |
| | | | ||||||
| * | | wsdump, examples, setup, _abnf, _http, _utils: [PEP 8] Fix spacing | Allan Lewis | 2016-04-27 | 7 | -20/+21 | |
| | | | ||||||
| * | | _abnf, _app, _http, _url: [PEP 8] Fix indents | Allan Lewis | 2016-04-27 | 5 | -16/+18 | |
| | | | ||||||
| * | | test_fuzzingclient.py: Indent with spaces | Allan Lewis | 2016-04-27 | 1 | -22/+22 | |
| | | | ||||||
| * | | _core, test_websocket: Remove unused locals | Allan Lewis | 2016-04-27 | 2 | -8/+8 | |
| | | | ||||||
| * | | ChangeLog, _abnf, _logging: Corect typos | Allan Lewis | 2016-04-27 | 3 | -9/+9 | |
| | | | ||||||
| * | | _core, _handshake: Remove unused imports | Allan Lewis | 2016-04-27 | 2 | -7/+0 | |
| | | | ||||||
| * | | test_websocket: Remove unnecessary backslashes | Allan Lewis | 2016-04-27 | 1 | -3/+3 | |
| | | | ||||||
| * | | _utils: Remove unnecessary trailing semicolon | Allan Lewis | 2016-04-27 | 1 | -1/+1 | |
| | | | ||||||
| * | | _core.WebSocket.shutdown: Triple-quote docstring | Allan Lewis | 2016-04-27 | 1 | -1/+1 | |
| | | | ||||||
| * | | wsdump: Only catch relevant exceptions | Allan Lewis | 2016-04-27 | 1 | -1/+1 | |
| | | | ||||||
| * | | _utils.NoLock.__exit__: Use standard parameter names | Allan Lewis | 2016-04-27 | 1 | -1/+1 | |
| | | | | | | | | | | | | In any case, `type` is a builtin. | |||||
| * | | _abnf, _socket: Don't override builtins | Allan Lewis | 2016-04-27 | 2 | -6/+6 | |
| | | | ||||||
| * | | wsdump, _core, _url, _utils: Remove redundant parentheses | Allan Lewis | 2016-04-27 | 4 | -14/+14 | |
| | | | ||||||
| * | | _abnf.ABNF._is_valid_close_status: Make method static | Allan Lewis | 2016-04-27 | 1 | -1/+2 | |
| | | | ||||||
| * | | _handshake._get_handshake_headers: Use list literal | Allan Lewis | 2016-04-27 | 1 | -4/+5 | |
| | | | ||||||
| * | | _app: Don't use mutable default argument value | Allan Lewis | 2016-04-27 | 1 | -2/+2 | |
| | | | ||||||
| * | | wsdump, _abnf, _http: Compare to `None` using `in` | Allan Lewis | 2016-04-27 | 3 | -4/+4 | |
| | | | ||||||
| * | | test_websocket: [Cleanup] Remove unused imports | Allan Lewis | 2016-04-27 | 1 | -2/+0 | |
| | | | ||||||
| * | | test_websocket: [Cleanup] Correct typo | Allan Lewis | 2016-04-27 | 1 | -3/+3 | |
| |/ | ||||||
* | | Merge pull request #248 from Liamraystanley/patch-1 | liris | 2016-05-10 | 1 | -1/+1 | |
|\ \ | |/ |/| | Exclude port 443 from host http header | |||||
| * | Exclude port 443 from host http header | Liam Stanley | 2016-04-27 | 1 | -1/+1 | |
|/ | ||||||
* | fixed #246v0.37.0 | liris | 2016-04-14 | 4 | -3/+6 | |
| | ||||||
* | fixed #242v0.36.0 | liris | 2016-04-12 | 2 | -5/+6 | |
| | ||||||
* | update document and version no. | liris | 2016-04-12 | 3 | -2/+8 | |
| | ||||||
* | 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 | |
| | | ||||||
* | | Merge pull request #235 from mpnowacki/master | liris | 2016-04-12 | 2 | -53/+70 | |
|\ \ | | | | | | | added support for using custom connection class | |||||
| * | | added support for using custom connection class | michal.nowacki | 2016-02-10 | 2 | -53/+70 | |
| |/ | ||||||
* | | Merge pull request #238 from jlaire/named-logger | liris | 2016-04-12 | 2 | -3/+3 | |
|\ \ | | | | | | | Named logger | |||||
| * | | Use 'websocket' as logger name | Johannes Laire | 2016-02-19 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fix typos in docstring | Johannes Laire | 2016-02-19 | 1 | -2/+2 | |
| |/ | ||||||
* | | Merge pull request #243 from anshulguleria/corrects-highlighting | liris | 2016-04-12 | 1 | -11/+22 | |
|\ \ | |/ |/| | Corrects the syntax highlight code | |||||
| * | Corrects the syntax highlight code | anshulguleria | 2016-03-30 | 1 | -11/+22 | |
|/ |