-
As per PYthon doc : https://docs.python.org/3.10/library/stdtypes.html#set-types-set-frozenset
The five methods should be added:
```
add(elem)
Add element elem to the set.
remove(elem)
Remov…
-
From current spec.md:
https://github.com/bazelbuild/starlark/blob/3d97ad778123d9267be19375a2a412a21599da69/spec.md?plain=1#L1344-L1359
`a` and `b` are listed as both _module_-scoped and _file_-s…
-
We generate API docs for bazel build language objects which include a doc field (such as rules, providers, and aspects) or have a docstring set by convention (modules, functions); but we do not docume…
-
CI: https://buildkite.com/bazel/bazel-at-head-plus-downstream/builds/4198#01928934-6200-4035-af00-d045db026e38
Platform: Windows
Logs:
```
ERROR: Traceback (most recent call last):
File "C:/b/4…
-
**What steps did you take:**
Attempted to use the `in` operator on a `yamlfragment`.
For example, given the following input:
```yaml
---
rules:
- resources:
- podsecuritypolicies
- resou…
-
I'm working on a prototype to have OpenaAPI types reflected in Starlark (e.g use case - https://github.com/stripe/skycfg/issues/70). Rough API I'm shooting for:
```python
monitoring = openapi("mon…
-
Per comment and benchmarking in Anzu PR 8525:
> **Warning**: This has some high-overhead repository rule generation, meaning any
> BUILD files that depend on `load('@ros2//etc', ...)` will need to…
-
I was trying to figure out how to include specific stdlib extension modules (e.g. `_ssl`) but not others (e.g. `_asyncio`). I found:
- `PythonPackagingPolicy.extension_module_filter`: this lets you…
-
@mholt has announced that [Caddy 2](https://github.com/caddyserver/caddy/tree/v2) may hit stable by early next year. Based on a quick glance at the new docs, there are lots of changes to how plugins …
-
This took a while to figure out, but as far as I can tell a glob like `glob(include=["C:\foo\bar\**\*"])` will never match anything, and instead would need to be expressed with forward slashes (that i…