From a5a16bee862f7e552a4a8dbd75ff10db7b9c1342 Mon Sep 17 00:00:00 2001 From: Benjamin Schubert Date: Fri, 17 May 2019 18:47:27 +0100 Subject: _yaml: Cythonize and internalize Node Node used to be a NamedTuple that we used to access by index for speed reasons. Moving to an extension class allows us to access attributes by name, making the code easier to read and less error prone. Moreover, we do gain speed and memory by doing this move. Also fix a few places where we would not have an entire `Node` object but were instead just returning a tuple, missing some entries. --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index 0dc625a46..e0941862f 100644 --- a/.pylintrc +++ b/.pylintrc @@ -3,7 +3,7 @@ # 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 +extension-pkg-whitelist=buildstream._variables,buildstream._yaml # Add files or directories to the blacklist. They should be base names, not # paths. -- cgit v1.2.1