summary refs log tree commit diff
path: root/pkgs/applications/science/math/sage/patches/disable-pexpect-intermittent-failure.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/science/math/sage/patches/disable-pexpect-intermittent-failure.patch')
-rw-r--r--pkgs/applications/science/math/sage/patches/disable-pexpect-intermittent-failure.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/applications/science/math/sage/patches/disable-pexpect-intermittent-failure.patch b/pkgs/applications/science/math/sage/patches/disable-pexpect-intermittent-failure.patch
deleted file mode 100644
index 374c7207919..00000000000
--- a/pkgs/applications/science/math/sage/patches/disable-pexpect-intermittent-failure.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff --git a/src/sage/interfaces/singular.py b/src/sage/interfaces/singular.py
-index 88a33b0349..b3321f0bec 100644
---- a/src/sage/interfaces/singular.py
-+++ b/src/sage/interfaces/singular.py
-@@ -495,24 +495,6 @@ class Singular(ExtraTabCompletion, Expect):
-         """
-         Send an interrupt to Singular. If needed, additional
-         semi-colons are sent until we get back at the prompt.
--
--        TESTS:
--
--        The following works without restarting Singular::
--
--            sage: a = singular(1)
--            sage: _ = singular._expect.sendline('1+')  # unfinished input
--            sage: try:
--            ....:     alarm(0.5)
--            ....:     singular._expect_expr('>')  # interrupt this
--            ....: except KeyboardInterrupt:
--            ....:     pass
--            Control-C pressed.  Interrupting Singular. Please wait a few seconds...
--
--        We can still access a::
--
--            sage: 2*a
--            2
-         """
-         # Work around for Singular bug
-         # http://www.singular.uni-kl.de:8002/trac/ticket/727