dev-python/requests-toolbelt: remove binary junk
authorMarty E. Plummer <hanetzer@startmail.com>
Sun, 8 Apr 2018 13:04:47 +0000 (08:04 -0500)
committerAmy Liffey <amynka@gentoo.org>
Sun, 15 Apr 2018 14:24:45 +0000 (16:24 +0200)
Replaced with a 'fixed' copy from here:

https://github.com/dol-sen/toolbelt/commit/e130ad521d3b5a14cd9494213e6ca9f52d0d9a2e.patch
Closes: https://github.com/gentoo/gentoo/pull/7869

Package-Manager: Portage-2.3.28, Repoman-2.3.9

dev-python/requests-toolbelt/files/requests-toolbelt-0.8.0-test-tracebacks.patch

index ddc7b3b05a24e643f5e131c63e995c7f8f35b8c7..418039bc7f94bea1eb382c2064ef973b63fb6057 100644 (file)
@@ -1,17 +1,31 @@
-From 7af2e4ce4192dfab6bd8315ad31b5b689386a0d3 Mon Sep 17 00:00:00 2001
-From:  <@\9cÖ\ 4>
+From e130ad521d3b5a14cd9494213e6ca9f52d0d9a2e Mon Sep 17 00:00:00 2001
+From: Brian Dolbec <brian.dolbec@sony.com>
 Date: Wed, 7 Mar 2018 21:52:25 +0000
-Subject: [PATCH] threaded/tread.py: Fix numerous test failures
+Subject: [PATCH] threaded/thread.py: Fix unhandled Nonetype job queue
 
+Adding this check and return prevents numerous test tracebacks:
+
+Exception in thread 12f554d5-f61f-44d9-bc69-023714627952:
+Traceback (most recent call last):
+  File "/usr/lib64/python3.4/threading.py", line 911, in _bootstrap_inner
+    self.run()
+  File "/usr/lib64/python3.4/threading.py", line 859, in run
+    self._target(*self._args, **self._kwargs)
+  File "/home/bdolbec/git/toolbelt/requests_toolbelt/threaded/thread.py", line 43, in _make_request
+    kwargs = self._jobs.get_nowait()
+AttributeError: 'NoneType' object has no attribute 'get_nowait'
+
+Signed-off-by: Brian Dolbec <brian.dolbec@sony.com>
+Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
 ---
  requests_toolbelt/threaded/thread.py | 2 ++
- 1 file changed, 2 insertions(+), 0 deletions(-)
+ 1 file changed, 2 insertions(+)
 
 diff --git a/requests_toolbelt/threaded/thread.py b/requests_toolbelt/threaded/thread.py
 index 542813c..f33b759 100644
 --- a/requests_toolbelt/threaded/thread.py
 +++ b/requests_toolbelt/threaded/thread.py
-@@ -36,6 +36,8 @@ class SessionThread(object):
+@@ -36,6 +36,8 @@ def _handle_request(self, kwargs):
              self._jobs.task_done()
  
      def _make_request(self):
@@ -20,6 +34,3 @@ index 542813c..f33b759 100644
          while True:
              try:
                  kwargs = self._jobs.get_nowait()
---
-libgit2 0.24.6
-