[pytables] 01/09: Fix inheritance order

Antonio Valentino a_valentino-guest at moszumanska.debian.org
Sun Mar 27 08:24:20 UTC 2016


This is an automated email from the git hooks/post-receive script.

a_valentino-guest pushed a commit to branch master
in repository pytables.

commit f35ae68d3e541ae395a4ced1135d32afe137c905
Author: Antonio Valentino <antonio.valentino at tiscali.it>
Date:   Sat Mar 26 07:55:02 2016 +0000

    Fix inheritance order
---
 debian/changelog                                    |  8 ++++++++
 .../patches/0005-fix-index-inheritance-order.patch  | 21 +++++++++++++++++++++
 debian/patches/series                               |  1 +
 3 files changed, 30 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index af91a4e..94333f2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+pytables (3.2.2-2) UNRELEASED; urgency=medium
+
+  * debian/patches
+    - new 0005-fix-index-inheritance-order.patch to fix the
+      inheritance order of the Index class (Closes: #818501)
+
+ -- Antonio Valentino <antonio.valentino at tiscali.it>  Sat, 26 Mar 2016 07:52:37 +0000
+
 pytables (3.2.2-1) unstable; urgency=medium
 
   * New upstream release (Closes: #800466)
diff --git a/debian/patches/0005-fix-index-inheritance-order.patch b/debian/patches/0005-fix-index-inheritance-order.patch
new file mode 100644
index 0000000..9e92f92
--- /dev/null
+++ b/debian/patches/0005-fix-index-inheritance-order.patch
@@ -0,0 +1,21 @@
+From: Antonio Valentino <antonio.valentino at tiscali.it>
+Date: Sat, 26 Mar 2016 08:51:43 +0100
+Subject: fix index inheritance order
+
+---
+ tables/index.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tables/index.py b/tables/index.py
+index 712f773..2b07f77 100644
+--- a/tables/index.py
++++ b/tables/index.py
+@@ -105,7 +105,7 @@ def _table_column_pathname_of_index(indexpathname):
+ _tableColumnPathnameOfIndex = previous_api(_table_column_pathname_of_index)
+ 
+ 
+-class Index(NotLoggedMixin, indexesextension.Index, Group):
++class Index(NotLoggedMixin, Group, indexesextension.Index):
+     """Represents the index of a column in a table.
+ 
+     This class is used to keep the indexing information for columns in a Table
diff --git a/debian/patches/series b/debian/patches/series
index 5900800..b643cda 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,3 +2,4 @@
 0002-Use-system-compression-libs.patch
 0003-Never-use-the-msse2-flag-explicitly.patch
 0004-Do-not-fetch-icons-for-external-web-sites.patch
+0005-fix-index-inheritance-order.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pytables.git



More information about the debian-science-commits mailing list