X Tutup
Skip to content

Commit 59b597e

Browse files
committed
Get ready for release 2.9.2
1 parent cb8ffa5 commit 59b597e

File tree

5 files changed

+84
-5
lines changed

5 files changed

+84
-5
lines changed

ChangeLog

Lines changed: 72 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,77 @@
1+
2016-10-15 rocky <rb@dustyfeet.com>
2+
3+
* uncompyle6/version.py: Get ready for release 2.9.2
4+
5+
2016-10-14 rocky <rb@dustyfeet.com>
6+
7+
* : commit a7ef513849cc2564b35636d3865561242e46e63f Author: rocky
8+
<rb@dustyfeet.com> Date: Fri Oct 14 21:34:55 2016 -0400
9+
10+
2016-10-14 rocky <rb@dustyfeet.com>
11+
12+
* uncompyle6/parsers/parse26.py: Python 2.6- _ifstmst_jump bug
13+
14+
2016-10-13 rocky <rb@dustyfeet.com>
15+
16+
* uncompyle6/semantics/pysource.py: Pretty-print constant tuples
17+
18+
2016-10-13 rocky <rb@dustyfeet.com>
19+
20+
* uncompyle6/parsers/parse26.py, uncompyle6/scanners/scanner2.py,
21+
uncompyle6/scanners/scanner26.py: 2.6 and before: try_middle
22+
come_from per except
23+
24+
2016-10-13 rocky <rb@dustyfeet.com>
25+
26+
* uncompyle6/parsers/parse26.py, uncompyle6/scanners/scanner2.py,
27+
uncompyle6/scanners/scanner26.py: 2.6 try statement (and below) They may neeed arbitrary come_froms for each except clause
28+
29+
2016-10-13 rocky <rb@dustyfeet.com>
30+
31+
* uncompyle6/semantics/pysource.py: Bug in handling kv, kv2
32+
33+
2016-10-13 rocky <rb@dustyfeet.com>
34+
35+
* test/simple_source/stmts/08_source_linebreaks.py,
36+
uncompyle6/semantics/pysource.py: Start to track line breaks on
37+
lists
38+
39+
2016-10-11 rocky <rb@dustyfeet.com>
40+
41+
* uncompyle6/semantics/fragments.py,
42+
uncompyle6/semantics/pysource.py: DRY fragments.py preorder code pysource.py: doc typo
43+
44+
2016-10-11 rocky <rb@dustyfeet.com>
45+
46+
* __pkginfo__.py, requirements.txt: Need xdis 3.0.2 for Python 1.5
47+
bug fixes
48+
49+
2016-10-11 rocky <rb@dustyfeet.com>
50+
51+
* __pkginfo__.py, requirements.txt, test/Makefile,
52+
test/test_pythonlib.py, uncompyle6/scanners/scanner26.py: Fix Python
53+
1.5 bytecode deparse Need xdis 3.0.2 though since the bug is really there.
54+
55+
2016-10-11 rocky <rb@dustyfeet.com>
56+
57+
* test/Makefile, test/test_pythonlib.py,
58+
uncompyle6/scanners/scanner26.py: Fix python 1.5 decompile bugs ... add bytecode 1.5 tests from decompyle
59+
160
2016-10-10 rocky <rb@dustyfeet.com>
261

3-
* README.rst, __pkginfo__.py, requirements.txt,
62+
* uncompyle6/semantics/fragments.py,
63+
uncompyle6/semantics/pysource.py: Map expression with
64+
source-directed linebreaks ... for Python 3.4 and 3.5
65+
66+
2016-10-10 rocky <rb@dustyfeet.com>
67+
68+
* uncompyle6/semantics/fragments.py,
69+
uncompyle6/semantics/pysource.py: Start using source linebreaks in
70+
formatting... .. large literals like maps and dicts, and tuples
71+
72+
2016-10-10 rocky <rb@dustyfeet.com>
73+
74+
* ChangeLog, NEWS, README.rst, __pkginfo__.py, requirements.txt,
475
uncompyle6/version.py: Get ready for release 2.9.1
576

677
2016-10-10 rocky <rb@dustyfeet.com>

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
uncompyle6 2.9.2 2016-10-15
2+
3+
- use source-code line breaks to assist in where to break
4+
in tuples and maps
5+
- Fix Python 1.5 decompyle bugs
6+
- Fix some Python 2.6 and below bugs
7+
- DRY fragments.py code a little
8+
19
uncompyle6 2.9.1 2016-10-09
210

311
- Improved Python 1.5 decompiling

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
]}
3939
ftp_url = None
4040
install_requires = ['spark-parser >= 1.4.0',
41-
'xdis >= 3.0.2']
41+
'xdis >= 3.1.0']
4242
license = 'MIT'
4343
mailing_list = 'python-debugger@googlegroups.com'
4444
modname = 'uncompyle6'

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
spark-parser >= 1.4.0
2-
xdis >= 3.0.2
1+
# Pick up stuff from setup.py
2+
-e .

uncompyle6/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This file is suitable for sourcing inside bash as
22
# well as importing into Python
3-
VERSION='2.9.1'
3+
VERSION='2.9.2'

0 commit comments

Comments
 (0)
X Tutup