summaryrefslogtreecommitdiff
path: root/websocket
Commit message (Collapse)AuthorAgeFilesLines
* 0.59.0v0.59.0python2engn33r2021-05-041-1/+1
|
* Fixing urlparse scheme in Python 2.6.1 (#332)Brandon Moser2021-05-041-1/+1
|
* PEP8 style compliance fixesengn33r2021-05-0415-57/+45
|
* Fix #649 case of multiple set-cookie response headersengn33r2021-04-261-1/+4
|
* Add ping_payload to run_forever()engn33r2021-04-261-3/+6
|
* Fix #676 to update thread daemonengn33r2021-04-261-1/+1
|
* uses HTTP/1.1 for connect method (#677)GtTmy2021-04-191-1/+3
| | | and add Host header for proxy connections
* Comment out abnf test_mask for Python 2.7 supportengn33r2021-03-291-4/+6
|
* Improve _core.py test coverageengn33r2021-03-292-29/+20
|
* Improve _abnf.py test coverageengn33r2021-03-291-0/+83
|
* Add unit test for PR #627engn33r2021-03-292-0/+10
|
* Add support for permitting additional values in the "upgrade" and ↵Chris Wheeler2021-03-291-2/+2
| | | | "connection" headers (#627)
* Improve _app.py code coverageengn33r2021-03-282-74/+142
|
* Fix test_http.py import errorengn33r2021-03-281-1/+5
|
* Improve _http.py code coverageengn33r2021-03-281-0/+108
|
* Match no proxy on domain and * (#671)Codeglitches2021-03-223-186/+321
| | | | | | | | | * Extract url test methods and classes to separate test module * Fix: Restore no_proxy environment variable after tests * Fix: is_address_in_network does not pass simple unittests * Match no_proxy on * and domains
* Simplified cookie sorting to fix comparison problem between SimpleCookies (#662)Niels Draaisma2021-03-221-2/+2
|
* Fix #639 by adding close branch for reserved custom status codesengn33r2021-03-071-1/+3
|
* 0.58.0v0.58.0engn33r2021-03-021-1/+1
|
* Replace TravisCI with GitHub Actionsengn33r2021-02-271-2/+2
|
* Replace deprecated assertEquals() with assertEqual()engn33r2021-02-272-21/+21
| | | | | | The plural 'assertEquals()' is deprecated in Python 3 and triggers a warning during CI: https://docs.python.org/3/library/unittest.html#deprecated-aliases
* Revert PR #611engn33r2021-02-271-2/+2
|
* Fix #546 by removing comments introduced by PR #513engn33r2021-02-221-2/+0
|
* Fix #526 by reverting invalid BSD license migration in commit e94ed9e to ↵engn33r2021-02-2215-24/+84
| | | | return to LGPL2.1
* Edit documentation to clarify timeout can be int or float (#654)engn33r2021-02-163-6/+6
|
* Properly revert _app.py callback to state before PR #442 (previously only ↵engn33r2021-02-141-4/+1
| | | | partially reverted)
* Allow optional, not mandatory, argument for pong() in WebSocketengn33r2021-02-141-1/+1
|
* 'ping_interval' should be less than 'ping_timeout' (#611)lano20882021-02-091-2/+2
|
* Improve documentation, mostly new examples but some code comment upgradesengn33r2021-02-062-24/+31
|
* Merge branch 'master' of github.com:websocket-client/websocket-clientengn33r2021-01-311-1/+1
|\
| * Use `thread.is_alive()` to replace deprecated `thread.isAlive()` (#594)Itai Steinherz2021-01-291-1/+1
| |
* | Add first draft of Sphinx documentationengn33r2021-01-318-214/+371
|/
* Remove e71edd3 commit edits to fix TravisCI build (#657)engn33r2021-01-271-4/+3
|
* Merge pull request #647 from seratch/fix-build-failureengn33r2021-01-261-2/+2
|\ | | | | Fix failing TravisCI builds
| * Fix the failing tests (testIter, testNext)Kazuhiro Sera2020-11-271-2/+2
| |
* | Fix minor typo - getdefauttimeout to getdefaulttimeoutengn33r2021-01-251-1/+1
| |
* | Merge pull request #4 from sawdustofmind/FIX-604engn33r2021-01-251-1/+1
|\ \ | | | | | | Capitalize default connection header
| * | Capitalize default connection headersawdustofmind2020-02-191-1/+1
| |/
* | Merge pull request #3 from danrobinson88/fix-create_connection-documentationengn33r2021-01-251-2/+2
|\ \ | | | | | | fix documentation: create_connection, settimeout
| * | fix documentation: create_connection, settimeoutDan Robinson2021-01-141-2/+2
| |/
* | Fix _handshake.py error where subproto is NoneErik2021-01-081-3/+4
| |
* | Merge pull request #2 from anuragbeniwal/masterErik2021-01-092-2/+5
|\ \ | | | | | | Fix None.lower() when sec-websocket-protocol response header doesn't exist
| * | Fix None.lower() when sec-websocket-protocol response header does not existanuragbeniwal2020-05-082-2/+5
| |/ | | | | | | Fix for https://github.com/websocket-client/websocket-client/issues/516
* | Merge pull request #1 from Lu-Yi-Hsun/masterErik2021-01-091-1/+1
|\ \ | |/ |/| fix callback
| * fix callbacklu-yi-hsun2018-11-081-1/+1
| |
* | Merge pull request #533 from sfoerster/masterliris2019-12-251-3/+3
|\ \ | | | | | | _handshake: hasattr checks on six before accessing the values
| * | _handshake: hasattr checks on six before accessing the valuesSteven Foerster2019-03-141-3/+3
| | |
* | | Merge pull request #539 from jpshivakavi/masterliris2019-12-251-1/+2
|\ \ \ | | | | | | | | v should be checked for emptry string before splitting it
| * | | v should be checked for emptry string before splitting itJayaprakash Nevara2019-03-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | when name 'v' has empty string on splitting this empty string we get a list with empty string like [''] This will make the next if statement "if not no_proxy:" false. This is leading to a bug where a connection initiated from a localhost / 127.0.0.1 will not be considered as no_proxy type of connection. Leading to an exception ValueError("scheme %s is invalid" % scheme) with the scheme value set to http from parse_url() function
* | | | Merge branch 'master' into masterliris2019-12-257-15/+27
|\ \ \ \