Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-06-01 | Add 0.46.0 features | Salamandar | 1 | -1/+4 | |
2018-05-04 | Interpreter: don't flatten the arguments of various methods | Mathieu Duponchelle | 1 | -0/+4 | |
this fixes eg set_variable('foo', ['bar', 'baz']), which was previously erroring out complaining about the number of arguments. Closes #1481 | |||||
2018-05-03 | python module: make it work with pypy | Mathieu Duponchelle | 1 | -4/+47 | |
pypy installations don't usuallyy ship with pkg-config files, we thus need to replicate what their version of distutils does. In addition, we also try our best to build against other pythons that do not have pkg-config files. | |||||
2018-04-21 | modules/python: add some more options around path and config_vars | Havard Graff | 1 | -13/+39 | |
What is actually defined here varies wildly on different python-versions for different platforms. On my python2.7 on Windows len(sysconfig.get_config_vars()) returns 17, whereas in my Ubuntu that number is 517! Hence it is useful to be able to check which keys are available, as well as allowing specifying a default option. | |||||
2018-04-18 | Made Python module match the new init interface. | Jussi Pakkanen | 1 | -4/+4 | |
2018-04-09 | [fixup]: various minor tweaks found while documenting | Mathieu Duponchelle | 1 | -9/+5 | |
2018-04-09 | [fixup]: Rename find to find_installation | Mathieu Duponchelle | 1 | -4/+4 | |
2018-04-09 | [fixup]: Fix python2 detection and unit test | Mathieu Duponchelle | 1 | -1/+1 | |
2018-04-07 | [fixup]: trivial fix after rebase | Mathieu Duponchelle | 1 | -2/+3 | |
2018-04-07 | [fixup]: extension_module: allow specifying install_dir OR subdir | Mathieu Duponchelle | 1 | -5/+8 | |
2018-04-07 | [fixup]: Address PKG_CONFIG env vars comments | Mathieu Duponchelle | 1 | -18/+19 | |
2018-04-06 | Implement a generic python module | Mathieu Duponchelle | 1 | -0/+432 | |
With contributions from HÃ¥vard Graff |