summaryrefslogtreecommitdiff
path: root/libre/sagemath/pexpect-del.patch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-02-01 02:10:38 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-02-01 02:21:14 -0300
commit29b827a60d0abd14d0da1b90a6e7122c372063cd (patch)
treebe96504f94cfb35b6d5e266fafc63fddfebc1a55 /libre/sagemath/pexpect-del.patch
parentf03af127be4b27db3ebeb614a5ac3a0a0d2f516e (diff)
sagemath-7.0-3.parabola1: updating version
* fix contour plots with matplotlib 1.5.1 * drop old patches * bundle a pexpect git snapshot
Diffstat (limited to 'libre/sagemath/pexpect-del.patch')
-rw-r--r--libre/sagemath/pexpect-del.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/libre/sagemath/pexpect-del.patch b/libre/sagemath/pexpect-del.patch
deleted file mode 100644
index 3019968d2..000000000
--- a/libre/sagemath/pexpect-del.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -ru src/pexpect.py src.del/pexpect.py
---- src/pexpect.py 2005-11-17 15:36:09.000000000 +0100
-+++ src.del/pexpect.py 2012-01-13 10:24:01.000000000 +0100
-@@ -341,7 +341,10 @@
- """
- if self.closed:
- return
-- self.close()
-+ try:
-+ self.close()
-+ except:
-+ pass
-
- def __str__(self):
- """This returns the current state of the pexpect object as a string.