Merged
Conversation
Operators, indexing and named parameters from Lua
Compile using C99 mode for long long, declaration initialization and other useful stuff.
Turn on warnings.
User can always wrap it manually using 'asfunc' if needed, but the reverse is not true.
This is cached to avoid recreating a new lambda on every call. Major reduction in code dup.
'require'ing the module no longer dumps it into lua's global table.
Fix for issue #50 - coroutine param passing bug.
Condensed init logic. More Brace fixing.
moved to src/CMakeLists.txt
travis CI.
All unicode strings can go in a byte object but not all byte objects are unicode strings. Going from Python -> Lua always turns a unicode str into a byte object. Going from Lua -> Python, lunatic will try to decode as utf-8 first. Failing that it falls back to a byte object. Use 'PyUnicode_AsEncodedString' since it exists in both Py 2.7 and 3.3+.
seem to serve any useful purpose.
Fixed Bracing.
Added some test for py operators on py container.
Fix for Symbol not found error while loading dynamic python extensions
Undefined symbols only happen on linux because of 'RTLD_LOCAL' by default; Other platforms don't have this issue so remove those cases.
Actually push and return `nil`.
Should not generate error if attribute not found on python object
The `for` loop that executes pkg-config was taking the libs & cflags from only the first package.
Bug fix: Combine pcoutput in pkgconfig
Use LUA 5.1 if 5.2 doesn't exists on the system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.