Phil Mayers

Results 3 issues of Phil Mayers

This is not really an issue - it's more by way of informational/comparison, given the focus on performance. We use the ancient https://github.com/jpwarren/libsnmp for a local/bespoke high-throughput SNMP poller. I've...

performance

autopep8 seems to turn this: ``` func([ 1, 2, 3, ], a=1, b=2, ) ``` into this: ``` func([ 1, 2, 3, ], a=1, b=2, ) ``` ...even though neither...

In lxml I often write code like this: `x.xpath('element[sub=$val]', val=somevalue)` NCElement.xpath does not pass kw arguments to the lxml document so you have to go via the data_xml property which...