clayg
clayg
Perhaps! Full disclosure, it wouldn't be a full-time project for me and my C tends to be CPython wrappers these days - so I may miss some idiomatic bits. But...
@kdaily this one looks good to me! What do you think?
@rawrrawrfox I agree with @temoto strong preference for `EVENTLET_RESOLV_CONF=/path/to/resolv.conf` - I found no such facility in [dns.resolver.Resolver](https://github.com/rthalley/dnspython/blob/master/dns/resolver.py#L743) No need for anything platform specific: ``` diff --git a/eventlet/support/greendns.py b/eventlet/support/greendns.py index 76545c7..eadac2b...
Yes, I think #78465 was an improvement ``` (ansible) clayg@banana:~/Workspace/ansible$ cat ~/.ansible/plugins/connection/myplugin.py from ansible.plugins.connection import ConnectionBase class Connection(ConnectionBase): pass (ansible) clayg@banana:~/Workspace/ansible$ ansible -c myplugin -i node1, -m shell -a hostname...
This is a neat idea, since it's been awhile I might point out the swift "recently" added support for temp-url-key rotation: http://docs.openstack.org/developer/swift/misc.html#module-swift.common.middleware.tempurl ^ search for "Key-2" Tempurl doesn't really solve...
i installed a more recent mainline kernel on jammy and the update-alternatives trick worked to switch gcc to gcc-12 (I couldn't figure out how to do it with env vars)
@jrperritt Can you expand on your comment from #1329 > We don't want to start making (albeit small) changes to get Gophercloud working with all OpenStack-compatible clouds. Does the robustness...
failing test: http://github.com/clayg/redisco/commit/4adf5eb8aaf82759227db2274727f1d080a12b17
I don't think that accessing x.errors before calling x.is_valid should raise an attribute error for missing attribute "_errors": http://github.com/clayg/redisco/compare/master...issue4 pull request sent. But I'm not sure how effectively errors can...
I agree with you about Ohm and that a containers.List instance is the correct way to expose atomic operations on a list. I had not considered using a kwarg to...