summaryrefslogtreecommitdiff
path: root/dev-python/ipython/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-01-04 18:54:09 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-01-04 18:54:09 +0000
commite1e67a5d95d606250a2ca98dec076ecd6e0062d8 (patch)
tree90984b16cea88cb9f1b36e111cf808588f9e9a13 /dev-python/ipython/files
parent92629f2f4536ac235fc005fbfa176526369acbe0 (diff)
downloadbaldeagleos-repo-e1e67a5d95d606250a2ca98dec076ecd6e0062d8.tar.gz
baldeagleos-repo-e1e67a5d95d606250a2ca98dec076ecd6e0062d8.tar.xz
baldeagleos-repo-e1e67a5d95d606250a2ca98dec076ecd6e0062d8.zip
Adding metadata
Diffstat (limited to 'dev-python/ipython/files')
-rw-r--r--dev-python/ipython/files/ipython-8.30.0-python3.13-debugger-pdb-curframe.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-python/ipython/files/ipython-8.30.0-python3.13-debugger-pdb-curframe.patch b/dev-python/ipython/files/ipython-8.30.0-python3.13-debugger-pdb-curframe.patch
deleted file mode 100644
index 8e44fd3d0261..000000000000
--- a/dev-python/ipython/files/ipython-8.30.0-python3.13-debugger-pdb-curframe.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-FAILED IPython/core/tests/test_run.py::TestMagicRunPass::test_run_debug_twice - AttributeError: 'Pdb' object has no attribute 'curframe'. Did you mean: 'botframe'?
-FAILED IPython/core/tests/test_run.py::TestMagicRunPass::test_run_debug_twice_with_breakpoint - AttributeError: 'Pdb' object has no attribute 'curframe'. Did you mean: 'botframe'?
-https://bugs.gentoo.org/946568
-https://github.com/ipython/ipython/pull/14598
-https://github.com/ipython/ipython/commit/c1e945b5bc8fb673109cf32c4f238f6d5e0f5149.patch
-
-From c1e945b5bc8fb673109cf32c4f238f6d5e0f5149 Mon Sep 17 00:00:00 2001
-From: M Bussonnier <bussonniermatthias@gmail.com>
-Date: Sun, 8 Dec 2024 11:37:11 +0100
-Subject: [PATCH] Fix pdb issues in Python 3.13.1
-
-For some reason it is not always set, it was/is a bug in IPython to not
-check.
----
- IPython/core/debugger.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/IPython/core/debugger.py b/IPython/core/debugger.py
-index 1f0d7b2fba..76c42e0230 100644
---- a/IPython/core/debugger.py
-+++ b/IPython/core/debugger.py
-@@ -550,7 +550,7 @@ def _get_frame_locals(self, frame):
- So if frame is self.current_frame we instead return self.curframe_locals
-
- """
-- if frame is self.curframe:
-+ if frame is getattr(self, "curframe", None):
- return self.curframe_locals
- else:
- return frame.f_locals