Skip to content

Commit 894bdef

Browse files
committed
Get ready for release 1.2.6
1 parent 374d09a commit 894bdef

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

NEWS.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
1.2.6 2021-07-17
2+
================
3+
4+
* We now use `decompyle3` as our decompiler for Python 3.7 and 3.8 instead of `uncompyle6`
5+
* Set acceptable min/max values (2) on `set substitute` command.
6+
* Go over library pretty print routine (`pp`) to handle large objects better.
7+
* Remove silly `pp` message about how it can't print a simple array: who cares?
8+
* Go over README.rst to revise what's cool about this.
9+
* The usual stuff have using black to format, and add more annotation types
10+
11+
12+
1.2.5 2021-06-17
13+
================
14+
15+
Small bug fixes. See #34 and #36
16+
17+
We now split off code internally to handle Python3 before 3.6 so we can start to modernize code and add type annotations.
18+
19+
120
1.2.3 2021-03-15
221
================
322

admin-tools/pyenv-newer-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
77
exit 1
88
fi
99

10-
export PYVERSIONS='3.6.13 3.7.10 3.8.10 3.9.5'
10+
export PYVERSIONS='3.6.14 3.7.11 3.8.11 3.9.6'

trepan/lib/pp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ def pp(val, display_width, msg_nocr, msg, prefix=None):
6565
pass
6666
if isinstance(val, list) or isinstance(val, tuple):
6767
if not pprint_simple_array(val, display_width, msg_nocr, msg, " "):
68-
print("Can't print_simple_array")
6968
msg(" " + pprint.pformat(val)[:MAX_PP_LENGTH])
7069
pass
7170
pass

trepan/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# debugger version number.
66

77
# fmt: off
8-
__version__="1.2.6.dev0" # noqa
8+
__version__="1.2.6" # noqa

0 commit comments

Comments
 (0)