daa

Results 11 comments of daa

What do you think of following trick in ``MethodicalInput.__get__``: ``` def __get__(self, oself, type=None): ... @preserveName(self.method) @wraps(self.method) def doInput(*args, **kwargs): ... setattr(oself, self._name(), doInput) return doInput ``` ? That is...

With PyPy benchmark improves even more than with CPython - I tried and got 30-50x speedup.

Recently I had an idea that ``MethodicalInput()`` could be decorator itself, so no tricks would be required to avoid continuous creation of ``doInput()``, however it will make implementations of ``input()``,...

Recently I thought that we have a third alternative: make database inspector and consequently ``get_inspector()`` accept argument with predicate function to match schema and then apply this function to filter...

One may see the same behaviour even when enum is referenced from one place and in can be seen in ``tests/data/core/refToEnum.json`` and corresponding ``tests/data/core/refToEnum.go.output``. I think that the reason is...

Actually 0.7.6 version already cannot be built with Python 2.7 because of using ``encoding`` argument to ``open`` function in ``setup.py``.

I've recently met this issue and I'd like to suggest another apporach: instead of supporting colon escaping just allow colons in header value by joining by colon parts after the...

I'm not the owner or maintainer of this package. @wawhal or @ShraddhaAg reviewed recent PRs it may be better to call one of thems.

Quoted code transforms the true value to 0x11 which is correct: flags (higher 4 bits) are 0001 and type (lower 4 bits) is 0001 but the false value is transformed...

For those who is interested: appimage-builder uses ``packaging`` module to parse versions which implements versioning specific to Python but it is not the same as for Debian packages: 1.21.1ubuntu2.1 is...