aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-chemistry/openbabel-python/files/openbabel-python-2.3.0-py3_iterator.patch')
-rw-r--r--sci-chemistry/openbabel-python/files/openbabel-python-2.3.0-py3_iterator.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/sci-chemistry/openbabel-python/files/openbabel-python-2.3.0-py3_iterator.patch b/sci-chemistry/openbabel-python/files/openbabel-python-2.3.0-py3_iterator.patch
deleted file mode 100644
index 7efc0cab8..000000000
--- a/sci-chemistry/openbabel-python/files/openbabel-python-2.3.0-py3_iterator.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- scripts/openbabel-python.i 2010-08-16 15:05:20.000000000 +0300
-+++ scripts/openbabel-python.i 2011-02-27 14:18:17.000000000 +0200
-@@ -316,6 +316,9 @@
- def __iter__(self):
- return self
-
-+ def __next__(self):
-+ return self.next()
-+
- def next(self):
- if not self.finished:
- b = self.iter.__ref__()