summaryrefslogtreecommitdiff
path: root/websocket/_utils.py
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2022engn33r2021-12-311-1/+1
|
* Py2->3: simplify class definition (#750)谭九鼎2021-10-201-1/+1
| | | Remove implied and redundant object class type declarations
* Transition from LGPL 2.1 license to Apache 2.0 - fix #697engn33r2021-08-101-13/+11
|
* First pass removing Python 2 code, mostly six dependencyengn33r2021-05-041-4/+0
|
* Fix #526 by reverting invalid BSD license migration in commit e94ed9e to ↵engn33r2021-02-221-2/+1
| | | | return to LGPL2.1
* Pep8 fixesazaugg2019-04-241-0/+1
|
* Fix SSL socket handling (#2)Juho Hovila2018-08-291-1/+6
| | | | | | | | | | * Fix ssl socket handling Handle them as recommended in here https://bugs.python.org/issue21430 and in python documentation. Do not use undocumented SSLSocket pending * Increase version
* wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise importsAllan Lewis2016-04-271-1/+0
| | | | | | | | | | | | | | 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-271-1/+2
| | | | Line length is set to 80 characters; tests are excluded.
* wsdump, websocket.*: [PEP 8] Use conventional vertical spacingAllan Lewis2016-04-271-0/+4
|
* wsdump, examples, setup, _abnf, _http, _utils: [PEP 8] Fix spacingAllan Lewis2016-04-271-1/+1
|
* _utils: Remove unnecessary trailing semicolonAllan Lewis2016-04-271-1/+1
|
* _utils.NoLock.__exit__: Use standard parameter namesAllan Lewis2016-04-271-1/+1
| | | | In any case, `type` is a builtin.
* wsdump, _core, _url, _utils: Remove redundant parenthesesAllan Lewis2016-04-271-1/+1
|
* fix typosJakub Wilk2016-01-031-1/+1
|
* use wsaccel if availableAchille Roussel2015-07-101-46/+56
|
* - fixed #190liris2015-06-241-1/+4
|
* Fix #180: Avoid deprecated BaseException.messageJohn Vandenberg2015-05-051-5/+1
|
* add "__all__"Hiroki Ohtani2015-03-191-0/+2
|
* refactoring.,,liris2015-03-131-0/+5
|
* - Update license text and source code to reflect propoer address for FSFRobert Schweikert2015-02-081-1/+2
|
* refs #117liris2014-10-151-0/+55
| | | | better utf-8 support.
* - fixed #92liris2014-06-231-0/+29
- lock send method for multithread programing.