Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/scipy/files: scipy-0.7.1-weave.patch
Date: Thu, 25 Feb 2010 04:05:54
Message-Id: E1NkUz3-0007JL-6T@stork.gentoo.org
1 bicatali 10/02/25 04:05:53
2
3 Added: scipy-0.7.1-weave.patch
4 Log:
5 Added a patch for a working weave, bug #304799
6 (Portage version: 2.2_rc63/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sci-libs/scipy/files/scipy-0.7.1-weave.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/files/scipy-0.7.1-weave.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/files/scipy-0.7.1-weave.patch?rev=1.1&content-type=text/plain
13
14 Index: scipy-0.7.1-weave.patch
15 ===================================================================
16 Index: /trunk/scipy/io/dumbdbm_patched.py
17 ===================================================================
18 --- /trunk/scipy/io/dumbdbm_patched.py (revision 3521)
19 +++ /trunk/scipy/io/dumbdbm_patched.py (revision 5967)
20 @@ -78,4 +78,7 @@
21 return dat
22
23 + def __contains__(self, key):
24 + return key in self._index
25 +
26 def _addval(self, val):
27 f = _open(self._datfile, 'rb+')