Antti Haapala

Results 28 issues of Antti Haapala

When using mfa for an IAM user access tokens there is only one device; the only result in `session.client('iam').list_mfa_devices()`. Would be worthwhile to try to default to that if not...

Now that the locking cached_property was adapted into Python standard library, I'd note here too that the `threaded_cached_property` locking strategy is wrong for many use cases, and I've written an...

This is quite a design flaw in python extractor. The KEYWORDS variable is global, and that global dictionary is updated on call to Python extractor with new values from `options`...

I've (sort of) written about half of it already.

Volunteer wanted

I am not sure if this is implemented yet, but, if refcounts are expensive, it could be worthwhile to mark some values as not refcounted at all - Python interpreter...

I had a curious problem: I had thrown an object that was wrapped in a lazy object proxy added into the `pshell` environment. It had worked just recently but for...

I had a curious problem: I had thrown an object that was wrapped in lazy_object_proxy added into the `pshell` environment. It had worked before but for some reason stopped working...

SQS client `receive_message` documentation does not detail the return value well enough. Especially in the case of empty queue, the [docs](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sqs.html#SQS.Client.receive_message) claim it returns a dictionary of type... ``` {...

service-api

I have a suggestion: instead of typing something like ``` aws> ec2 describe-instances aws> ec2 run-instances --blahblah blah ``` you could enter the prefix once, and all subsequent commands are...

feature-request

Given compose file ``` --- version: '3.7' services: test: image: ubuntu:20.04 container_name: ubuntu environment: - FOO command: bash -c 'set | grep FOO' ``` and having the `FOO` set in...

bug