summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Allow closing WebSocketApp with status/reason/timeoutDrew2016-08-181-2/+2
| |/ /
* | | Merge pull request #262 from krosinski/masterliris2016-10-032-1/+9
|\ \ \ | | | | | | | | _send_ping graceful error handling
| * | | Logging warnings when send_ping routine fails, send_ping exc should not hit ↵Krzysztof Rosinski2016-07-012-1/+9
| |/ / | | | | | | | | | sys.excepthook
* | | Merge pull request #256 from objarni/masterliris2016-10-031-42/+48
|\ \ \ | |/ / |/| | Shuffled around example code
| * | Shuffled around example codeOlof Bjarnason2016-05-111-42/+48
|/ / | | | | I re-ordered the examples and tried to give succint explanations of use cases for each.
* | fixed #253liris2016-05-102-1/+2
| |
* | add documentliris2016-05-103-2/+7
| |
* | Merge pull request #250 from c-bata/modify-a-code-block-directiveliris2016-05-101-1/+1
|\ \ | | | | | | Modify a code block directive in README
| * | Modify a code block directive in READMEMASASHI Shibata2016-04-281-1/+1
| |/
* | git push origin masteMerge branch 'youviewtv-cleanup'liris2016-05-1018-216/+273
|\ \
| * \ erge #249liris2016-05-1018-216/+273
| |\ \ |/ / /
| * | fixup! websocket.*: [PEP 8] Use conventional line-length limitAllan Lewis2016-04-281-1/+2
| | |
| * | fixup! wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise importsAllan Lewis2016-04-281-0/+1
| | |
| * | wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise importsAllan Lewis2016-04-2714-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 limitAllan Lewis2016-04-277-21/+40
| | | | | | | | | | | | Line length is set to 80 characters; tests are excluded.
| * | wsdump, websocket.*: [PEP 8] Use conventional vertical spacingAllan Lewis2016-04-278-4/+29
| | |
| * | echoapp_client: [PEP 8] Add space before commentAllan Lewis2016-04-271-1/+1
| | |
| * | wsdump, examples, setup, _abnf, _http, _utils: [PEP 8] Fix spacingAllan Lewis2016-04-277-20/+21
| | |
| * | _abnf, _app, _http, _url: [PEP 8] Fix indentsAllan Lewis2016-04-275-16/+18
| | |
| * | test_fuzzingclient.py: Indent with spacesAllan Lewis2016-04-271-22/+22
| | |
| * | _core, test_websocket: Remove unused localsAllan Lewis2016-04-272-8/+8
| | |
| * | ChangeLog, _abnf, _logging: Corect typosAllan Lewis2016-04-273-9/+9
| | |
| * | _core, _handshake: Remove unused importsAllan Lewis2016-04-272-7/+0
| | |
| * | test_websocket: Remove unnecessary backslashesAllan Lewis2016-04-271-3/+3
| | |
| * | _utils: Remove unnecessary trailing semicolonAllan Lewis2016-04-271-1/+1
| | |
| * | _core.WebSocket.shutdown: Triple-quote docstringAllan Lewis2016-04-271-1/+1
| | |
| * | wsdump: Only catch relevant exceptionsAllan Lewis2016-04-271-1/+1
| | |
| * | _utils.NoLock.__exit__: Use standard parameter namesAllan Lewis2016-04-271-1/+1
| | | | | | | | | | | | In any case, `type` is a builtin.
| * | _abnf, _socket: Don't override builtinsAllan Lewis2016-04-272-6/+6
| | |
| * | wsdump, _core, _url, _utils: Remove redundant parenthesesAllan Lewis2016-04-274-14/+14
| | |
| * | _abnf.ABNF._is_valid_close_status: Make method staticAllan Lewis2016-04-271-1/+2
| | |
| * | _handshake._get_handshake_headers: Use list literalAllan Lewis2016-04-271-4/+5
| | |
| * | _app: Don't use mutable default argument valueAllan Lewis2016-04-271-2/+2
| | |
| * | wsdump, _abnf, _http: Compare to `None` using `in`Allan Lewis2016-04-273-4/+4
| | |
| * | test_websocket: [Cleanup] Remove unused importsAllan Lewis2016-04-271-2/+0
| | |
| * | test_websocket: [Cleanup] Correct typoAllan Lewis2016-04-271-3/+3
| |/
* | Merge pull request #248 from Liamraystanley/patch-1liris2016-05-101-1/+1
|\ \ | |/ |/| Exclude port 443 from host http header
| * Exclude port 443 from host http headerLiam Stanley2016-04-271-1/+1
|/
* fixed #246v0.37.0liris2016-04-144-3/+6
|
* fixed #242v0.36.0liris2016-04-122-5/+6
|
* update document and version no.liris2016-04-123-2/+8
|
* Merge pull request #241 from mkonecny/masterliris2016-04-121-3/+9
|\ | | | | implement ping/pong timeout
| * implement ping/pong timeoutMartin Konecny2016-03-211-3/+9
| |
* | Merge pull request #235 from mpnowacki/masterliris2016-04-122-53/+70
|\ \ | | | | | | added support for using custom connection class
| * | added support for using custom connection classmichal.nowacki2016-02-102-53/+70
| |/
* | Merge pull request #238 from jlaire/named-loggerliris2016-04-122-3/+3
|\ \ | | | | | | Named logger
| * | Use 'websocket' as logger nameJohannes Laire2016-02-191-1/+1
| | |
| * | Fix typos in docstringJohannes Laire2016-02-191-2/+2
| |/
* | Merge pull request #243 from anshulguleria/corrects-highlightingliris2016-04-121-11/+22
|\ \ | |/ |/| Corrects the syntax highlight code
| * Corrects the syntax highlight codeanshulguleria2016-03-301-11/+22
|/