Arne Bachmann

Results 20 issues of Arne Bachmann

In some cases I have to write to `sys.stdout.buffer` directly, which is not caught by colorama. Maybe it's necessary to monkeypatch the (encoded) buffer object as well, if present (could...

After running the Python test suite, I get this coverage error: ``` ok ---------------------------------------------------------------------- Ran 59 tests in 17.053s OK Traceback (most recent call last): File "C:\PYTHON36\Scripts\coverage-script.py", line 11, in...

I just replaced all instances of lambda functions like `() -> ...` by `-> ...` since it seems to be a possible shortcut, but broke my code out of the...

documentation
feature

This broke my tests, when I attempted to use the `print

feature

Recently added was the [`mypyc`](https://github.com/mypyc/mypyc) package. Probably not compatible with all Python versions and distributions, but it is said to run 3 times faster than `mypy`. Could be put conditionally...

compatibility

What about allowing in-place operations for tuples like so: ``` (a, b) += (c, d) # equivalent to a+= c; b +=d A = (1, 2, 3) B = (2,...

feature

I´d like to compile other Coconut files dynamically from my coco script, but I need to know the target version of the current script, otherwise I get results that are...

feature

Any plans to allow [runtime type enforcing](https://github.com/RussBaz/enforce)? I attempted to use the enforce decorator `@runtime_validation` but for the `data` types (coconut named tuples, while enforce expects [`typing.NamedTuple`](https://github.com/RussBaz/enforce#namedtuple)) I couldn't get...

oversight

I'm having cases where I repetitively write the same code parts (as a replacement for some built-in stuff), and want to simplify. However, I don't want to replace everything by...

feature

In my test code I mock user input to simulate interactive console interaction. Since above mentioned version, the tests jump into interactive mode instead of being mocked (vs. `.dev20`, which...

oversight