Spencer Nelson
Spencer Nelson
The `kind` attribute was added to the Constant expression in AST in Python 3.8. See https://bugs.python.org/issue36280. That means that in Python 3.7's `ast` module, `Constants` _never_ have a kind, so...
When I run `make` on a fresh clone of use-package, I get a bunch of warnings about use-package.texi: ``` Generating use-package.info use-package.texi:87: warning: menu entry name should not contain `:'...
pykafka's list of Kafka error codes [only goes up to 30](https://github.com/Parsely/pykafka/blob/e7665bf36bfe521050fdcb017c68e92365bd89ed/pykafka/exceptions.py#L254) as of e7665bf36bfe521050fdcb017c68e92365bd89ed. Kafka v2.5.0 has [88 error codes](https://kafka.apache.org/protocol#protocol_error_codes). When an unknown error code is hit, pykafka raises a...
Using @functools.wrap ensures that docstrings for wrapped functions are passed through the decorator correctly. Before: ``` $ pydoc pykafka.broker.Broker.create_topics Help on function wrapped in pykafka.broker.Broker: pykafka.broker.Broker.create_topics = wrapped(self, *args, **kwargs)...
Today, this repo's README has a terrifying warning at the top: > *!!! THIS PROJECT IS A WORK-IN-PROGRESS | THE API SHOULD BE CONSIDERED UNSTABLE !!!* What would it take...
There are several error types in the standard library that wrap errors. [net/url.Error](https://golang.org/pkg/net/url/#Error), for example, 'reports an error and the operation and URL that caused it.' This error type is...
I am trying to use kcat to read Confluent Wire Format-encoded messages. They're Avro encoded, and I have a Schema Registry. This little Python script works with confluent_kafka_python v1.7.0: ```py...
`gps` happens to require the 2.x branch of [github.com/Masterminds/semver](https://github.com/Masterminds/semver), which is not the master branch, but gps does not explicitly vendor its dependencies. That means `go get github.com/sdboyer/gps` (and its...
`TestSvnRepo` panics for me on the current master: ``` -> % go test -v -run TestSvnRepo . === RUN TestSvnRepo --- FAIL: TestSvnRepo (0.05s) vcs_repo_test.go:45: Problem checking out repo or...
### Terraform, Provider, Kubernetes and Helm Versions ``` Terraform version: Terraform v0.14.6 Provider version: registry.terraform.io/hashicorp/helm v2.0.2 Kubernetes version: n/a Helm version: v3.5.2 ``` ### Affected Resource(s) - helm_release ### Terraform...