summaryrefslogtreecommitdiff
path: root/examples/print_refs.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/print_refs.py')
-rw-r--r--examples/print_refs.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/print_refs.py b/examples/print_refs.py
deleted file mode 100644
index ea62223..0000000
--- a/examples/print_refs.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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())