aboutsummaryrefslogtreecommitdiff
path: root/docs/sphinx/glossary.md
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2024-01-17 18:02:18 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-01-17 18:02:18 +0000
commit6954130f57eb9a56a82d4146aeafb16ef30f907a (patch)
treeacdcc148cabfb6f8242a6c83e37625eeaea4e628 /docs/sphinx/glossary.md
parent1508c18d9e27325a8d9c574a90d205e0a1d8a78f (diff)
downloadbazelbuild-rules_python-6954130f57eb9a56a82d4146aeafb16ef30f907a.tar.gz
Revert "Upgrade bazelbuild-rules_python to 0.28.0"
This reverts commit 1508c18d9e27325a8d9c574a90d205e0a1d8a78f. Reason for revert: breaks build, not caught by treehugger Change-Id: Id40b5eefc5f4f0f6e4a0122fbfa53b0c3c265985
Diffstat (limited to 'docs/sphinx/glossary.md')
-rw-r--r--docs/sphinx/glossary.md28
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/sphinx/glossary.md b/docs/sphinx/glossary.md
deleted file mode 100644
index f54034d..0000000
--- a/docs/sphinx/glossary.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# Glossary
-
-{.glossary}
-
-common attributes
-: Every rule has a set of common attributes. See Bazel's
- [Common attributes](https://bazel.build/reference/be/common-definitions#common-attributes)
- for a complete listing
-
-rule callable
-: A function that behaves like a rule. This includes, but is not is not
- limited to:
- * Accepts a `name` arg and other {term}`common attributes`.
- * Has no return value (i.e. returns `None`).
- * Creates at least a target named `name`
-
- There is usually an implicit interface about what attributes and values are
- accepted; refer to the respective API accepting this type.
-
-simple label
-: A `str` or `Label` object but not a _direct_ `select` object. These usually
- mean a string manipulation is occuring, which can't be done on `select`
- objects. Such attributes are usually still configurable if an alias is used,
- and a reference to the alias is passed instead.
-
-nonconfigurable
-: A nonconfigurable value cannot use `select`. See Bazel's
- [configurable attributes](https://bazel.build/reference/be/common-definitions#configurable-attributes) documentation.