Commit Graph

540 Commits

Author SHA1 Message Date
Michael Hansen
669b5bcd41 Don't print an error if 'tests' directory already exists 2015-04-17 18:45:05 -07:00
Michael Hansen
a2f549a89e Add docstring test case for Python 2.7 2015-04-17 18:43:50 -07:00
Michael Hansen
bbed2dc0fd Merge remote-tracking branch 'gurnec/docstrings' 2015-04-17 18:39:34 -07:00
Michael Hansen
486629dda0 Tabs -> spaces 2015-04-17 18:37:37 -07:00
mancoast
eb04199d98 Test for qualified name of function 2015-04-17 09:51:00 -04:00
Christopher Gurnee
b2e5e77c48 Support function docstrings 2015-01-28 14:35:18 -05:00
Christopher Gurnee
7e03be30a4 Fixes for module and class docstrings 2015-01-28 13:35:17 -05:00
Michael Hansen
805caa7ca0 Merge pull request #54 from mancoast/master
Magic Number 34
2014-12-13 10:05:05 -08:00
mancoast
b7dc792499 Magic Number 34
Adjust Python 3.4 Magic Number
2014-12-13 10:42:30 -05:00
Michael Hansen
6275a874f6 Fix #51 by adding more precise build instructions 2014-12-03 18:07:27 -08:00
Michael Hansen
32a14d55fa Clean up some CMakeLists stuff 2014-06-10 19:38:32 -07:00
Michael Hansen
7dcd8b9c41 Update readme 2014-06-10 19:26:53 -07:00
Michael Hansen
4d21654134 Switch build system to CMake 2014-06-10 19:20:56 -07:00
Michael Hansen
36cf09ca82 Minor style cleanup 2014-06-10 18:28:28 -07:00
Michael Hansen
6787d57a28 Merge pull request #48 from Zlodiy/master
Alternative solution for PycCFloat and PycCComplex using union
2014-06-04 21:20:51 -07:00
Zlodiy
cbfd5e980e Alternative solution using union 2014-06-05 15:11:06 +11:00
Zlodiy
f3100a8bd1 Alternative solution using union 2014-06-05 12:26:16 +11:00
Zlodiy
eb11934f6a Alternative solution using union 2014-06-05 12:19:19 +11:00
Zlodiy
5cd3bb8626 Alternative solution using union 2014-06-05 12:17:06 +11:00
Zlodiy
67eaa4fddd Alternative solution using union 2014-06-05 12:12:46 +11:00
Michael Hansen
820397f9bf Interned strings and ASCII literals are always in the native format 2014-01-21 00:47:11 -08:00
Michael Hansen
176a049a68 Support new marshal types from Python 3.4 2014-01-21 00:42:37 -08:00
Michael Hansen
6ecbcfb564 Add documentation and initial framework for Python 3.4 support 2013-11-27 14:10:05 -08:00
Michael Hansen
ad03ec3034 Fixes for large operands (> 0x7fff). Closes #34 2013-08-06 22:16:28 -07:00
Michael Hansen
5e4b2fcf9c Merge pull request #32 from charlietang98/patch-1
Empty stack fixes in ASTree.cpp
2013-07-23 17:36:14 -07:00
charlietang98
7d8fad3cc7 Update ASTree.cpp
trim whitespace from blank line
2013-07-23 13:16:49 -04:00
charlietang98
e1667b4300 Update ASTree.cpp
trim white-space from blank lines, and a space after the if
2013-07-22 22:23:45 -04:00
charlietang98
b75411b5bf Update ASTree.cpp
fixed 1. deque iterator not dereferencable, 2. crash at for statement
2013-07-22 16:11:59 -04:00
Michael Hansen
f71d6d8d27 Fix for VS2012 re-ordering getByte() calls in Release mode. Fixes #23 2013-06-30 12:54:35 -07:00
Michael Hansen
a46c5ec66d Merge pull request #30 from dpogue/lambdas
Lambda fix and test cases
2013-06-29 12:12:25 -07:00
Darryl Pogue
2af14ddb8c Fixes pointed out by @zrax. 2013-06-29 00:22:59 -07:00
Darryl Pogue
4b335fb248 Fix for the lambda assignment issue.
Refs #27.
2013-06-28 23:22:25 -07:00
Darryl Pogue
4a64f7fee9 Test case for the lambda assignment issue. 2013-06-28 23:21:57 -07:00
Darryl Pogue
0a85038ec8 Test case for the tuple iterator fix. 2013-06-28 23:21:39 -07:00
Darryl Pogue
bb62c3364e Added test cases for Python 2.5. 2013-06-28 23:21:09 -07:00
Michael Hansen
4e879a053b Add tests for #29 2013-06-28 22:02:30 -07:00
Michael Hansen
0ab6d4c297 Merge pull request #29 from Iota1/master
Fix tuple unpacking in for loops (fixes #28)
2013-06-28 21:58:33 -07:00
Olivier Iffrig
afb2208e6e Fix tuple unpacking in for loops 2013-06-28 16:30:05 +02:00
Michael Hansen
404993fb3c Fix comp_map.py for Python 3.x (Closes #26) 2013-03-01 17:22:32 -08:00
Michael Hansen
209970f668 Update magic number for Python 3.3 beta 2012-06-27 18:03:55 -07:00
Michael Hansen
cfbc806955 Save the output of 'make test' for later inspection 2012-06-11 18:10:47 -07:00
Michael Hansen
1faffc4a2e Merge pull request #21 from kunalparmar/decorators
Handle decorators correctly.
2012-06-11 18:07:33 -07:00
Michael Hansen
4af1884177 Merge pull request #19 from kunalparmar/with-statement
Support for with statement.
2012-06-11 18:04:47 -07:00
Michael Hansen
c483fb9c77 Merge pull request #22 from kunalparmar/import-as
Handle import as correctly.
2012-06-11 17:50:46 -07:00
Kunal Parmar
2cc5e52201 Handle import as correctly. 2012-06-10 02:57:28 -07:00
Kunal Parmar
0fd7bccf52 Handle decorators correctly. 2012-06-10 00:42:05 -07:00
Kunal Parmar
d7a15472c7 Only test decompiling pyc files. 2012-06-09 16:57:10 -07:00
Kunal Parmar
0f012b62d3 Pop a with block on a WITH_CLEANUP. 2012-06-09 16:45:37 -07:00
Kunal Parmar
c38193faa8 Fix for try..else..finally blocks.
* with blocks having a nested if..else do not work anymore.
2012-06-06 23:00:03 -07:00
Michael Hansen
5ef70d151e Only decompyle .pyc files in the tests directory 2012-06-06 22:53:56 -07:00