Skip to content
This repository was archived by the owner on Feb 3, 2019. It is now read-only.

Tags: semiversus/python-mini-lambda

Tags

1.3.1

Toggle 1.3.1's commit message
1.3.1 - fixed ImportError in code generation

 * the latest `autoclass` has its `__init__.py` fixed, this revealed a `ImportError: cannot import name 'getmembers'` because we were importing `getmembers` from it instead of `inspect`. Fixed

1.3.0

Toggle 1.3.0's commit message
1.3.0 - The init file has been improved so as not to export symbols f…

…rom other packages. Fixes smarie#6

1.2.4

Toggle 1.2.4's commit message
1.2.4 - Minor improvements in generated goodies

 * Removed annoying warning message when loading goodies
 * Removed useless try/except for goodies that do not need import

1.2.3

Toggle 1.2.3's commit message
Updated changelog - 1.2.3

1.2.2

Toggle 1.2.2's commit message
Updated changelog. Ready to tag 1.2.2

1.2.1

Toggle 1.2.1's commit message
Updated changelog. Ready to tag 1.2.1

1.2.0

Toggle 1.2.0's commit message
Minor improvements: "Constant" is now the pivot point to convert anyt…

…hing to lambda-friendly. It has a new alias `make_lambda_friendly`.

 * Fixed smarie#2 that was a bug happening when using lambda-friendly methods with non-lambda arguments
 * This actually required to refactor a bit the methods: a few methods in base.py are now classmethods of _LambdaExpressionBase. This also required the code generation mechanism to generate a new file 'generated2.py' because the generated methods were now dependent upon main.py

1.1.0

Toggle 1.1.0's commit message
Merge branch 'master' of https://github.com/smarie/python-mini-lambda

# Conflicts:
#	mini_lambda/tests/test_mini_lambda_add_methods.py
#	mini_lambda/tests/test_readme.py

1.0.0

Toggle 1.0.0's commit message
Fixed code generation: it does not have a dependency on the package c…

…ode anymore