From c805e3143bada2df897927996ae23a469cf83eb3 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Thu, 6 Dec 2012 17:01:09 +0100 Subject: Move examples into separate directory. --- examples/print_refs.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 examples/print_refs.py (limited to 'examples/print_refs.py') diff --git a/examples/print_refs.py b/examples/print_refs.py new file mode 100644 index 0000000..b2d9f5f --- /dev/null +++ b/examples/print_refs.py @@ -0,0 +1,13 @@ +# Prints the names of all symbols that reference a particular symbol. (There's +# also a method get_selected_symbols() for determining just selection +# relations.) + +import kconfiglib +import sys + +conf = kconfiglib.Config(sys.argv[1]) + +x86 = conf["X86"] +for sym in conf: + if x86 in sym.get_referenced_symbols(): + print sym.get_name() -- cgit v1.2.3