summaryrefslogtreecommitdiffstats
path: root/powerline/listers/pdb.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:40:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:40:16 +0000
commit3f25952c13d5847d510c0cae22a8ba876638d570 (patch)
tree02f505f016ed5a1029277dcae520d5e2a75906fb /powerline/listers/pdb.py
parentInitial commit. (diff)
downloadpowerline-upstream/2.8.3.tar.xz
powerline-upstream/2.8.3.zip
Adding upstream version 2.8.3.upstream/2.8.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'powerline/listers/pdb.py')
-rw-r--r--powerline/listers/pdb.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/powerline/listers/pdb.py b/powerline/listers/pdb.py
new file mode 100644
index 0000000..24e11ea
--- /dev/null
+++ b/powerline/listers/pdb.py
@@ -0,0 +1,37 @@
+# vim:fileencoding=utf-8:noet
+from __future__ import (unicode_literals, division, absolute_import, print_function)
+
+from powerline.theme import requires_segment_info
+
+
+@requires_segment_info
+def frame_lister(pl, segment_info, full_stack=False, maxframes=3):
+ '''List all frames in segment_info format
+
+ :param bool full_stack:
+ If true, then all frames in the stack are listed. Normally N first
+ frames are discarded where N is a number of frames present at the first
+ invocation of the prompt minus one.
+ :param int maxframes:
+ Maximum number of frames to display.
+ '''
+ if full_stack:
+ initial_stack_length = 0
+ frames = segment_info['pdb'].stack
+ else:
+ initial_stack_length = segment_info['initial_stack_length']
+ frames = segment_info['pdb'].stack[initial_stack_length:]
+
+ if len(frames) > maxframes:
+ frames = frames[-maxframes:]
+
+ return (
+ (
+ {
+ 'curframe': frame[0],
+ 'initial_stack_length': initial_stack_length,
+ },
+ {}
+ )
+ for frame in frames
+ )