diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/ipy/files | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-python/ipy/files')
| -rw-r--r-- | dev-python/ipy/files/ipy-1.01-setDaemon-daemon.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-python/ipy/files/ipy-1.01-setDaemon-daemon.patch b/dev-python/ipy/files/ipy-1.01-setDaemon-daemon.patch deleted file mode 100644 index fb58aa4afb46..000000000000 --- a/dev-python/ipy/files/ipy-1.01-setDaemon-daemon.patch +++ /dev/null @@ -1,24 +0,0 @@ -https://github.com/autocracy/python-ipy/pull/76/commits/109ac8c6c1b19243047c262beeabc7d72997e2d1 -From 109ac8c6c1b19243047c262beeabc7d72997e2d1 Mon Sep 17 00:00:00 2001 -From: Karthikeyan Singaravelan <tir.karthi@gmail.com> -Date: Sat, 14 Aug 2021 05:01:15 +0000 -Subject: [PATCH] Set daemon attribute instead of using setDaemon method that - was deprecated in Python 3.10 - ---- - test/test_IPy.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/test/test_IPy.py b/test/test_IPy.py -index 8dbbd97..769fd7e 100644 ---- a/test/test_IPy.py -+++ b/test/test_IPy.py -@@ -785,7 +785,7 @@ def run(self): - self.result = default - - it = InterruptableThread() -- it.setDaemon(True) -+ it.daemon = True - it.start() - it.join(timeout_duration) - if hasattr(it, 'is_alive'): |
