You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,12 @@
1
+
1.4.0 2025-07-26
2
+
================
3
+
4
+
* Adjust for changes in the Python 3.13 for debugging, and breakage caused by Python 3.13 and its packaging system.
5
+
* Environment variable `TREPAN_PYGMENTS_STYLE` now influences the default style used. This is useful in when going from a shell using Pygments goes into the debugger. In particular, the Mathics3 debugger and ``mathicsscript`` work this way.
6
+
* Add set/show disasmflavor to set disassembly style. "Disasmflavor" is the name `gdb` uses.
Copy file name to clipboardExpand all lines: docs/syntax/command.rst
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ Debugger Command Syntax
4
4
=======================
5
5
6
6
Command names and arguments are separated with spaces like POSIX shell
7
-
syntax. Parentheses around the arguments and commas between them are
8
-
not used. If the first non-blank character of a line starts with ``#``,
7
+
syntax. Parenthesis around the arguments and commas between them are
8
+
not used. If the first non-blank character of a line starts with `#`,
9
9
the command is ignored.
10
10
11
11
Commands are split at wherever ``;;`` appears. This process disregards
@@ -21,7 +21,7 @@ Resolving a command name involves possibly 4 steps. Some steps may be
21
21
omitted depending on early success or some debugger settings:
22
22
23
23
1. The leading token is first looked up in the macro table. If it is in the table, the expansion replaces the current command and
24
-
possibly other commands pushed onto a command queue. Run `help macros` for
24
+
possibly other commands pushed onto a command queue. See `help macros` for
25
25
help on how to define macros, and `info macro` for current macro
26
26
definitions.
27
27
@@ -39,9 +39,9 @@ program at the point it is stopped. However, this is done only if
39
39
40
40
If :ref:`auto eval <set_autoeval>` is not set on, or if running the Python statement produces an error, we display an error message that the entered string is "undefined".
41
41
42
-
If you want a python-, ipython-, or bpython-like shell
43
-
command-processing, it's possible to go into a Python shell with the
44
-
corresponding command. It is also possible to arrange to go into a Python shell every time you enter the debugger.
42
+
If you want python-, ipython-, or bpython-like shell
43
+
command-processing, it's possible to go into a ``python`` shell with the
44
+
corresponding command. It is also possible to arrange to go into a ``python`` shell every time you enter the debugger.
0 commit comments