diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-04 10:23:48 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-06-05 15:15:23 +0000 |
commit | b2b740167cfb5f4359aecbf114deb5ff1af73b04 (patch) | |
tree | 299d3644228df9dc1ef104e13eee46543b485380 /.pylintrc | |
parent | 246571606853aef6da856d778f783b14339a2cea (diff) | |
download | buildstream-b2b740167cfb5f4359aecbf114deb5ff1af73b04.tar.gz |
_loader/loader: cythonize valid_chars_name
- Create a new _loader/utils.pyx cython module for functions cythonized
in the loader module.
- Move valid_chars_name from loader to utils and cythonize.
This function is called extensively, and easy to extract
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,7 +3,10 @@ # A comma-separated list of package or module names from where C extensions may # be loaded. Extensions are loading into the active Python interpreter and may # run arbitrary code -extension-pkg-whitelist=buildstream._variables,buildstream._yaml +extension-pkg-whitelist= + buildstream._loader._loader, + buildstream._variables, + buildstream._yaml # Add files or directories to the blacklist. They should be base names, not # paths. |