João Eiras

Results 53 comments of João Eiras

> I suspect this is the line where it happens, but am not familiar: I think you are correct. This if check is incorrect `if (msg && offsets)` because `msg`...

> so it could be used for message and offsets in the checks. Not really. That function expects a MeSsage object or a list of partitions. So using that True...

I would too like a lot this feature, but for selcted tracks, artists or folder of my music collection. My use case for scrobbling is to gather statistics for the...

Hi. I'm right now composing a piece with a big section of acoustic guitar, and there is voice that is sung only on the second repeat. Likewise, the last bar...

Hi. Regarding support for `InvokeFormatter -Path ...`. 1. The default behavior should be to output the formatted content as a string, to avoid accidentally overwrite the file. 2. Add an...

Hi. I'm hitting this warning. Now and then I want to do `type(a) is B` or `type(a) is type(c)` to do strict type checking, not subclassing, namely in unit tests....

@pranavrth @emasab Hi. Can you guys explain why no one is maintaining this project and accepting MRs ? Thre's now over 75 open PRs, many to fix bugs. Thanks.

I suggest this is controlled in part by the `tzinfo` or `time` instance. For instance, in `datetime.py` this code in `class time` ``` class time: # [...] def _tzstr(self): """Return...

Suggested fix ``` --- a/vcf/parser.py 2018-08-13 18:15:35.494032216 +0200 +++ b/vcf/parser.py 2018-08-13 18:15:39.869965849 +0200 @@ -461,6 +461,8 @@ sampdat = [None] * nfields for i, vals in enumerate(sample.split(':')): + if i...