summaryrefslogtreecommitdiff
path: root/examples/websocket.py
Commit message (Collapse)AuthorAgeFilesLines
* PEP-8 fixesSergey Shepelev2014-08-271-0/+1
|
* python3 compat fixesVictor Sergeyev2014-03-281-7/+9
| | | | https://github.com/eventlet/eventlet/pull/59
* python3 compat: print() function syntaxSergey Shepelev2013-12-031-1/+1
|
* Incorporated Holger's fix for Chrome 5Ryan Williams2010-07-281-1/+1
|
* Added documentation for websocket module and switched to using decorators in ↵Ryan Williams2010-05-221-2/+3
| | | | the examples.
* Moved WebSocketWSGI class into eventlet.websocket and added a fewtests to ↵Ryan Williams2010-05-061-110/+7
| | | | bring it back up to 100%. Refactored the example to reference eventlet.websocket.
* Corrected get_errno import to make websocket example work again (boo me for ↵Ryan Williams2010-03-211-2/+2
| | | | using an internal API). Added note about which browser it works with.
* New eventlet.common module to create version-neutral layer. For now only ↵amajorek2010-02-281-2/+3
| | | | | | get_errno added there. All usage of e[0] replaced with either get_errno(e) or e.args[0] if intnetion was not to extract errno, but first argument
* MergeRyan Williams2010-02-211-5/+1
|\
| * Used convenience functions in examples.Ryan Williams2010-02-211-5/+1
|/
* Use None as the flag value because the empty string is a legit message.Ryan Williams2010-02-111-2/+2
|
* Updated websocket example, made it a little more bulletproof; now it's ↵Ryan Williams2010-02-111-35/+45
| | | | almost like tissue paper at stopping bullets. :)
* Expanded websocket example, added graphing page which looks rad in Chrome.Ryan Williams2010-02-111-12/+43
|
* Added websocket example, small changes to wsgi to support it.Ryan Williams2010-02-101-0/+104