summaryrefslogtreecommitdiff
path: root/dev-python/argcomplete/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/argcomplete/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/argcomplete/files')
-rw-r--r--dev-python/argcomplete/files/argcomplete-3.1.6-timeout.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-python/argcomplete/files/argcomplete-3.1.6-timeout.patch b/dev-python/argcomplete/files/argcomplete-3.1.6-timeout.patch
deleted file mode 100644
index 0b2ac120402e..000000000000
--- a/dev-python/argcomplete/files/argcomplete-3.1.6-timeout.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/test/test.py b/test/test.py
-index c89912a..eedfe36 100755
---- a/test/test.py
-+++ b/test/test.py
-@@ -1362,4 +1362,4 @@ class TestBashGlobal(TestBash):
-- install_output = self.sh.run_command(command)
-+ install_output = self.sh.run_command(command, timeout=300)
- self.assertEqual(self.sh.run_command("echo $?"), "0\r\n", install_output)
- command = "test-module"
- if package:
-@@ -1395,8 +1395,8 @@ class Shell:
- def run_command(self, command):
- try:
- self.child.sendline(r"echo -n \#\#\#; {0}; echo -n \#\#\#".format(command))
-- self.child.expect_exact("###", timeout=5)
-- self.child.expect_exact("###", timeout=5)
-+ self.child.expect_exact("###", timeout=30)
-+ self.child.expect_exact("###", timeout=30)
- return self.child.before
- finally:
- # Send Ctrl+C in case we get stuck.