Skip to content

Commit 073e29f

Browse files
committed
Update README.rst
1 parent 7f7c42d commit 073e29f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Mathics3 Module Examples
1010
Loading Module and getting help
1111
+++++++++++++++++++++++++++++++
1212

13-
To enable debugging in Mathics3, install ``mathics3-trepan``.
13+
To enable debugging in Mathics3, install ``Mathics3-Module-trepan``.
1414
Inside a mathics3 session run ``LoadModule["pymathics.trepan"]``.
1515

1616
You can then force a call to the debugger using Mathics3 builtin function ``Debugger[]``.
@@ -19,7 +19,7 @@ Extensive help is available in the debugger using the ``help`` command.
1919

2020
Here is an example of this and calling ``help``:
2121

22-
.. image:: https://github.com/Mathics3/mathics3-debugger/blob/master/screenshots/help-example.png
22+
.. image:: https://github.com/Mathics3/Mathics3-Module-trepan/blob/master/screenshots/help-example.png
2323

2424

2525
Stopping on certain Mathics3 call events
@@ -32,7 +32,7 @@ After loading Next, you may want to set up events that trigger entering the debu
3232

3333
Other events include: "Debugger", "Get", "Numpy", "SymPy", "apply", "evalMethod", and "evaluation".
3434

35-
In the above, ``mpmath->True`` goes into the debugger anytime an mpmath function is called.
35+
In the above, ``mpmath->True`` goes into the debugger anytime an ``mpmath`` function is called.
3636
``Exp[1.0]`` is such a function::
3737

3838
In[3]:= Exp[1.0]
@@ -78,7 +78,7 @@ In contrast to ``DebugActivate``, ``TraceActivate`` prints or traces events.
7878

7979
Now we are ready for some action:
8080

81-
.. image:: https://github.com/Mathics3/mathics3-debugger/blob/master/screenshots/TraceEvaluation.png
81+
.. image:: https://github.com/Mathics3/Mathics3-Module-trepan/blob/master/screenshots/TraceEvaluation.png
8282

8383
Above we trace before an ``evaluate()`` method call and also sometimes show the return value.
8484

@@ -122,7 +122,7 @@ You can change the computation of a value instead of calling a Mathics3 built-in
122122

123123
This is done using the ``set return`` command. Here is an example of that:
124124

125-
.. image:: https://github.com/Mathics3/mathics3-debugger/blob/master/screenshots/traceback-with-Ctrl-C.png
125+
.. image:: https://github.com/Mathics3/Mathics3-Module-trepan/blob/master/screenshots/traceback-with-Ctrl-C.png
126126

127127

128128

@@ -168,7 +168,7 @@ The debugger (and trepan3k) support signal handling. With this, you can set up a
168168

169169
Here is an example:
170170

171-
.. image:: https://github.com/Mathics3/mathics3-debugger/blob/master/screenshots/traceback-with-Ctrl-C.png
171+
.. image:: https://github.com/Mathics3/Mathics-Module-trepan/blob/master/screenshots/traceback-with-Ctrl-C.png
172172

173173

174174
Without the debugger, but with ``trepan3k`` installed, you can use ``Breakpoint[]``, and issue the ``handle`` command. You won't get as nice of a traceback, but it should still work.

admin-tools/make-dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cd ..
2121
source pymathics/trepan/version.py
2222
echo $__version__
2323

24-
pyversion=3.13
24+
pyversion=3.13.5
2525
if ! pyenv local $pyversion ; then
2626
exit $?
2727
fi

pymathics/trepan/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# well as importing into Python. That's why there is no
66
# space around "=" below.
77
# fmt: off
8-
__version__="9.0.0" # noqa
8+
__version__="9.0.1.dev0" # noqa

0 commit comments

Comments
 (0)