Skip to content

Commit

Permalink
Get ready for release 1.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Jul 22, 2024
1 parent 19aa3c5 commit 7c29319
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 12 deletions.
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
trepan 1.2.9 2022-07-22
=======================

* track xdis api changes and uncompyle6 improvements
* Add set asmfmt for showing assembly format
* Better conformance with trepan3k

trepan 1.2.8 2022-06-05
=======================

Expand Down
5 changes: 3 additions & 2 deletions admin-tools/make-dist-older.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ done
# Tarballs can get created from the above setup, so make sure to remove them since we want
# the tarball from master.

tarball=dist/${PACKAGE}-$__version__-tar.gz
python ./setup.py sdist
tarball=dist/${PACKAGE}-$__version__.tar.gz
if [[ -f $tarball ]]; then
rm -v dist/${PACKAGE}-$__version__-tar.gz
mv -v $tarball dist/${PACKAGE}_24-$__version__.tar.gz
fi
2 changes: 1 addition & 1 deletion test/data/highlight.right
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(gcd.py:10): <module>
-> 10 """
-> 10 """
Set basename (short filenames) in debugger output is on.
Set event tracing is on.
Set stopping before def or class statements is off.
Expand Down
14 changes: 7 additions & 7 deletions test/data/step.right
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
(gcd.py:10): <module>
-> 10 """
-> 10 """
Set basename (short filenames) in debugger output is on.
Set event tracing is on.
Set stopping before def or class statements is off.
Set confirmation of potentially dangerous operations is off.
line - gcd.py:10
line - gcd.py:11
(gcd.py:11): <module>
-- 11 import sys
11 -> import sys
-- 11 import sys
11 -> import sys
Set stopping before def or class statements is on.
line - gcd.py:13
line - gcd.py:26
line - gcd.py:40
(gcd.py:40): <module>
-- 40 if __name__=='__main__':
40 -> if __name__=='__main__':
-- 40 if __name__=='__main__':
40 -> if __name__=='__main__':
Set stopping before def or class statements is off.
line - gcd.py:41
(gcd.py:41): <module>
-- 41 check_args()
41 -> check_args()
-- 41 check_args()
41 -> check_args()
trepan2: That's all, folks...
2 changes: 1 addition & 1 deletion test/integration/test-general.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_step(self):
right_template = None
result = Mhelper.run_debugger(
testname="step",
dbgr_opts="--basename --highlight=plain",
dbgr_opts="--basename --highlight=plain --nx",
python_file="gcd.py",
right_template=right_template,
)
Expand Down
2 changes: 1 addition & 1 deletion test/integration/test-highlight.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_macro(self):
right_template = None
result = Mhelper.run_debugger(
testname="highlight",
dbgr_opts="--basename " + "--highlight=plain --nx",
dbgr_opts="--basename --highlight=plain --style=none --nx",
python_file="gcd.py",
right_template=right_template,
)
Expand Down

0 comments on commit 7c29319

Please sign in to comment.