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.
Files changed (55) hide show
  1. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/PKG-INFO +3 -1
  2. {textual_debugger-0.1.0/src/tdb → textual_debugger-0.1.1}/README.md +2 -0
  3. {textual_debugger-0.1.0 → textual_debugger-0.1.1/src/tdb}/README.md +2 -0
  4. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/__init__.py +1 -1
  5. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/PKG-INFO +3 -1
  6. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/LICENSE +0 -0
  7. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/pyproject.toml +0 -0
  8. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/setup.cfg +0 -0
  9. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/__main__.py +0 -0
  10. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app.py +0 -0
  11. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app_handlers/__init__.py +0 -0
  12. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app_handlers/dap_events.py +0 -0
  13. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app_handlers/inspection.py +0 -0
  14. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/app_helpers.py +0 -0
  15. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/breakpoint_hook.py +0 -0
  16. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/cli.py +0 -0
  17. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/__init__.py +0 -0
  18. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/client.py +0 -0
  19. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/messages.py +0 -0
  20. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/protocol.py +0 -0
  21. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/dap/types.py +0 -0
  22. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/inspection.py +0 -0
  23. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/keybindings/__init__.py +0 -0
  24. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/persist.py +0 -0
  25. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/post_mortem.py +0 -0
  26. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/__init__.py +0 -0
  27. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/app.py +0 -0
  28. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/event_handler.py +0 -0
  29. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/handlers.py +0 -0
  30. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/rpc_types.py +0 -0
  31. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/server/runner.py +0 -0
  32. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/__init__.py +0 -0
  33. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/controller.py +0 -0
  34. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/event_bus.py +0 -0
  35. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/messages.py +0 -0
  36. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/state.py +0 -0
  37. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/session/textual_handler.py +0 -0
  38. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/__init__.py +0 -0
  39. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/async_tasks_modal.py +0 -0
  40. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/breakpoint_view.py +0 -0
  41. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/code_view.py +0 -0
  42. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/console_view.py +0 -0
  43. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/evaluate_console.py +0 -0
  44. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/menu_bar.py +0 -0
  45. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/modals.py +0 -0
  46. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/processes_modal.py +0 -0
  47. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/stack_view.py +0 -0
  48. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/status_bar.py +0 -0
  49. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/threads_modal.py +0 -0
  50. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/tdb/widgets/variable_view.py +0 -0
  51. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/SOURCES.txt +0 -0
  52. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/dependency_links.txt +0 -0
  53. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/entry_points.txt +0 -0
  54. {textual_debugger-0.1.0 → textual_debugger-0.1.1}/src/textual_debugger.egg-info/requires.txt +0 -0
  55. {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.0
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
  from tdb.breakpoint_hook import breakpoint
2
2
  from tdb.post_mortem import exception_hook
3
3
 
4
- __version__ = "0.1.0"
4
+ __version__ = "0.1.1"
5
5
 
6
6
  __all__ = ["breakpoint", "exception_hook"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: textual-debugger
3
- Version: 0.1.0
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