Jonas Süskind

Results 6 comments of Jonas Süskind

@abhiTronix Thank you for your fast and elaborate response to my proposal and that you consider adding it. First, I think there is a small misunderstanding. I don't want to...

This may be related to #208 and #197.

As a workaround people in #208 suggested doing `vr.seek(0)` after the `vr.get_batch()`, which works for me. However, a fix for this would be much appreciated still.

I have the same issue of memory filling up when doing debugging in PyCharm. Furthermore, the issue also persists when pausing via `time.sleep` instead of using a breakpoint in the...

I don't think this is a desired feature, since the same argument could be made for the following example: ```python >>> "{c:02d}".format(c=100000) '100000' ``` This would eliminate the feature to...

I like your second point. If the programmer explicitly states that one-digit numbers should be padded with zeros (i.e. `02d` format) the string `"9"` should not match. However, the first...