Skip to content

Commit

Permalink
Get ready for release 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Jul 17, 2021
1 parent 374d09a commit 894bdef
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
19 changes: 19 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
1.2.6 2021-07-17
================

* We now use `decompyle3` as our decompiler for Python 3.7 and 3.8 instead of `uncompyle6`
* Set acceptable min/max values (2) on `set substitute` command.
* Go over library pretty print routine (`pp`) to handle large objects better.
* Remove silly `pp` message about how it can't print a simple array: who cares?
* Go over README.rst to revise what's cool about this.
* The usual stuff have using black to format, and add more annotation types


1.2.5 2021-06-17
================

Small bug fixes. See #34 and #36

We now split off code internally to handle Python3 before 3.6 so we can start to modernize code and add type annotations.


1.2.3 2021-03-15
================

Expand Down
2 changes: 1 addition & 1 deletion admin-tools/pyenv-newer-versions
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
exit 1
fi

export PYVERSIONS='3.6.13 3.7.10 3.8.10 3.9.5'
export PYVERSIONS='3.6.14 3.7.11 3.8.11 3.9.6'
1 change: 0 additions & 1 deletion trepan/lib/pp.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ def pp(val, display_width, msg_nocr, msg, prefix=None):
pass
if isinstance(val, list) or isinstance(val, tuple):
if not pprint_simple_array(val, display_width, msg_nocr, msg, " "):
print("Can't print_simple_array")
msg(" " + pprint.pformat(val)[:MAX_PP_LENGTH])
pass
pass
Expand Down
2 changes: 1 addition & 1 deletion trepan/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# debugger version number.

# fmt: off
__version__="1.2.6.dev0" # noqa
__version__="1.2.6" # noqa

0 comments on commit 894bdef

Please sign in to comment.