Jean-Paul Calderone

Results 134 issues of Jean-Paul Calderone

Adds `--concurrency=twisted` which causes coverage to be tracked across child processes created with Twisted's `reactor.spawnProcess`. I'm not entirely happy with the sitecustomize management code. Also it seems like this could...

The project readme states: > Frosted uses the 99% approach as a yard stick. If it is agreed that 99% of the time (or more) that a pattern occurs it's...

See https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1397 None of Appveyor, Microsoft Azure, and GitHub Actions existed when that ticket was originally filed and so getting Windows CI was a lot harder. Now there are several...

One wants to unit test this sort of behavior but characteristic has enough information to automatically generate these tests in most cases. Perhaps something like `MyClassEqualityTests = make_equality_tests(MyClass)`?

`notElem` may return True or False for values not present in the filter so both True and False could make sense here but False makes more sense given the emphasis...

notElem is documented as: > Query an immutable Bloom filter for non-membership. If the value is present, return False. If the value is not present, there is still some possibility...

``` (txkube) exarkun@baryon:~/Work/LeastAuthority/txkube$ git diff origin/master... | cuv diff - skip: MANIFEST.in skip: README.rst skip: src/txkube/extra-1.5.json b/src/txkube/__init__.py "IObject", "IKubernetes", "IKubernetesClient", "KubernetesError", "UnrecognizedVersion", "UnrecognizedKind", - "v1", "v1beta1", "iobject_from_raw", "iobject_to_raw", Traceback (most...

bug
question

## Scope and purpose See https://twistedmatrix.com/trac/ticket/10316 Additionally, this would be useful inside Twisted in refactoring some of disttrial's implementation. Specifically, my wip for that currently has: ``` return bracket( #...

From https://travis-ci.org/LeastAuthority/txkube/builds/194934837 ``` Traceback (most recent call last): File "/home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages/txkube/test/test_model.py", line 94, in test_roundtrip def test_roundtrip(self, obj): File "/home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages/hypothesis/core.py", line 438, in wrapped_test HealthCheck.too_slow, File "/home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages/hypothesis/core.py", line 306, in fail_health_check...

legibility

``` (txkube) exarkun@baryon:~/Work/LeastAuthority/txkube$ cat brokenattrs.py import attr @attr.s(frozen=True) class X(object): y = attr.ib() @property def z(self): return 3 @z.setter def z(self, value): print("z=", value) X(y=None).z = 10 (txkube) exarkun@baryon:~/Work/LeastAuthority/txkube$ python...

Feature