public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonrpclib/files/
@ 2016-09-18 13:29 David Seifert
  0 siblings, 0 replies; only message in thread
From: David Seifert @ 2016-09-18 13:29 UTC (permalink / raw
  To: gentoo-commits

commit:     ef8a2ec047ee8f377661b53b2cf135133fe118a0
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Sep 13 15:37:51 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 13:27:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef8a2ec0

dev-python/jsonrpclib: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/2322

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 .../files/jsonrpclib-fix-nested-imports.patch      | 31 ----------------------
 1 file changed, 31 deletions(-)

diff --git a/dev-python/jsonrpclib/files/jsonrpclib-fix-nested-imports.patch b/dev-python/jsonrpclib/files/jsonrpclib-fix-nested-imports.patch
deleted file mode 100644
index 39e0463..00000000
--- a/dev-python/jsonrpclib/files/jsonrpclib-fix-nested-imports.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 865a813078c1b447713aeb1f1bb860c441a88365 Mon Sep 17 00:00:00 2001
-From: Jon Salz <jsalz@chromium.org>
-Date: Fri, 20 Apr 2012 02:41:50 +0800
-Subject: [PATCH] Fix importing of nested modules.
-
-https://github.com/joshmarshall/jsonrpclib/issues/15
----
- jsonrpclib/jsonclass.py |    7 +++++++
- 1 files changed, 7 insertions(+), 0 deletions(-)
-
-diff --git a/jsonrpclib/jsonclass.py b/jsonrpclib/jsonclass.py
-index 298c3da..1d86d5f 100644
---- a/jsonrpclib/jsonclass.py
-+++ b/jsonrpclib/jsonclass.py
-@@ -129,6 +129,13 @@ def load(obj):
-         except ImportError:
-             raise TranslationError('Could not import %s from module %s.' %
-                                    (json_class_name, json_module_tree))
-+
-+        # The returned class is the top-level module, not the one we really
-+        # want.  (E.g., if we import a.b.c, we now have a.)  Walk through other
-+        # path components to get to b and c.
-+        for i in json_module_parts[1:]:
-+            temp_module = getattr(temp_module, i)
-+
-         json_class = getattr(temp_module, json_class_name)
-     # Creating the object...
-     new_obj = None
--- 
-1.7.3.4
-


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-09-18 13:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-18 13:29 [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonrpclib/files/ David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox