diff --git a/NEWS.md b/NEWS.md index d054b293..602dc34d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,18 @@ -3.3.4 2019-05-19 Fleetwood at 65 +3.3.5 2019-07-03 Pre Independence Day +===================================== + +Again, most of the work in this is release is thanks to x0ret. + +- Handle annotation args in Python 3.x +- Fix vararg and function signatures in 3.x +- Some 3.x < 3.6 while(1)/if fixes - others remain +- Start reinstating else if -> elif +- LOAD_CONST -> LOAD_CODE where appropriate +- option `weak-verify` is now `syntax-verify` +- code cleanups, start using "blacken" to reformat text + + +3.3.4 2019-06-19 Fleetwood at 65 ================================ Most of the work in this is release is thanks to x0ret. diff --git a/uncompyle6/semantics/customize25.py b/uncompyle6/semantics/customize25.py index 88b6fa50..5b1be0ce 100644 --- a/uncompyle6/semantics/customize25.py +++ b/uncompyle6/semantics/customize25.py @@ -26,8 +26,6 @@ def customize_for_version25(self, version): # Import style for 2.5+ ######################## TABLE_DIRECT.update({ - 'except_cond3' : ( '%|except %c, %c:\n', - (1, 'expr'), (-2, 'store') ), 'importmultiple': ( '%|import %c%c\n', 2, 3 ), 'import_cont' : ( ', %c', 2 ), # With/as is allowed as "from future" thing in 2.5 diff --git a/uncompyle6/version.py b/uncompyle6/version.py index 16c93474..2cb6e9f8 100644 --- a/uncompyle6/version.py +++ b/uncompyle6/version.py @@ -12,4 +12,4 @@ # along with this program. If not, see . # This file is suitable for sourcing inside bash as # well as importing into Python -VERSION='3.3.4' # noqa +VERSION="3.3.5" # noqa