textual-debugger 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/PKG-INFO +3 -1
- {textual_debugger-0.1.0/src/tdb → textual_debugger-0.1.1}/README.md +2 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1/src/tdb}/README.md +2 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/__init__.py +1 -1
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/PKG-INFO +3 -1
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/LICENSE +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/pyproject.toml +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/setup.cfg +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/__main__.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app_handlers/__init__.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app_handlers/dap_events.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app_handlers/inspection.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app_helpers.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/breakpoint_hook.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/cli.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/__init__.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/client.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/messages.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/protocol.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/types.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/inspection.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/keybindings/__init__.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/persist.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/post_mortem.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/__init__.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/app.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/event_handler.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/handlers.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/rpc_types.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/runner.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/__init__.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/controller.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/event_bus.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/messages.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/state.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/textual_handler.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/__init__.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/async_tasks_modal.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/breakpoint_view.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/code_view.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/console_view.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/evaluate_console.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/menu_bar.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/modals.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/processes_modal.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/stack_view.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/status_bar.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/threads_modal.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/variable_view.py +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/SOURCES.txt +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/dependency_links.txt +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/entry_points.txt +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/requires.txt +0 -0
- {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: textual-debugger
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A TUI Python debugger based on textual and debugpy
|
|
5
5
|
Author-email: Al Danial <al.danial@gmail.com>
|
|
6
6
|
License: textual-debugger is licensed to you under the MIT/X Consortium license:
|
|
@@ -130,6 +130,8 @@ as open source.
|
|
|
130
130
|
Videos:
|
|
131
131
|
- [tdb basics](https://youtu.be/2_qf2WZDHuA) views, keybindings, breakpoints, stepping, variable modification, call stack
|
|
132
132
|
- [asyncio tasks](https://youtu.be/vM4tODuqMGg) inspect asyncio tasks and their wait graph; code mod to allow pause
|
|
133
|
+
- [threads and processes](https://youtu.be/J8LOARLs2oQ) inspect variables and call stacks in multiple threads and processes
|
|
134
|
+
- [external terminal](https://youtu.be/121aihjAQ8g) run the debuggee in a separate terminal--ideal for debugging TUI applications
|
|
133
135
|
|
|
134
136
|
## Installation
|
|
135
137
|
|
|
@@ -65,6 +65,8 @@ as open source.
|
|
|
65
65
|
Videos:
|
|
66
66
|
- [tdb basics](https://youtu.be/2_qf2WZDHuA) views, keybindings, breakpoints, stepping, variable modification, call stack
|
|
67
67
|
- [asyncio tasks](https://youtu.be/vM4tODuqMGg) inspect asyncio tasks and their wait graph; code mod to allow pause
|
|
68
|
+
- [threads and processes](https://youtu.be/J8LOARLs2oQ) inspect variables and call stacks in multiple threads and processes
|
|
69
|
+
- [external terminal](https://youtu.be/121aihjAQ8g) run the debuggee in a separate terminal--ideal for debugging TUI applications
|
|
68
70
|
|
|
69
71
|
## Installation
|
|
70
72
|
|
|
@@ -65,6 +65,8 @@ as open source.
|
|
|
65
65
|
Videos:
|
|
66
66
|
- [tdb basics](https://youtu.be/2_qf2WZDHuA) views, keybindings, breakpoints, stepping, variable modification, call stack
|
|
67
67
|
- [asyncio tasks](https://youtu.be/vM4tODuqMGg) inspect asyncio tasks and their wait graph; code mod to allow pause
|
|
68
|
+
- [threads and processes](https://youtu.be/J8LOARLs2oQ) inspect variables and call stacks in multiple threads and processes
|
|
69
|
+
- [external terminal](https://youtu.be/121aihjAQ8g) run the debuggee in a separate terminal--ideal for debugging TUI applications
|
|
68
70
|
|
|
69
71
|
## Installation
|
|
70
72
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: textual-debugger
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A TUI Python debugger based on textual and debugpy
|
|
5
5
|
Author-email: Al Danial <al.danial@gmail.com>
|
|
6
6
|
License: textual-debugger is licensed to you under the MIT/X Consortium license:
|
|
@@ -130,6 +130,8 @@ as open source.
|
|
|
130
130
|
Videos:
|
|
131
131
|
- [tdb basics](https://youtu.be/2_qf2WZDHuA) views, keybindings, breakpoints, stepping, variable modification, call stack
|
|
132
132
|
- [asyncio tasks](https://youtu.be/vM4tODuqMGg) inspect asyncio tasks and their wait graph; code mod to allow pause
|
|
133
|
+
- [threads and processes](https://youtu.be/J8LOARLs2oQ) inspect variables and call stacks in multiple threads and processes
|
|
134
|
+
- [external terminal](https://youtu.be/121aihjAQ8g) run the debuggee in a separate terminal--ideal for debugging TUI applications
|
|
133
135
|
|
|
134
136
|
## Installation
|
|
135
137
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/requires.txt
RENAMED
|
File without changes
|
{textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/top_level.txt
RENAMED
|
File without changes
|