Jean-Paul Calderone

Results 134 issues of Jean-Paul Calderone

If you are near enough a dark place and an action you take fails because obtain doesn't find anything then you'll get a reason that relates to darkness that doesn't...

Once you're in a dark location you're forever stuck there. If you add a Manipulator to the example game protagonist then you can produce this: ``` > look [ The...

The `_ActionType` metaclass gives the convenient `Action.parse` method. However, by hanging this functionality on `_ActionType` and `Action` it smashes the action parsing unit together with the action execution unit together...

Understanding how Imaginary works is greatly simplified if you can observe a visualization of the simulation graph. Imaginary should include an action which exports data representing the simulation graph to...

If two things have exactly the same name and aliases then there is no input that can be entered into the text interface which will resolve the ambiguity and allow...

This function was factored out of `Named.resultRetrieved` in #36. Quite a few tests exercise that method so the new `isKnownTo` function is also exercised - but there are no tests...

Talk about github workflow, review process, naming convention, documentation convention, etc. Feel free to crib from https://github.com/pyca/pyopenssl/blob/master/CONTRIBUTING.rst

According to https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListResourceRecordSets.html 100 is the maximum number of rrsets. The test double implementation of `list_resource_record_sets` in `txaws/testing/route53.py` will return an unlimited number of rrsets if no maxitems is explicitly...

The code is currently fairly sloppy about bytes vs unicode.

``` >>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="baz").get_encoded_url() 'http://foo/bar/baz' >>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="/baz").get_encoded_url() 'http://foo/bar/baz' >>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="//baz").get_encoded_url() 'http://foo/bar//baz' >>> ```