diff options
author | Benjamin Schubert <contact@benschubert.me> | 2019-05-26 09:43:20 +0100 |
---|---|---|
committer | Benjamin Schubert <contact@benschubert.me> | 2019-05-29 19:47:57 +0100 |
commit | 41293b1badeb12689ea72cd42c2d68df492c4274 (patch) | |
tree | 47071727ebb605e6d34b2946857e5f6af6c87995 /setup.py | |
parent | 4e9b5803e7241cc87c14126d320dc744ac4798cf (diff) | |
download | buildstream-41293b1badeb12689ea72cd42c2d68df492c4274.tar.gz |
_variables: Cythonize _internal_expand
Move _variables.py to be a Cython module.
`_internal_expand` is a function that is called a lot in BuildStream.
It is also entirely isolated and easy to cythonize.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -391,6 +391,7 @@ def register_cython_module(module_name, dependencies=None): BUILD_EXTENSIONS = [] +register_cython_module("buildstream._variables") ##################################################### # Main setup() Invocation # |