aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-08-08 22:01:30 +0200
committerMichał Górny <mgorny@gentoo.org>2015-08-08 22:01:30 +0200
commit40d1216738d6d8d8809c7007c2c6645313173ab6 (patch)
treed97256deb0e89793309c9ed7d2d51aaf09204ff9 /dev-python/ws4py/files/ws4py-0.2.1-process-data.patch
parentDisable ChangeLog updates (diff)
downloadpython-40d1216738d6d8d8809c7007c2c6645313173ab6.tar.gz
python-40d1216738d6d8d8809c7007c2c6645313173ab6.tar.bz2
python-40d1216738d6d8d8809c7007c2c6645313173ab6.zip
Remove outdated ebuilds
Diffstat (limited to 'dev-python/ws4py/files/ws4py-0.2.1-process-data.patch')
-rw-r--r--dev-python/ws4py/files/ws4py-0.2.1-process-data.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-python/ws4py/files/ws4py-0.2.1-process-data.patch b/dev-python/ws4py/files/ws4py-0.2.1-process-data.patch
deleted file mode 100644
index 5476f2d..0000000
--- a/dev-python/ws4py/files/ws4py-0.2.1-process-data.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 38cf669e27fab9de187eb11dabd7d85d73d5f470 Mon Sep 17 00:00:00 2001
-From: Jon Salz <jsalz@chromium.org>
-Date: Fri, 20 Apr 2012 02:22:46 +0800
-Subject: [PATCH] Process remaining bytes in the body, if any.
-
-https://github.com/Lawouach/WebSocket-for-Python/issues/46
----
- ws4py/client/__init__.py | 3 +++
- 1 files changed, 3 insertions(+), 0 deletions(-)
-
-diff --git a/ws4py/client/__init__.py b/ws4py/client/__init__.py
-index aa4c8f2..29b1357 100644
---- a/ws4py/client/__init__.py
-+++ b/ws4py/client/__init__.py
-@@ -71,6 +71,9 @@ class WebSocketBaseClient(WebSocket):
-
- self.handshake_ok()
-
-+ if body != '':
-+ self.process(body)
-+
- @property
- def handshake_headers(self):
- parts = urlsplit(self.url)
---
-1.7.3.4
-