X Tutup
Skip to content

Commit f859758

Browse files
committed
Get ready for release 2.1.1
1 parent 44cd349 commit f859758

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

ChangeLog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
2015-12-27 rocky <rb@dustyfeet.com>
22

3-
* README.rst, test/bytecompile-tests, uncompyle6/opcodes/Makefile,
3+
* ChangeLog, NEWS, README.rst, __pkginfo__.py: Get ready for release
4+
2.1.1
5+
6+
2015-12-27 rocky <rb@dustyfeet.com>
7+
8+
* ChangeLog, NEWS, README.rst, __pkginfo__.py,
9+
test/bytecompile-tests, uncompyle6/opcodes/Makefile,
410
uncompyle6/opcodes/opcode_23.py, uncompyle6/opcodes/opcode_24.py,
511
uncompyle6/opcodes/opcode_25.py, uncompyle6/opcodes/opcode_26.py,
612
uncompyle6/opcodes/opcode_27.py, uncompyle6/opcodes/opcode_32.py,

NEWS

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
uncompyle6 1.0.0 2015-12-27
1+
uncompyle6 2.1.1 2015-12-27
2+
3+
- packaging issues
4+
5+
uncompyle6 2.1.0 2015-12-27
26

37
- Python 3.x deparsing much more solid
48
- Better cross-version deparsing
@@ -7,7 +11,7 @@ Some bugs squashed while other run rampant. Some code cleanup while
711
much more is yet needed. More tests added, but many more are needed.
812

913

10-
uncompyle6 1.0.0 2015-12-11
14+
uncompyle6 2.0.0 2015-12-11
1115

1216
Changes from uncompyle2
1317

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Introduction
1212

1313
*uncompyle6* translates Python byte-code back into equivalent Python
1414
source code. It accepts byte-codes from Python version 2.5 to 3.4 or
15-
so and has been tested on Python running verfsions 2.6, 2.7, 3.3 and
15+
so and has been tested on Python running versions 2.6, 2.7, 3.3 and
1616
3.4.
1717

1818
Why this?
@@ -23,7 +23,7 @@ ability to deparse just fragments and give source-code information
2323
around a given bytecode offset.
2424

2525
I using this to deparse fragments of code inside my trepan_
26-
debuggers_. For that, I need to record text fragements for all
26+
debuggers_. For that, I need to record text fragments for all
2727
byte-code offsets (of interest). This purpose although largely
2828
compatible with the original intention is yet a little bit different.
2929
See this_ for more information.

__pkginfo__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# license = 'BSDish'
2828
mailing_list = 'python-debugger@googlegroups.com'
2929
modname = 'uncompyle6'
30-
packages = ['uncompyle6', 'uncompyle6.opcodes']
30+
packages = ['uncompyle6', 'uncompyle6.opcodes', 'uncompyle6.semantics', 'uncompyle6.scanners', 'uncompyle6.parsers']
3131
py_modules = None
3232
short_desc = 'Python byte-code disassembler and source-code converter'
3333
scripts = ['bin/uncompyle6', 'bin/pydisassemble']
@@ -40,7 +40,7 @@ def get_srcdir():
4040
return os.path.realpath(filename)
4141

4242
ns = {}
43-
version = '2.1.0'
43+
version = '2.1.1'
4444
web = 'https://github.com/rocky/python-uncompyle6/'
4545

4646
# tracebacks in zip files are funky and not debuggable

0 commit comments

Comments
 (0)
X Tutup