X Tutup
Skip to content

Commit fa48c9f

Browse files
committed
Get ready for release 2.3.1
1 parent 0a32a16 commit fa48c9f

File tree

4 files changed

+80
-4
lines changed

4 files changed

+80
-4
lines changed

ChangeLog

Lines changed: 64 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,69 @@
1+
2016-04-30 rocky <rocky@gnu.org>
2+
3+
* README.rst, __pkginfo__.py: Get ready for release 2.3.0
4+
5+
2016-04-30 rocky <rocky@gnu.org>
6+
7+
* uncompyle6/parsers/astnode.py, uncompyle6/parsers/parse3.py,
8+
uncompyle6/semantics/pysource.py: Python 3.0..3.2 bug in
9+
LOAD_FAST/STORE_LOCAL LOAD_FAST '__locals__' STORE_LOCALS '' Also have to adjust doc constants for this crap astnode.py: minor format change
10+
11+
2016-04-30 rocky <rocky@gnu.org>
12+
13+
* test/Makefile, test/simple_source/def/06_classbug.py,
14+
test/test_pythonlib.py: Test optimized Python code and Python 3.2
15+
16+
2016-04-30 rocky <rocky@gnu.org>
17+
18+
* uncompyle6/parsers/parse3.py: Pevious commit grammar change is
19+
Python 3.5 and up
20+
21+
2016-04-30 rocky <rocky@gnu.org>
22+
23+
* uncompyle6/parsers/parse3.py: Python 3.5 if statments decompyle Sometimes it doesn't need JUMP_FORWARD _come_from _come_from For example: def handle2(module): if module == 'foo': try: module = 1 except ImportError as exc: module = exc return module And: if __name__: for i in (1, 2): x = 3
24+
25+
2016-04-28 rocky <rocky@gnu.org>
26+
27+
* requirements.txt, uncompyle6/parser.py,
28+
uncompyle6/parsers/parse2.py, uncompyle6/parsers/parse3.py,
29+
uncompyle6/semantics/fragments.py, uncompyle6/semantics/pysource.py:
30+
spark -> spark_parser
31+
32+
2016-04-28 rocky <rocky@gnu.org>
33+
34+
* uncompyle6/parsers/spark.py: Really remove spark - Use external
35+
package instead
36+
37+
2016-04-27 R. Bernstein <rocky@users.noreply.github.com>
38+
39+
* : Merge pull request #8 from rocky/external-spark External spark
40+
41+
2016-04-27 rocky <rocky@gnu.org>
42+
43+
* .travis.yml, circle.yml: Note dependencies on spark
44+
45+
2016-04-27 rocky <rocky@gnu.org>
46+
47+
* .gitignore, README.rst, requirements.txt, uncompyle6/parser.py,
48+
uncompyle6/parsers/astnode.py, uncompyle6/parsers/parse2.py,
49+
uncompyle6/parsers/parse3.py, uncompyle6/semantics/fragments.py,
50+
uncompyle6/semantics/pysource.py: Use external spark now.
51+
52+
2016-04-20 rocky <rocky@gnu.org>
53+
54+
* circle.yml: Back to 2.7.8
55+
56+
2016-04-20 rocky <rocky@gnu.org>
57+
58+
* circle.yml: Try python 2.7.10
59+
60+
2016-04-19 rocky <rocky@gnu.org>
61+
62+
* README.rst: Remove link to Mysterie uncompyle2 per request
63+
164
2016-04-19 rocky <rocky@gnu.org>
265

3-
* __pkginfo__.py: Get ready for release 2.2.0
66+
* ChangeLog, NEWS, __pkginfo__.py: Get ready for release 2.2.0
467

568
2016-04-18 rocky <rocky@gnu.org>
669

NEWS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
uncompyle6 2.2.1 2016-04-30
2+
3+
- Require spark_parser >= 1.1.0
4+
5+
uncompyle6 2.2.0 2016-04-30
6+
7+
- Spark is no longer here but pulled separate package spark_parse
8+
- Python 3 parsing fixes
9+
- More tests
10+
111
uncompyle6 2.2.0 2016-04-02
212

313
- Support single-mode (in addtion to exec-mode) compilation

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
|downloads| |buildstatus|
1+
|buildstatus|
22

33
uncompyle6
44
==========

__pkginfo__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Things that change more often go here.
1111
copyright = """
12-
Copyright (C) 2015 Rocky Bernstein <rb@dustyfeet.com>.
12+
Copyright (C) 2015, 2016 Rocky Bernstein <rb@dustyfeet.com>.
1313
"""
1414

1515
classifiers = ['Development Status :: 3 - Alpha',
@@ -31,6 +31,9 @@
3131
author = "Rocky Bernstein, Hartmut Goebel, John Aycock, and others"
3232
author_email = "rb@dustyfeet.com"
3333
ftp_url = None
34+
install_requires = ['python-spark >= 1.1.0']
35+
license = 'GPL'
36+
3437
# license = 'BSDish'
3538
mailing_list = 'python-debugger@googlegroups.com'
3639
modname = 'uncompyle6'
@@ -47,7 +50,7 @@ def get_srcdir():
4750
return os.path.realpath(filename)
4851

4952
ns = {}
50-
version = '2.2.0'
53+
version = '2.3.1'
5154
web = 'https://github.com/rocky/python-uncompyle6/'
5255

5356
# tracebacks in zip files are funky and not debuggable

0 commit comments

Comments
 (0)
X Tutup