From cc1ef64557f6b4fda5c1fd6354cea582b0404a5e Mon Sep 17 00:00:00 2001 From: liris Date: Tue, 18 Mar 2014 12:32:19 +0900 Subject: [PATCH] - refs #59 --- README.rst | 7 ++++--- tests/test_websocket.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 79c8756..8b17ad5 100644 --- a/README.rst +++ b/README.rst @@ -116,7 +116,7 @@ positional arguments: optional arguments: -h, --help show this help message and exit - +WebSocketApp -v VERBOSE, --verbose VERBOSE set verbose mode. If set to 1, show opcode. If set to 2, enable to trace websocket module example:: @@ -129,8 +129,9 @@ ChangeLog ============ - v0.13.0 - - - Controlling fragmentation(ISSUE#55) + + - MemoryError when receiving large amount of data (~60 MB) at once(ISSUE#59) + - Controlling fragmentation(ISSUE#55) - server certificate validation(ISSUE#56) - PyPI tarball is missing test_websocket.py(ISSUE#65) - Payload length encoding bug(ISSUE#58) diff --git a/tests/test_websocket.py b/tests/test_websocket.py index d31478c..4b900f9 100644 --- a/tests/test_websocket.py +++ b/tests/test_websocket.py @@ -28,7 +28,7 @@ import websocket as ws # "RFC6455: 5.4. Fragmentation" # TEST_FRAGMENTATION = True -TEST_WITH_INTERNET = True +TEST_WITH_INTERNET = False TRACABLE = False